From be68f044d7ef1cffd4c809d7003e9c285c6b9c0c Mon Sep 17 00:00:00 2001 From: Heroman Date: Sun, 26 Feb 2023 15:34:25 +1000 Subject: [PATCH] Makes SD wall lockers properly visible --- .../_closets_appearance_definitions.dm | 115 +- .../crates_lockers/closets/utility_closets.dm | 4 + .../crates_lockers/closets/walllocker.dm | 193 +- icons/obj/closets/decals/wall_double.dmi | Bin 3839 -> 5480 bytes maps/stellar_delight/stellar_delight1.dmm | 47125 +--------------- maps/stellar_delight/stellar_delight2.dmm | 46135 +-------------- maps/stellar_delight/stellar_delight3.dmm | 36112 +----------- 7 files changed, 7226 insertions(+), 122458 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm index c64593078f9..262190ee203 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm @@ -1444,7 +1444,7 @@ "stripes" = COLOR_OFF_WHITE, "glass" = COLOR_WHITE ) - + /decl/closet_appearance/wall_double/survival color = COLOR_CYAN_BLUE decals = null @@ -1452,6 +1452,119 @@ "stripe_outer" = COLOR_WHITE ) +/decl/closet_appearance/wall_double/emergency_engi + color = COLOR_YELLOW_GRAY + decals = null + extra_decals = list( + "stripe_inner" = COLOR_ORANGE, + "stripe_outer" = COLOR_OFF_WHITE, + "glass" = COLOR_WHITE + ) + +/decl/closet_appearance/wall_double/security + color = COLOR_NT_RED + decals = null + extra_decals = list( + "vertical_stripe_left_l" = COLOR_WARM_YELLOW, + "vertical_stripe_left_m" = COLOR_WARM_YELLOW + ) + +/decl/closet_appearance/wall_double/cargo + color = COLOR_WARM_YELLOW + +/decl/closet_appearance/wall_double/gaming + color = COLOR_DARK_BLUE_GRAY + decals = null + extra_decals = list( + "stripe_outer" = COLOR_PALE_PINK, + "glass" = COLOR_WHITE + ) + +/decl/closet_appearance/wall_double/science + decals = list( + "holes" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "stripe_inner_lower" = COLOR_PURPLE, + "stripe_inner_middle" = COLOR_PURPLE + ) + +/decl/closet_appearance/wall_double/command + decals = list( + "holes_right" + ) + color = COLOR_BLUE_GRAY + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/ce + decals = list( + "holes_right" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_DARK_GOLD, + "vertical_stripe_left_m" = COLOR_DARK_GOLD, + "vertical_stripe_left_r" = COLOR_DARK_GOLD + ) + +/decl/closet_appearance/wall_double/rd + decals = list( + "holes_right" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_PURPLE, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_PURPLE + ) + +/decl/closet_appearance/wall_double/cmo + decals = list( + "holes_right" + ) + color = COLOR_BABY_BLUE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/hos + decals = list( + "holes_right" + ) + color = COLOR_NT_RED + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_WARM_YELLOW, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/iaa + decals = list( + "holes_right" + ) + color = COLOR_DARK_BLUE_GRAY + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/engineering + decals = list( + "holes" + ) + color = COLOR_YELLOW_GRAY + +/decl/closet_appearance/wall_double/generic_civ + color = COLOR_DARK_BLUE_GRAY + // Carts /decl/closet_appearance/cart color = COLOR_GRAY20 diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index c83dbe0f1a1..8fc75b1c8a6 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -196,6 +196,7 @@ /obj/structure/closet/hydrant //wall mounted fire closet name = "fire-safety closet" desc = "It's a storage unit for fire-fighting supplies." + icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall/hydrant plane = TURF_PLANE layer = ABOVE_TURF_LAYER @@ -218,7 +219,10 @@ /obj/structure/closet/medical_wall //wall mounted medical closet name = "first-aid closet" desc = "It's wall-mounted storage unit for first aid supplies." + icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall/medical + plane = TURF_PLANE + layer = ABOVE_TURF_LAYER anchored = TRUE density = FALSE wall_mounted = 1 diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index d992f8024bf..c66918ac24e 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -3,7 +3,7 @@ /obj/structure/closet/walllocker desc = "A wall mounted storage locker." - name = "Wall Locker" + name = "wall locker" icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall density = FALSE @@ -85,7 +85,7 @@ //double-size "cabinet" lockers, from Killian /obj/structure/closet/walllocker_double desc = "A wall mounted storage cabinet." - name = "Wall Cabinet" + name = "wall cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double density = FALSE @@ -116,7 +116,7 @@ /obj/structure/closet/walllocker_double/kitchen desc = "A wall mounted storage cabinet, for the kitchen. Now where's the flour gone..?" - name = "Kitchen Cabinet" + name = "kitchen cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double/kitchen density = FALSE @@ -139,7 +139,7 @@ dir = EAST /obj/structure/closet/walllocker_double/medical - name = "Medical Cabinet" + name = "medical cabinet" desc = "A wall mounted medical supply cabinet. Probably full of drugs!" //not actually full of drugs, sorry! closet_appearance = /decl/closet_appearance/wall_double/medical @@ -159,12 +159,37 @@ pixel_x = 32 dir = EAST +/obj/structure/closet/walllocker_double/emergency_engi + name = "emergency supplies cabinet" + desc = "A wall mounted cabinet. Seemingly has cool stuff for 'emergency use only'." + closet_appearance = /decl/closet_appearance/wall_double/emergency_engi + + starts_with = list( + /obj/item/clothing/mask/breath = 2, + /obj/item/weapon/tank/emergency/oxygen/engi = 2, + /obj/item/weapon/storage/briefcase/inflatable, + /obj/item/device/radio = 3) + +/obj/structure/closet/walllocker_double/emergency_engi/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/emergency_engi/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/emergency_engi/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/emergency_engi/east + pixel_x = 32 + dir = EAST + /obj/structure/closet/walllocker_double/hydrant name = "fire-safety closet" desc = "It's a storage cabinet packed with fire-fighting supplies." closet_appearance = /decl/closet_appearance/wall_double/fire_safety - anchored = TRUE - density = FALSE starts_with = list( /obj/item/clothing/suit/fire, @@ -192,7 +217,7 @@ /obj/structure/closet/walllocker_double/survival desc = "A wall mounted storage cabinet. It contains a small amount of emergency supplies for wilderness survival, but they probably won't last very long." - name = "Emergency Survival Wall Cabinet" + name = "emergency survival wall cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double/survival density = FALSE @@ -228,5 +253,159 @@ dir = WEST /obj/structure/closet/walllocker_double/survival/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/security + name = "security cabinet" + desc = "A wall mounted cabinet. This one is suspiciously red." + closet_appearance = /decl/closet_appearance/wall_double/security + +/obj/structure/closet/walllocker_double/security/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/security/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/security/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/security/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/misc_civ + closet_appearance = /decl/closet_appearance/wall_double/gaming + +/obj/structure/closet/walllocker_double/misc_civ/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/misc_civ/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/misc_civ/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/misc_civ/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/generic_civ + closet_appearance = /decl/closet_appearance/wall_double/generic_civ + +/obj/structure/closet/walllocker_double/generic_civ/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/generic_civ/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/generic_civ/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/generic_civ/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/cargo + desc = "A wall mounted cabinet. This one is in cargo colors." + closet_appearance = /decl/closet_appearance/wall_double/cargo + +/obj/structure/closet/walllocker_double/cargo/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/cargo/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/cargo/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/cargo/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/science + desc = "A wall mounted cabinet. This one is in research colors." + closet_appearance = /decl/closet_appearance/wall_double/science + +/obj/structure/closet/walllocker_double/science/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/science/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/science/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/science/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/command + desc = "A wall mounted cabinet. This one is in command colors." + closet_appearance = /decl/closet_appearance/wall_double/command + +/obj/structure/closet/walllocker_double/command/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/command/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/command/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/command/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/command/ce + closet_appearance = /decl/closet_appearance/wall_double/ce + +/obj/structure/closet/walllocker_double/command/cmo + closet_appearance = /decl/closet_appearance/wall_double/cmo + +/obj/structure/closet/walllocker_double/command/rd + closet_appearance = /decl/closet_appearance/wall_double/rd + +/obj/structure/closet/walllocker_double/command/hos + closet_appearance = /decl/closet_appearance/wall_double/hos + +/obj/structure/closet/walllocker_double/command/iaa + closet_appearance = /decl/closet_appearance/wall_double/iaa + +/obj/structure/closet/walllocker_double/engineering + desc = "A wall mounted cabinet. This one is in engineering colors." + closet_appearance = /decl/closet_appearance/wall_double/engineering + +/obj/structure/closet/walllocker_double/engineering/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/engineering/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/engineering/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/engineering/east pixel_x = 32 dir = EAST \ No newline at end of file diff --git a/icons/obj/closets/decals/wall_double.dmi b/icons/obj/closets/decals/wall_double.dmi index 3649cd44ec77aa6dfd94019bb0a33f27a41be483..9a47f92f6b032995c634b9169c0791f8bd4d8800 100644 GIT binary patch literal 5480 zcmb_gcT`i~mQLuXG(mca5do1B>0k&&Kv1fPN)?pQI|OM7L8OEH6zLt5-mBC|lO`fH zNUzd~)SwWU>zg-g&CGj$%$u2Y?_T$=b?C*SgpY!bqeciis7dS6~Kp;9TO|=Ig z5E$~uXsAFS5KC|w7I>`qJ$&M&hV*>yVejT;@9F{q`J|-}w?($Y7^&tx_gR8xyNt?P zMB+bCqeJv3?ImG4eby!A1Qi1cX?IuJ0Ht$S?_~@z@Q|tKj&9*zVO=FWRwi}}= zv{NxRxQFKt{30fWRB59^ZYaE^xqh0IlW5bq`HMd1f(|>M3$fRDkM}xTSe(uLBUNqU z;F|PBWBS$T@u1Y`M|44PcKmu6O$lo!qXM1w42rlO%Co&O3ATL}j>1hj#V>|Gq;xo> zB_kh9RkR>E{A<_EanUj7Q6Iv*f^L~)x3!S`?@#dEETFG#04W}`QkH)Xyac$7&{9)* z=##cRqZiI?>({-Te?6>{2)h}*T&W%8=J!aAr{{+pLKAre@vy&MCmY5-XM{@bBa@k`;BOK=Z;n>viR`nnSNGfee41`@#2Z8nP{1e-M=M8q6m(%^` zB*ToSqaxQbk!8PREypbrInlc68x*ctKjo}#n%A~mHKuhS8zZ?wXwv-7X%;S*zUtdH zkSfc3N5k3=OQSNKu%7Bewz?}H< z`A*|bA#-y9QLL{S`JU=so12`|rLYeB&5=jxlQ(?T7g*;sh9z`l-nm<3tWuV33Y0~K zI4)w2;Nn6#32#|30?GB!2jGE<9~r$< z-z3bpb+4KzD`_&j&;n+^*|`rKHn^Ivqux#FligRu^1Y?V!SC8?bk{i2OD^(ZQ9Ib0 zAX+qb;nq0gt@>X4=HdGpmrPE|^sZw>)_ccGMaMJYN8kx389nKJs^B04!4^7Xjd4Iy zAb^!$OU5(%wQ$Fp+HI1yZHxc$j|Jnt! z@G5(bS#Nm!6m7C+BRld_)Y_nNkx5zeu5 zkGWpe8`}(Pa6+{&$$_#gKNG>=0&y}LEa(5mZj$w&WHzGICuE*$_PJbusDtYEdG z%fa@8+9^j)&*L)so$hc%NtD`{T9>ko!4O!iCJRhUMbg=PXi7Gj4jFw7YZ+4@pFCQU zR#!%2L@}M?B(%g&M)N3{6^1-|5zphMUXdLg7fpD@s+GwFceZeQlj|GlG|2?Zr0b3Y z#!Diwc`+|*r?y9X2O~KtC7sDW^0!#%O>WnD-@;DYe7#uLqh+QBvh(B?)J&PLm?Kbc zdryU*o0@Q}*l8GC>!WGX(WU3iJocPyG?viOP8z4UtmR5I_JQ`Dw}+nm`c2zA99H!h z9N%<{Kk@jaKT-Vt0T}K)Bl0C$A(&3Eo(@?;&Ly@bQXGvO!$uRxUmEA}%*&)@?ME`W zr~VEUsg4FFbJ;;&5)~}T{)GmdBtDyWXKSl@SnhnW7z%YbxIC&21yb4r35!Um!VCzj(ON`pW^|(m1NJ=l_+uCTj0YU z>)(}_nB*(B7Gwjz9A=EiygWQ10X&BIjfv?si;yr+Ti__mNkqnDp4gazbrg)V_s|i~ zi7z*I>`YuinuBIq{2!+b{Maq7^D$l|L6S1hqJp*p;CU>hAt~o8&pnm!G)Ap_R4z_m03wdWd1DmH5+Ek>IxZVB6m^DC;eKNq#(j z7O*tdyP|c~&DQpABz;z5nMDfaMS9El1(O06JMC>zd{GINkhQ zixCfQ!SKG}&BL_-aqJ(*)%m#W2hw_r<8XdIo783E)_{rNgcU~B*h8N_nF%$~`5TlR z-5QhnL^w%Yph66bMWS}rbEo*q%=}b%6$2ov8Hk(Ew;#W-j!U;;kyrROFh8b!e@)^1 z8m>b3R`595#f}A;$}%eJNk(U$Fq7KkKhPXhGPz>9QmuB8b9}~asq7Sp4VCg5v&M@H?A!Fp^c@~TU(KBawt}$t;L5?p48d)9&t65Q8^)t zs%H8n!1Rzo6NHTKb&u0W(M5f=LJHa7f=U;5US%|+GHCQ)HGTwxP`^~goB7=(Q(V9~ zsa;T{e{p20e(qy+bzET@Qu}d}lNp|lo`GR*YGwv~w@IYHqIm4W(b3Tb^r-7IP*;9X z3lIms#{)x4d<+`7hI3&IS`Xwa3I7pzLmeLn712k>mGQfTj!e;jMiXXdC#UA7s;a#@ z!byk{^Y5QOf40QO$Jfis$h=~dc+8=46%mOUR%KLEo+_b z5_H^8pY-|X#u+9~SG%UXRaaZ^^zk{i;2_|dnoe|CRLeH0fE(#V{j0{LbcrHSm0Sv86!M1=)`9M{buBH-`< zaSTjVkA-4)QY$%!ggHMWh0HlRfOw)c#z%#R9UKM5M*A3fybMb7i}DO=(uL`Lv|j+7 z`r7ly94HNrSqw(*p@m4FudH?wUC#zK>6qRG{vr;(EMVxN5bXQ4rQU$qHo2p=41gUx zhk(ncS{oEiem7QInE-I^M$Ob0Pv&U_1|#bMEQA!;^PG!&i1+ETX2e51+?{p)@Hp@& zpDi{q@Wj-1d1_9fNY31ET>jAdtVn%@MSjEUbyT0ZwY-kvZjo3b@Eu_#lDOGN2r_ed zA65!C)=5uT1(@b}({`o5{2W3cjfAPNXbz^`4s4#~rzUFbwc*YL!c#0`c@c6MpGq~k zxVQ+R()7>Ud)|526%=W(rZ4|NIYvq}H96PPKK)ys*5)g*DxAaf=S${HZ|qp?lJ)$U z)p+KIFoh1OtpwRfcChL_kRsb{`w@lgTtcQ~)*XfQ%R$FP^>7CFlh!#%z=67S<{uuY z_c7!ghv_n1Q|^IXNRX*<9@cy^d7Vsse7uN#Q3Ep+rm_X?eV|$}=8#^nJA5jv@r>`= z{m13Ajn&oHpiqAX%!_9;%fytCPZ}d*uLTs61aYw#?>Ei{OSh(Wc6M$9o?IRey>R{) z#I3Jw^b2UzO%@K4reOSkGJV~@5%5fe&?sD2J}~Mr7O~k_9&&!B+9aY5!Fq)2!sdv9 zX}0EXrs!L)==9kp)hFC~Wriog);HhQ?YkcnN)=u)g5MeVJZrgv;prr|oNOfH3DcER z|2C*Yll_V_xp3i09xf_yyK%=6>C{Oi;XBahHXjGhMI23yu3{zj(C6LEk~wGa{zkI; zIn7C%p{d@RA{~WpqoPJA;6EzIzpV~Xl&x&7m^mUzPk7Si22EC)RI1g&3FiwB!I0c% z?!qf4XG;BXoW0c0y*J^fFF2+y+!3RxKg`=+xYpkJs-bI@da#hcUAXyl*2g{-ua{vz?j1Q z<2Bwpue3M{$rs9yD$Cc!ihg%gU7+z%ul1&$!~2F*%aGWYwI-!mC3#Q0+MW(a$O5zf zSau@GOzv%bb|xpfm3i`7^9%zEUHHEw=>M9~m8k$(lCfH-M+S=$U5Wmw`G|e+ACyjY zMFdok_oFL3weLQiQ2wqD_s23Wwerc8h(siuw>UB1ZUiw9)?sx=?SWoZjssb6oANN( zH#M1f;*D*x2^$oucHyM8q^vBGa5CA&G)LqzFn;v-acz`gq;cl56{C(AGgF~C1Ro|9vosD&CPO766OkyCQ43s| zcbq~WH>VenUR!22ip4Ghoky{64akM(+~l;kY$f7#kOSPxL;0lT%@UM)gzix<-gpzM zew}VVRcz~(ti=zI#0T27pd#m2Y16Gn>ik)>d3x`oG`K= zqv?Tc48mHp?C;B8`;$t>&1mVeFf_n1_kUm^y(gy-G8$zom)Yjz%~e_mD8ybSwE>gy z_tWv`Mv%$!)$d42KuG~A&2o5dvSx3hvxxd_Lm5}nS&|l4pPi&3pR9vJLs0_pxPBx1 zKx^>2Obj3qlM4gqg!^i7IKGnda=h@o1f_oRhzF?0#?uqf!+0@`Y#S>5iMn)0lh=)3 zF4k`4p+O&XjK5GbRwaF>ZPCOsB92nW8zu?FeDCJrTc#!3+s@limajz!$eLzxZw;Vo zXxG|TDD;CiCMc>M*k?lv-JOM=^NwPx*AM+_r-()s!dUEr+r-+T-(;8Ehmm!D`p=dM z#biC9JZ4@TZ0mOmpYug8$*JUz42e-)Q04oJa#$l|mF6*4?Gr2tbrdFJSNzlkO!mzfjG>F`evUDD5n zNd^T8r6(Cy$DHomg7a-_{k`L8J-Px7AMVb*D%2eFKa7*#CJ;>Jry~~KF0rh3*1&;C zmvx;@E53{N_doH`&2saQ*bJqpo|v9ynIqOlfz`RmyX2XaXI$!UanrA+7&@TQB%l1{ zWDceu^W-!}ORAk|M?@mIpvI@;&-i$PSCjdsf}?FEYR;5d znH$^hj7GOG;l4V}#+6QOvl@$tgj*e_Y4h$#?f!nJAhF9{ftnkket1oW7b_GBfbtKr zug@OFZpQ}hlcS2f16rx6t^Ht5A+*FUM2`mpl_R>pmkbu9e>g;8>N1Lzc*Y{aAq^3E$*Hd~WTqbnB+)7!>8uqEI-y() zF7vo?s{m}p1oX?HdPonDvy@dDf=30v$3t&jpkgU!1wZWmVbJ{RGQ%iPcZiXYZ39*$ zcwj(>iRt_7Y{J?m94O{EIXi3BPl?tXDew1KNVO%HivGrK_@s9F!0CZ1!NCdIzJ97( zr?qCK4vGaD$!L!L_5?bGBOoHdCKUQtaxINa0r!qu=fW*)MX8-0MhQIOIl(4S>Qt;e zisEF9?E`HA?iLk*Me9vQu{jmV0hE??CP1dT&Gg@Rc&cO@d_$g307?#&PC;7gx@u*r HmM{Me3P>$} literal 3839 zcmb7HXH*l~vQ7Xc(h<2pXc3NpqBIetNDb{k0;r%MRaz1$N)u3e5s1h^l+arg6c7*+ zkY1!oN0ct17@~$4AV7c!dGXIX_pbNediVaA{jI%cuUUJ~d^2k%#RhK1%LV2F006ue z=FqDwT>34bWJ$%gP~qQ9)ZZa!N>rA03a+sZDfcmUPT~rIb`cp{7*|| z|N66k-Ycnrlw$dMURaeK95{n06|hiJCucMt{fBL%jRt=4FZOWG15 z&vEL?f%%X&i0FXY8`BlQaV1CCLQU8@Kd5`VXCtIne>x**;Pp($A3*+f-6D97iY?8p$~jZ^8p>sdooqi z(=4Gj9W6M=WB!G!2iY;3j{ zY~QVt%$uz8Y20A5h2`_IV zr2YtJn2kGf4X)xklzu@D*6tb{{IjGV67wMWxVzk;LvG1WOK~d)7Z*5XHHl7j&^g&D zQFq*ZSJYEM7nG@S;4LIFc=>f*KcI@rZW{FG0LFT|)uBAo|-BJ;&VaOYiWVy^k- zh47(|{*Bm3HfYac;1k9C+c}7Mb0KW8(t3;F5e1J{&2WN^@9AEvnXbgoQ$BL3zkdGw zdC7QA^IaUKZ+fvv#gB;0tB%Fl$8al4Ss8y-`M!J84#C!}(nB>8n;hpHKCNhu95E1a zi7ZLCwQ=LIpuQUnI?oH_2ux+mI)$t9Z~#I6y7o!f;>S}@$)Tr;F=?hA)B5wz>`W=P zHh#!4ENr?{eJESF*5de=zyND+npxDK(yciK#GF|ywBjPyx!ZKJC|{*pQmph>C}qii z`)r_yc6b z>%ou8_~=buwfZM^u+L?u z^M9~6t907hi-~c}s%rC=96o@DfQ>R)3F4JCk!2{5O|$|yi>@fwKX#y@hMSs(Uh5T) zETiAqm||3Uft{k|D1%}Y2vVF3U`ze?U?7M8Yn{sa(JpZ$FJRH}md+WOt&S*t+JpH1 z^cv>Qdw%_#KfAaBN>u#^maO1zmS3%`?6#FKLaEyhYl#q9U;uh5J5pU#K}9Q z22fA;C>JPHgK^k3jitBrj$n#jJm!L+YGBLB1;CflYWHl9i|5&c9R#{A6WlmjpVhtktri%OuzE$$c%XP zNq-Iieyx1+guT7}i!c5|gM+E{l~&W_9ms*?93}M3@v_n~l6QwP$wlXukYLmHM7d$G zYpa9yYyG4Bv4AN)iObJP572yj0-YQU7ml=Fm!kXTxZP$+!V{ zy=H}-Cgae#k#$#vALJu(OZQy5l-^&n<)H`Bu8XZ=4|jXhAW?+3z1Y6dMiqVKJopZ-Rs_i?m;+~ zndnF479*c?32!`hO6DhG#(Z2CKvq+A90E-}oN_Bq7gGZ7_`$3=H(svx*AN_U31t*5 zrtYRc+izdmTqT=~HAc0_bJJ*B-yvfA7U($4f&j|JGmRB>udw&r_x?b>*STx9Hqge&5;UL<^Gc z+KEjHAR{kivI{lb%r3H)Oi)b($TaTRM5}Kr%cRho)@Nt9E#@Fr!Hn5BWo_1jdmkO} zk4R+@4%a*>&xPbsn+$(KTe-89hXzB3sw13osiSEA&@@Ko8@rqvSjM51Uo;@8m#SFF ze;Kw3EK18Dcx~@m_NR-0H{7EQzHXH_E*|{4q0HRH4Oqvb7kMJ-Ez(H`7W8&U=6vsc zLZovI?&p9r`xJ{Z%d-0TwkIXpE7JQco{DI-LR_O;&dR)(7OsHH;vP1!4{+WVWDbnI zrxbknW?XOPSx>+i3$L@ojei2RVs9p|7c#(+_qqCvd6S*uSc&sUx=lWSU!yL}%qLTJ(k5?lm+vDnH-cBa_J@Sb>N_k+4FMXZNHYm(Tk09q|>C zh#TO&p$3Wf;%Lci|10i1rlq9=gvl~Qz#V6cIq^!q`j$0OK`S{ug`B^R6N0A z9)|mY-ho<2TqnaSk)j3VkIR($>hbtXwtG+>j@pnaCG?}BXT9&O2hqys2b!j%oLe>? z)#DKpQ);=z8f`z!tPj)~o}V6u&d$udGCBQN(~PFjsve0;&rM#R%a)zHG18-l%CK-n z4r)*WXSXG+$oB&@^12ol@_qgMK3qPmLT2N1O-VpaDxEk;V2U{%e4AWi5q4mj;6Hdk zS*+%jK%?-E)RY+qp`T`x6&acu8YtFB*4EZM7jpaT``EHIKpu4`z{ixq#}>v!+IUOH zO`V6FWukgZiN@po2iVVya?U0 z(|ylAcVwFqWEI^KYMcs5hepuq-|E->RZsxd``#?J&X$Q<@UW|MEkE78QNSPILer(v z<)o(f0j4cw2kowk_0|=$^txDC*)%V>@h>arqCiHFOrRaKIvZ3%13vE7Oys_e$d2BQ z8@_BWY-OCBOl3$j+M_iNn!l}TNp~W!eRal{>&|`~SBai_TVW1H;!4KEvfQW9#wSSo zPNAswfzLRqq#4oFFmJ@$#{Qc69jW0dEwxGC0*|1b{Te3#5ObNpam>l|f6NDe2W>kc z6u8@xDQ}Gu0j9qCyBqxb#y?FLqisTR4d*sB+o?=5yo!OLDav4srUyHi!)?5+No0;b zsuX4)Rr|~lDSL$ffTyiKBD*V+C3OsGi>UA><`qwDEx1#*Yr4-2l8773i*olX zfMsv)0wM{_8JezOhGN|{MQ7oRfK)yIrz&4<{T@8o=n7$#jAih?Pj?<>2rQAJX$Y$t z;zwN6;1!%Q^(j+TLwf94`Q1o7?ER*@6y6pkGlq zKjFVbs0n8wJOup48qPGv_B2OrOznq5%Y9`3_1t1nZs2(ZiQwk*I@nGhMAB`EZ6Ghm rcz|(LRRd*UAPD3*CHQ~91QWP#5HEG2dmPQ0XaN=`aA>uWTikyEvb;7> diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm index 083413fd059..9a8e1426674 100644 --- a/maps/stellar_delight/stellar_delight1.dmm +++ b/maps/stellar_delight/stellar_delight1.dmm @@ -1,44540 +1,2591 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 28 - }, -/mob/living/simple_mob/vore/fennec/bridgette, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"ab" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"ac" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"ad" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ae" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"af" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/book/manual/resleeving, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"ag" = ( -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"ah" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"ai" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/obj/random/contraband, -/obj/structure/cable/pink, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"aj" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"ak" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/orange, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"al" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"am" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"an" = ( -/turf/simulated/wall/bay/white, -/area/stellardelight/deck1/aft) -"ao" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"ap" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"aq" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/red, -/area/security/armoury) -"ar" = ( -/obj/structure/filingcabinet/chestdrawer{ - desc = "A large drawer filled with autopsy reports."; - name = "Autopsy Reports" - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"as" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"at" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"au" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"av" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/item/weapon/storage/box/backup_kit, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"aw" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"ax" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"ay" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/device/multitool/station_buffered{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"az" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"aA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"aB" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/personal_shield_generator/security/loaded, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"aC" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"aD" = ( -/turf/simulated/wall/bay/purple, -/area/assembly/robotics) -"aE" = ( -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"aF" = ( -/obj/structure/closet/bombcloset/double, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 29 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 38 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aG" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, -/obj/item/weapon/book/custom_library/religious/feastofkubera, -/obj/item/weapon/book/custom_library/religious/storyoflordganesha, -/obj/item/weapon/book/custom_library/religious/sungoddessofkorea, -/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, -/turf/simulated/floor/wood, -/area/library) -"aH" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled{ - dir = 4; - id = "GatewayShutterE" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/gateway) -"aI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"aJ" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"aK" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"aL" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 5; - network = list("Xenobiology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"aM" = ( -/turf/simulated/wall/bay/purple, -/area/rnd/workshop) -"aN" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"aO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"aP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"aQ" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"aR" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"aS" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/security/security_equiptment_storage) -"aT" = ( -/obj/item/weapon/storage/box/nifsofts_mining, -/obj/structure/table/reinforced, -/obj/item/device/personal_shield_generator/belt/mining/loaded, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"aU" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aV" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"aW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"aX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/emerald/corner, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"aY" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 2 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"aZ" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 8; - id_tag = "xenobio_airlock_control"; - name = "Xenobiology Access Console"; - pixel_x = 24; - tag_exterior_door = "xenobio_airlock_exterior"; - tag_interior_door = "xenobio_airlock_interior" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology) -"ba" = ( -/obj/item/modular_computer/console/preset/civilian, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"bb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/botany/editor, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"bc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"bd" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"be" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "xenobio_airlock_control"; - name = "Xenobiology Access Button"; - pixel_y = -32; - req_access = null; - req_one_access = list(47,55) - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - autoclose = 0; - dir = 4; - door_color = "#ffffff"; - fill_color = "#ead9ff"; - frequency = 1379; - id_tag = "xenobio_airlock_interior"; - locked = 1; - name = "Xenobiology Lab"; - req_access = list(47,55); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/xenobiology) -"bf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"bg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/disposal/wall/cleaner{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"bh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"bi" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm1) -"bj" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/xenobiology/xenoflora) -"bk" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/prison/cell_block/C) -"bl" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/civilian) -"bm" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/warden, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"bn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"bo" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/exploshuttle) -"bq" = ( -/obj/structure/table/bench/steel, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"br" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm1"; - name = "Room 1"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm1) -"bs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/port) -"bt" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"bu" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"bv" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"bw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/catwalk_plated/dark, -/obj/effect/landmark/vines, -/turf/simulated/floor, -/area/stellardelight/deck1/port) -"bx" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"by" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"bz" = ( -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"bA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/library) -"bB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"bD" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"bE" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"bF" = ( -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/obj/structure/sign/painting/chapel_secure{ - pixel_y = -32 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"bG" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"bH" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"bI" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"bJ" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"bK" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 4; - pixel_x = -24; - plane = -34 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"bL" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"bM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"bN" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"bO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"bP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"bQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"bR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/halls, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"bS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"bU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm7) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"bW" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"bX" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/corner, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"bY" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"bZ" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"cb" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"cd" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"ce" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"cf" = ( -/obj/structure/table/steel, -/obj/item/weapon/surgical/scalpel, -/obj/item/weapon/autopsy_scanner, -/obj/item/weapon/surgical/cautery, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"cg" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"ch" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"ci" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"cj" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobiopen3"; - name = "Pen 3 Containment"; - pixel_x = -30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen5"; - name = "Pen 5 Containment"; - pixel_x = -31; - pixel_y = -8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobiodiv3"; - name = "Divider 3 Blast Doors"; - pixel_x = -39; - req_access = list(55) - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"ck" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"cl" = ( -/obj/structure/table/woodentable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"cm" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/forensics/sample_kit, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"cn" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"co" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"cp" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower/medical, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"cq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "researchwindowlockdown"; - name = "Window Lockdown"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"cr" = ( -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"cs" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/suit/space/void/medical/emt, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/item/clothing/head/helmet/space/void/medical/emt, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"ct" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"cu" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/shower) -"cv" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"cw" = ( -/obj/structure/reagent_dispensers/acid{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"cy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/angled, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"cA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"cB" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"cC" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"cD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"cE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"cF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"cG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"cI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"cJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm2"; - name = "Room 2"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm2) -"cK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"cM" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gunbox{ - pixel_y = 6 - }, -/obj/item/gunbox{ - pixel_y = -3 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"cN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"cO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"cQ" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"cS" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"cT" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"cU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"cV" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"cW" = ( -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"cX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"cY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Forensics Lab"; - req_access = list(4); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/detectives_office) -"cZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/vending/cigarette, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"da" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"db" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"dc" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"dd" = ( -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"de" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"df" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"dg" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobiopen2"; - name = "Pen 2 Containment"; - pixel_x = 30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen4"; - name = "Pen 4 Containment"; - pixel_x = 29; - pixel_y = -8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobiodiv2"; - name = "Divider 2 Blast Doors"; - pixel_x = 38; - pixel_y = -1; - req_access = list(55) - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"dh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"di" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"dj" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"dk" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"dl" = ( -/turf/simulated/wall/bay/brown, -/area/stellardelight/deck1/mining) -"dm" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"dn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"do" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "miningops" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"dp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"dq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - dir = 4; - id = "recoveryexit"; - name = "Door Control"; - pixel_x = -27; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"dr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"dt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"du" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"dv" = ( -/obj/structure/closet/walllocker_double/east, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"dw" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/structure/cable/white{ - icon_state = "16-0" - }, -/obj/structure/stairs/spawner/north, -/turf/simulated/floor, -/area/stellardelight/deck1/lowermed) -"dx" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/library) -"dy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"dA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"dB" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"dD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/effect/floor_decal/milspec/color/black, -/obj/item/ammo_magazine/ammo_box/b12g/pellet{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/ammo_magazine/ammo_box/b12g/pellet{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"dF" = ( -/obj/machinery/computer/security/xenobio, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"dG" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"dH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"dI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"dJ" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"dK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - name = "Library"; - stripe_color = "#3b3b3b" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/library) -"dL" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"dN" = ( -/obj/structure/closet/secure_closet/hydroponics/sci{ - req_access = list(77) - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"dO" = ( -/obj/machinery/mineral/input, -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"dP" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"dQ" = ( -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"dR" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/obj/machinery/camera/network/security, -/obj/machinery/computer/arcade, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"dS" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/obj/random/pouch, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"dT" = ( -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"dU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/stellardelight/deck1/miningshuttle) -"dV" = ( -/obj/structure/table/rack/shelf/steel, -/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/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"dW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "dontlooktmyrobotpenis"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Robotics Desk"; - req_access = list(7); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"dY" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"dZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/disk/tech_disk, -/obj/item/weapon/disk/tech_disk, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/item/clothing/gloves/sterile/latex, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"ea" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"eb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"ec" = ( -/obj/structure/sign/deck1{ - pixel_x = -32 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"ed" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"ee" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"ef" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"eh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/southleft{ - id = "Cell B"; - name = "Cell B"; - req_access = list(2) - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/prison/cell_block/B) -"ei" = ( -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"ej" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"ek" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/portaft) -"el" = ( -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/obj/structure/closet/walllocker_double/east, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/device/gps{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/gps{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/device/gps{ - pixel_x = -6; - pixel_y = -4 - }, -/obj/item/device/gps{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"en" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"eo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/low_wall/bay/reinforced/purple, -/obj/structure/sign/xenobio{ - plane = -34 - }, -/turf/simulated/floor, -/area/rnd/xenobiology) -"ep" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"eq" = ( -/turf/simulated/floor/carpet, -/area/chapel/main) -"er" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"es" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"et" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/space, -/area/space) -"eu" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"ev" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"ew" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"ex" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"ey" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/wall/bay/purple, -/area/stellardelight/deck1/exploration) -"ez" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/weapon/reagent_containers/syringe, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"eA" = ( -/obj/effect/floor_decal/milspec/color/black, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"eB" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"eC" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"eD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"eE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"eF" = ( -/turf/simulated/floor, -/area/security/tactical) -"eG" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"eH" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"eI" = ( -/obj/machinery/libraryscanner, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/library) -"eJ" = ( -/obj/structure/table/rack/shelf, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"eL" = ( -/obj/structure/mirror{ - pixel_y = 38 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"eM" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"eN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"eO" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/curtain/open/privacy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"eP" = ( -/obj/machinery/computer/timeclock/premade/east, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"eQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"eR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"eS" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "chapelofficelockdown" - }, -/obj/structure/low_wall/bay/reinforced/black, -/turf/simulated/floor, -/area/chapel/office) -"eT" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"eU" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"eV" = ( -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"eW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"eX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"eY" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/machinery/alarm/angled, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"fa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#8c1d11"; - fill_color = "#854a44"; - name = "Warden's Office"; - req_access = list(3); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/warden) -"fb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"fc" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/main) -"fd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"ff" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "miningops" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"fg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/rnd/xenobiology) -"fh" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"fi" = ( -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"fj" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"fk" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"fl" = ( -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"fm" = ( -/obj/machinery/smartfridge/secure/virology, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"fn" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"fo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"fp" = ( -/obj/machinery/r_n_d/circuit_imprinter{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"fq" = ( -/obj/structure/table/steel_reinforced, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"fr" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm3) -"fs" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"ft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"fu" = ( -/obj/structure/bed/chair/sofa/corp/right, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"fv" = ( -/obj/random/slimecore, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"fw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "brigwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/prison/cell_block) -"fx" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"fy" = ( -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/red, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/stamp/ward, -/obj/item/weapon/stamp/denied{ - pixel_x = 5 - }, -/obj/item/weapon/pen, -/obj/structure/table/steel_reinforced, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"fz" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"fB" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/obj/random/contraband, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"fD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -64 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"fE" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"fF" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"fG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/gps/security{ - pixel_y = 3 - }, -/obj/item/device/gps/security{ - pixel_x = -3 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"fH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"fI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"fJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Mech Bay"; - req_access = list(29,47); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/assembly/robotics) -"fK" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"fL" = ( -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"fM" = ( -/obj/structure/closet/l3closet/scientist, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/item/clothing/suit/bio_suit/scientist, -/obj/item/clothing/head/bio_hood/scientist, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"fN" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"fO" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#3d5e80" - }, -/area/stellardelight/deck1/aft) -"fP" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"fQ" = ( -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Exploration"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"fR" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"fS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"fT" = ( -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"fU" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"fV" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"fW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"fX" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled, -/obj/machinery/librarypubliccomp, -/turf/simulated/floor/wood, -/area/library) -"fZ" = ( -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"ga" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"gb" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"gc" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"gd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"ge" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"gf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm5"; - name = "Room 5"; - stripe_color = "#89bd66" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm5) -"gg" = ( -/obj/effect/landmark/start/xenobio, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"gh" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"gi" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"gj" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"gk" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"gl" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology) -"gm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/painting/chapel_secure{ - pixel_y = 32 - }, -/obj/effect/landmark/start/chaplain, -/turf/simulated/floor/carpet, -/area/chapel/main) -"gn" = ( -/obj/structure/bed/chair/backed_red, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"go" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"gp" = ( -/obj/structure/closet/crate, -/obj/machinery/camera/network/mining{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"gq" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"gr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"gs" = ( -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/head/welding, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/structure/closet/walllocker_double/north, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"gt" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"gu" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"gw" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"gx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"gy" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"gz" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"gC" = ( -/obj/structure/table/steel, -/obj/item/device/sleevemate, -/obj/item/device/camera{ - name = "Autopsy Camera"; - pixel_x = -2; - pixel_y = 7 - }, -/obj/machinery/alarm/angled, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"gD" = ( -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"gE" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/obj/item/weapon/nullrod, -/obj/item/weapon/deck/tarot, -/obj/item/device/retail_scanner/civilian, -/turf/simulated/floor/lino, -/area/chapel/office) -"gF" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"gG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/portcent) -"gH" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"gI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"gK" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"gL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled{ - id = "GatewayShutter" - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"gM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Research and Development"; - req_access = list(7); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/research) -"gO" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - req_access = list(31,5) - }, -/obj/structure/cable/yellow, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"gP" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardcent) -"gQ" = ( -/turf/simulated/wall/bay/brown, -/area/stellardelight/deck1/oreprocessing) -"gS" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"gT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"gU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"gV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"gW" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"gX" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology) -"gY" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"ha" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#313866"; - id_tag = "rddoor"; - name = "Server Room"; - req_access = list(30); - stripe_color = "#5a19a8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/researchserver) -"hb" = ( -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/structure/cable/pink, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Security"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"hc" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/security_port) -"hd" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/researchequip) -"he" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"hg" = ( -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"hh" = ( -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"hi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"hj" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"hk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"hl" = ( -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"hm" = ( -/obj/machinery/autolathe{ - hacked = 1 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"ho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"hp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/port) -"hq" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = -24 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"hr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"hs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"hu" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/gun{ - pixel_y = 7 - }, -/obj/item/weapon/gun/energy/gun{ - pixel_y = -5 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"hv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"hw" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"hx" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "xenobio_airlock_control"; - name = "Xenobiology Access Button"; - pixel_y = 32; - req_access = null; - req_one_access = list(47,55) - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - autoclose = 0; - dir = 4; - door_color = "#ffffff"; - fill_color = "#ead9ff"; - frequency = 1379; - id_tag = "xenobio_airlock_exterior"; - locked = 1; - name = "Xenobiology Lab"; - req_access = list(47,55); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology) -"hy" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"hz" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"hA" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"hB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "Server Room"; - req_access = list(30) - }, -/obj/machinery/door/window/northleft{ - name = "Server Room"; - req_access = list(30) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor/grid, -/area/stellardelight/deck1/researchserver) -"hC" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/cell/device/weapon{ - pixel_y = -2 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_y = -8 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_y = 4 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_y = 11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"hD" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"hE" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"hF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#8c1d11"; - name = "Equipment Storage"; - req_access = list(1); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/security_lockerroom) -"hG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 10 - }, -/obj/structure/sign/directions/chapel{ - dir = 8; - pixel_x = 32; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"hH" = ( -/obj/machinery/door/blast/angled{ - id = "GatewayShutter" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"hI" = ( -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"hJ" = ( -/turf/simulated/wall/bay/white, -/area/medical/virology) -"hK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"hL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"hM" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"hN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"hO" = ( -/obj/item/weapon/weldingtool, -/obj/item/clothing/glasses/welding, -/obj/item/weapon/storage/box/lights/mixed, -/obj/structure/closet/walllocker_double/north, -/obj/item/device/multitool, -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"hP" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"hQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"hR" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"hS" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/sign/department/biblio{ - pixel_x = 32; - plane = -34 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"hT" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"hV" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"hW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"hX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"hY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled{ - dir = 4; - id = "GatewayShutterW" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/gateway) -"hZ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/closet/bombcloset, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"ia" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"ib" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"ic" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/orange, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"id" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"ie" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"if" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"ig" = ( -/obj/effect/floor_decal/industrial/loading, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"ih" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"ii" = ( -/obj/random/maintenance/security, -/obj/random/medical, -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/security_port) -"ik" = ( -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"il" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"im" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"in" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"io" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 29 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 38 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"ip" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"iq" = ( -/turf/simulated/floor/wood, -/area/library) -"ir" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"is" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"it" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/shower) -"iv" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"iw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"ix" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"iy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"iz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/library) -"iA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"iB" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"iC" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology) -"iD" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"iE" = ( -/obj/structure/sign/painting/library_private{ - pixel_x = -32 - }, -/obj/structure/sign/painting/library_private{ - pixel_y = -32 - }, -/obj/item/weapon/storage/briefcase, -/obj/item/weapon/storage/briefcase, -/obj/structure/table/rack, -/turf/simulated/floor/wood, -/area/library) -"iF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - name = "Custodial Closet"; - req_access = list(26); - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/janitor) -"iG" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"iH" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/effect/shuttle_landmark/shuttle_initializer/exploration, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"iI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"iJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"iK" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/paper_bin{ - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_y = 6 - }, -/obj/random/coin/sometimes, -/turf/simulated/floor/wood, -/area/library) -"iL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"iM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#ffffff"; - name = "maintenance access"; - req_one_access = null; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/starboardaft) -"iN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/chapel/main) -"iO" = ( -/obj/structure/table/steel, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"iQ" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"iR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"iS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"iT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"iU" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"iV" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/walllocker_double/west{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"iW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"iX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"iY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 4; - frequency = 1380; - id_tag = "explodocker_bay"; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"iZ" = ( -/obj/effect/floor_decal/milspec/color/red, -/obj/machinery/alarm/angled, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"ja" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"jb" = ( -/obj/machinery/door/blast/multi_tile/three_tile_ver{ - id = "xenospace2" - }, -/turf/simulated/floor/reinforced, -/area/rnd/workshop) -"jc" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"jd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/shower) -"jf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/halls, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"jg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"jh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"ji" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"jj" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - icon_state = "map_vent_out"; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 - }, -/area/stellardelight/deck1/researchserver) -"jk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 8; - pixel_x = 24; - plane = -34 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"jl" = ( -/obj/structure/table/steel, -/obj/item/device/retail_scanner/security, -/obj/item/device/taperecorder, -/obj/item/weapon/storage/box/evidence, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"jm" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"jn" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"jo" = ( -/obj/machinery/button/crematorium{ - id = "crematorium"; - pixel_x = 25; - req_access = list(); - req_one_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"jp" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"jq" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/turf/simulated/floor/wood, -/area/library) -"jr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "brigwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/prison/cell_block/B) -"js" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"jt" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"ju" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 5"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 4"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen4"; - name = "Pen 4 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"jv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"jw" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"jx" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen1"; - name = "Pen 1 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"jy" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"jz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm3) -"jA" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"jB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"jC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/library) -"jD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"jF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"jG" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"jH" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"jI" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"jJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"jK" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Library Desk Door"; - req_access = list(37) - }, -/obj/machinery/button/remote/blast_door{ - id = "librarywindowlockdown"; - name = "Window Lockdown"; - pixel_y = 25; - req_access = null - }, -/turf/simulated/floor/carpet, -/area/library) -"jL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/library) -"jN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"jO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Cargo Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/cargo) -"jP" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"jQ" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"jR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"jT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"jV" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"jW" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/landmark/start/pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"jY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"jZ" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"ka" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"kc" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Civilian Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"kd" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ke" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"kf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"kg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"kh" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"kj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/sign/directions/janitor{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"kk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"kl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/machinery/station_map{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"km" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"kn" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"ko" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"kp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"kq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"kr" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Research Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"ks" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"kt" = ( -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ku" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"kv" = ( -/obj/structure/sign/deck1{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"kw" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/wood, -/area/library) -"kx" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"ky" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"kz" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"kA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"kB" = ( -/turf/simulated/wall/bay/r_wall/black, -/area/maintenance/security_port) -"kC" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"kE" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"kG" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"kH" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"kI" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 3"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 3"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen3"; - name = "Pen 3 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"kJ" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"kK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"kL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"kM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"kN" = ( -/obj/machinery/door/blast/multi_tile/three_tile_ver{ - id = "xenospace4" - }, -/turf/simulated/floor/reinforced, -/area/rnd/workshop) -"kO" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"kP" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/storage) -"kQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"kS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"kT" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "0-8" - }, -/obj/machinery/camera/network/security, -/obj/machinery/computer/arcade, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"kU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"kV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "researchwindowlockdown" - }, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/rnd/xenobiology/xenoflora_storage) -"kY" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"la" = ( -/obj/machinery/smartfridge/secure/extract, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"lb" = ( -/obj/machinery/door/blast/angled{ - id = "xenobiodiv3"; - name = "Divider 3 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"lc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"ld" = ( -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"le" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"lf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"lg" = ( -/obj/effect/shuttle_landmark/premade/sd/deck1/starboard, -/turf/space, -/area/space) -"lh" = ( -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"li" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"ll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"lm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"ln" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 1"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 1"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen1"; - name = "Pen 1 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"lo" = ( -/obj/structure/table/woodentable, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/turf/simulated/floor/carpet, -/area/library) -"lp" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"lq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Security Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/security) -"lr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"ls" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/dorms{ - dir = 6; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/janitor{ - pixel_x = -32; - pixel_y = -12 - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"lt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"lv" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"lw" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"lx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"ly" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"lz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9fccc7"; - fill_color = "#333333"; - name = "Pilot Equipment"; - req_access = list(67); - stripe_color = "#ffffff" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/pilot) -"lA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/angled, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"lB" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/firealarm/angled, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"lC" = ( -/obj/item/weapon/bedsheet/bluedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"lD" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"lF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"lG" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/mob/living/simple_mob/animal/passive/mimepet/gregory, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"lH" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"lI" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"lJ" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"lK" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 8; - pixel_x = 24; - plane = -34 - }, -/obj/machinery/button/remote/blast_door{ - id = "xenospace2"; - name = "2 Space Door"; - pixel_x = 10; - pixel_y = 21; - req_access = list(55) - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"lM" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/department/biblio{ - pixel_x = 32; - plane = -34 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"lN" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"lO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#333333"; - name = "Auxiliary EVA Equipment Room"; - req_one_access = list(18,19,43); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/exploequipment) -"lP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"lQ" = ( -/obj/structure/table/steel, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"lR" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"lS" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"lT" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"lU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"lV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"lW" = ( -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/xenoflora/full, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"lX" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"lY" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"lZ" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 4 - }, -/obj/item/device/radio{ - anchored = 1; - canhear_range = 7; - frequency = 1487; - icon = 'icons/obj/items.dmi'; - icon_state = "red_phone"; - name = "Virology Emergency Phone"; - pixel_x = 7; - pixel_y = 9 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 4; - id = "virologyquar"; - name = "Virology Emergency Lockdown Control"; - pixel_x = -28; - pixel_y = 5; - req_access = list(5) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"ma" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/obj/random/maintenance/research, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"mb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"mc" = ( -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/structure/table/steel, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/wall{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"md" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"me" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/library) -"mf" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"mg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/detective, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"mh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"mi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"mj" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -24; - pixel_y = -25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"mk" = ( -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ml" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"mm" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"mn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"mo" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = -30 - }, -/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman, -/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor, -/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1, -/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain, -/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, -/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver, -/obj/item/weapon/book/bundle/custom_library/fiction/metalglen, -/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday, -/obj/item/weapon/book/bundle/custom_library/fiction/raissue142, -/obj/item/weapon/book/bundle/custom_library/fiction/raissue147, -/obj/item/weapon/book/bundle/custom_library/fiction/silence, -/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat, -/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, -/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, -/obj/item/weapon/book/custom_library/fiction/myrock, -/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, -/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, -/turf/simulated/floor/wood, -/area/library) -"mr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"ms" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"mt" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"mu" = ( -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"mv" = ( -/obj/structure/janitorialcart, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/device/lightreplacer, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"mw" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"my" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"mz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"mA" = ( -/obj/structure/sign/deck1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"mB" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"mC" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"mD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/mouse_hole_spawner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"mE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"mF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"mG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"mH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"mI" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"mJ" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"mK" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/item/weapon/storage/box/nifsofts_pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"mL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"mM" = ( -/turf/simulated/wall/bay/steel, -/area/janitor) -"mN" = ( -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"mO" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"mP" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"mQ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"mR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "Recovery Room"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/patient_wing) -"mS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"mT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"mU" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"mV" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"mW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - door_color = "#333333"; - name = "Away Mission Meeting Room"; - req_one_access = null; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/explobriefing) -"mX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"mY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"mZ" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/bulletproof, -/obj/item/clothing/gloves/arm_guard/bulletproof, -/obj/item/clothing/shoes/leg_guard/bulletproof, -/obj/item/clothing/suit/armor/bulletproof/alt, -/obj/item/clothing/head/helmet/bulletproof, -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"nb" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"nc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"nd" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/expedition_medical, -/obj/item/clothing/head/helmet/space/void/expedition_medical, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"ne" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Exploration Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"nf" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm2) -"ng" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"nh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"ni" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/security/tactical) -"nj" = ( -/obj/structure/table/sifwooden_reinforced, -/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"nk" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/explobriefing) -"nl" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Exploration Subgrid"; - name_tag = "Exploration Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"nm" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"nn" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"no" = ( -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"nq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Security Processing"; - req_access = list(63); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/security_processing) -"nt" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"nu" = ( -/obj/machinery/transhuman/synthprinter, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/assembly/robotics) -"nv" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"nw" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"nx" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#ffffff"; - name = "Morgue"; - req_access = list(6); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/morgue) -"ny" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "explowindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/explobriefing) -"nz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"nA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"nB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"nC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"nD" = ( -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"nE" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"nF" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"nG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/department/medbay{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"nH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"nI" = ( -/obj/effect/floor_decal/milspec/color/emerald, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"nJ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/port) -"nK" = ( -/turf/simulated/wall/rshull, -/area/stellardelight/deck1/miningshuttle) -"nL" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"nM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/chapel/chapel_morgue) -"nN" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"nO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 32; - pixel_y = -24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"nP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"nQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"nS" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"nT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"nV" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/forensics/sample_kit/powder, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"nW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"nX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"nY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"nZ" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"oa" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"ob" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"oc" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/aft) -"od" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Civilian Subgrid"; - name_tag = "Civilian Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"oe" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"of" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"og" = ( -/obj/effect/mouse_hole_spawner{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"oh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the cleaning room exit."; - dir = 4; - id = "resleeveexit"; - name = "Door Control"; - pixel_x = -27; - pixel_y = 25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"oi" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/xenobiology) -"ok" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Exploration"; - sortType = "Exploration" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"ol" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"om" = ( -/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"on" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"oo" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"op" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"oq" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"or" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen6"; - name = "Pen 6 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"os" = ( -/obj/structure/sign/department/miner_dock{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"ou" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"ov" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"ox" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"oy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"oz" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/research) -"oA" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "dorm4"; - name = "Room 4 Lock"; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"oB" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"oC" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"oD" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"oE" = ( -/turf/simulated/wall/bay/white, -/area/medical/morgue) -"oF" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"oG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"oH" = ( -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Void"; - sort_tag = "Void" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/department/virology{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"oI" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"oJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"oK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/library) -"oL" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_circuit_printer, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"oM" = ( -/obj/machinery/transhuman/resleever, -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"oO" = ( -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"oQ" = ( -/obj/machinery/vending/wardrobe/secdrobe, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"oR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark/start/pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"oS" = ( -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large/default, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"oT" = ( -/obj/structure/closet/l3closet/janitor, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"oU" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"oW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"oX" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/storage) -"oY" = ( -/obj/machinery/organ_printer/flesh, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"oZ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"pa" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/aft) -"pb" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"pc" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"pd" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -64 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"pe" = ( -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"pf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"pg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/catwalk_plated/dark, -/obj/effect/landmark/vines, -/turf/simulated/floor, -/area/stellardelight/deck1/starboard) -"ph" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/security_port) -"pi" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"pj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"pk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"pl" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/red, -/area/security/tactical) -"pm" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "dorm6"; - name = "Room 6 Lock"; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"pn" = ( -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"pp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "chapelwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/black, -/turf/simulated/floor, -/area/chapel/main) -"pq" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"pr" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"ps" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Equipment Room"; - req_access = list(7); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/research) -"pt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Toxins Storage"; - req_access = list(8); - stripe_color = "#5a19a8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/storage) -"pu" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"pv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 32; - pixel_y = 7 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"pw" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"px" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"py" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"pz" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"pA" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the cleaning room."; - dir = 4; - id = "resleeveclean"; - name = "Door Control"; - pixel_x = -27; - pixel_y = -27 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"pC" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/stellardelight/deck1/exploequipment) -"pD" = ( -/obj/structure/table/woodentable, -/obj/item/device/tvcamera, -/obj/structure/sign/painting/library_private{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/library) -"pE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"pF" = ( -/turf/simulated/wall/bay/purple, -/area/stellardelight/deck1/researchequip) -"pH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#a6753d"; - name = "Mining"; - req_access = list(31); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/mining) -"pI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "ex_airpump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "ex_airlock"; - pixel_y = 24; - req_one_access = list(13); - tag_airpump = "ex_airpump"; - tag_chamber_sensor = "ex_sensor"; - tag_exterior_door = "ex_exterior"; - tag_interior_door = "ex_interior" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"pJ" = ( -/obj/structure/bed/chair/sofa/corp/left{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"pK" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"pL" = ( -/obj/machinery/door/window/brigdoor/southright{ - req_access = list(77); - req_one_access = newlist() - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"pM" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"pN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/janitor, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"pO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Cargo Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/cargo) -"pP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"pQ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/xenobiology/xenoflora_storage) -"pR" = ( -/turf/simulated/wall/bay/brown, -/area/stellardelight/deck1/miningequipment) -"pS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"pT" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"pU" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/stairs_up{ - dir = 1; - pixel_x = -32; - pixel_y = 12 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"pV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"pX" = ( -/obj/machinery/shower{ - dir = 1; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/curtain/open/shower/medical, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/medical/virology) -"pY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/detective, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"pZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"qa" = ( -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"qb" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "miningops" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"qd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"qe" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"qg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "miningdocker_bay"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"qh" = ( -/turf/simulated/wall/bay/white, -/area/medical/exam_room) -"qj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Library"; - sortType = "Library" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/stellardelight/deck1/starboard) -"qk" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"ql" = ( -/obj/structure/table/woodentable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"qm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"qn" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"qo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"qp" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"qq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"qs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"qu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"qv" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sign/deck1{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"qw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm4"; - name = "Room 4"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm4) -"qx" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"qy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"qA" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/stellardelight/deck1/researchserver) -"qB" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"qD" = ( -/turf/simulated/wall/bay/white, -/area/stellardelight/deck1/paramedic) -"qE" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/shower) -"qF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"qG" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell C"; - name = "Cell C"; - pixel_x = 32; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"qH" = ( -/obj/item/modular_computer/console/preset/civilian, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"qI" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/evidence, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"qJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#8c1d11"; - name = "maintenance access"; - req_one_access = list(38,63); - stripe_color = "#8c1d11" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/tactical) -"qK" = ( -/obj/structure/bed/chair/sofa/corp/left, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"qL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"qM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"qN" = ( -/obj/structure/sign/painting/chapel_secure{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"qO" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"qP" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"qQ" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/machinery/button/remote/blast_door{ - id = "chapelwindowlockdown"; - name = "Window Lockdown"; - pixel_x = -9; - pixel_y = 25 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"qR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"qS" = ( -/obj/machinery/button/remote/blast_door{ - id = "brigwindowlockdown"; - name = "Window Lockdown"; - pixel_y = 25; - req_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"qT" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/catwalk_plated/dark, -/obj/item/device/radio/beacon, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"qU" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"qV" = ( -/obj/machinery/suit_cycler/mining, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"qW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "Resleeving Lab"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/resleeving) -"qX" = ( -/turf/space/internal_edge/right, -/area/stellardelight/deck1/starboard) -"qY" = ( -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"qZ" = ( -/obj/structure/table/steel, -/obj/item/device/retail_scanner/security, -/obj/item/device/retail_scanner/security, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"ra" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/exploration) -"rb" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "GatewayShutterW"; - name = "EVA Shutter"; - pixel_x = 23; - req_one_access = list(18,19,43,67) - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"rc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"rd" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"re" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"rf" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"rg" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"rh" = ( -/obj/structure/table/steel, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 3 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/weapon/storage/box/donut, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"ri" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"rj" = ( -/obj/machinery/camera/network/research, -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"rk" = ( -/obj/structure/bed/chair/backed_red, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"rl" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"rm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"rn" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/mining{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"ro" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-8" - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"rp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/morgue{ - dir = 2; - name = "Private Study"; - req_access = list(37) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/library) -"rr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"rs" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Security Subgrid"; - name_tag = "Security Subgrid" - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"rt" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"ru" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"rw" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"ry" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/weapon/pen, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "dontlooktmyrobotpenis"; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"rz" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/walllocker_double/east, -/obj/item/device/defib_kit/jumper_kit, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/book/manual/robotics_manual, -/obj/item/weapon/book/manual/robotics_cyborgs, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"rA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Civilian Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/civilian) -"rB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"rC" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"rD" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"rF" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/red, -/area/security/armoury) -"rG" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"rH" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"rI" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"rJ" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"rK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"rL" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - name = "Morgue"; - req_access = list(5,6); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/morgue) -"rM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"rN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"rO" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"rP" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"rQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled{ - dir = 4; - id = "GatewayShutterE" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/gateway) -"rS" = ( -/obj/structure/closet/walllocker_double/east{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"rT" = ( -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"rV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"rW" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm8"; - name = "Room 8 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"rX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"rY" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp{ - pixel_x = -14; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "chapelofficelockdown"; - name = "Window Lockdown"; - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"rZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/l3closet/janitor, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"sa" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"sb" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/dorms{ - dir = 10; - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions/science{ - pixel_x = 32 - }, -/obj/structure/sign/directions/janitor{ - dir = 8; - pixel_x = 32; - pixel_y = -6 - }, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"sc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"sd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"se" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"sf" = ( -/obj/machinery/disease2/isolator, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/machinery/alarm/angled, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"sg" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"sh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/department/medbay{ - name = "RESLEEVING"; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"si" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"sj" = ( -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"sl" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/curtain/open/privacy, -/obj/machinery/alarm/angled, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"sm" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"sn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"so" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"sp" = ( -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"sq" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"sr" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/gunbox/warden, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/weapon/gun/energy/sizegun, -/obj/item/weapon/storage/box/donut, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"ss" = ( -/obj/machinery/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/medical_wall/anesthetics{ - pixel_x = 32; - req_access = list(); - req_one_access = list(29,45) - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/assembly/robotics) -"st" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/mining) -"su" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"sv" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/security/armoury) -"sw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"sx" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"sy" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"sz" = ( -/obj/structure/sign/deck1{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"sA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"sB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"sC" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - door_color = "#333333"; - name = "Shuttle Bay"; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/exploration) -"sD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"sF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"sG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"sH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"sI" = ( -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Virology Isolation Room One"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/virology) -"sJ" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"sK" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"sL" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"sM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"sN" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"sO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"sP" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Security Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"sQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"sR" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/mining) -"sS" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"sT" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"sU" = ( -/obj/structure/closet/coffin, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"sV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"sW" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "ex_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "ex_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/exploration) -"sX" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 1 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"sY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"sZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"ta" = ( -/turf/simulated/wall/bay/white, -/area/stellardelight/deck1/lowermed) -"tb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"tc" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"td" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/portcent) -"te" = ( -/obj/machinery/firealarm/angled, -/obj/machinery/chemical_analyzer, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"tf" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/researchequip) -"tg" = ( -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"th" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/gloves/arm_guard/riot, -/obj/item/clothing/shoes/leg_guard/riot, -/obj/item/clothing/suit/armor/riot/alt, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/gloves/arm_guard/riot, -/obj/item/clothing/shoes/leg_guard/riot, -/obj/item/clothing/suit/armor/riot/alt, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/effect/floor_decal/milspec/color/black, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ti" = ( -/obj/machinery/computer/secure_data, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"tj" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"tm" = ( -/obj/structure/dogbed, -/mob/living/simple_mob/animal/passive/tindalos/twigs, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"tn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"to" = ( -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"tp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "security_airlock"; - name = "interior access button"; - pixel_x = -32; - req_access = list(1) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1379; - id_tag = "security_interior"; - locked = 1; - name = "Security Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/tactical) -"tq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Circuitry Workshop"; - req_access = list(7); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/workshop) -"tr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"ts" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"tt" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/head/helmet/laserproof, -/obj/item/clothing/gloves/arm_guard/laserproof, -/obj/item/clothing/shoes/leg_guard/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/head/helmet/laserproof, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"tu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/purple, -/turf/simulated/floor, -/area/stellardelight/deck1/exploequipment) -"tv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"tw" = ( -/obj/structure/sign/department/sci{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"tx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"tz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"tA" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 5; - network = list("Xenobiology") - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"tB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"tC" = ( -/turf/simulated/wall/bay/r_wall/black, -/area/security/armoury) -"tD" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"tE" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/bed/chair, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"tF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"tG" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"tH" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"tI" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/department/rnd{ - pixel_y = 32 - }, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "rndshutters"; - name = "Privacy Shutters" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"tJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"tK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/conveyor_switch/oneway{ - id = "bodieshitthefloor"; - pixel_x = -12; - pixel_y = 20 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"tL" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#3d5e80" - }, -/area/chapel/chapel_morgue) -"tM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"tN" = ( -/obj/structure/table/steel, -/obj/random/maintenance/security, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"tO" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/pen, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"tP" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"tR" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"tS" = ( -/obj/machinery/papershredder, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"tT" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"tU" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"tW" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"tX" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -24; - pixel_y = -25 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"tY" = ( -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"tZ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"ua" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ub" = ( -/obj/structure/table/steel_reinforced, -/obj/item/ammo_magazine/m45/rubber{ - pixel_y = 9 - }, -/obj/item/ammo_magazine/m45/rubber{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/m45/rubber{ - pixel_y = -3 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"uc" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(43) - }, -/obj/item/device/bluespaceradio/sd_prelinked, -/obj/item/device/cataloguer/compact, -/obj/item/device/cataloguer/compact, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"ue" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"uf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"ug" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"uh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/stellardelight/deck1/exploshuttle) -"ui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"uj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"uk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"ul" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"um" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/atmospherics) -"un" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"uo" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"uq" = ( -/turf/space, -/area/space) -"ur" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Brig"; - req_access = null; - req_one_access = list(38,63); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/lobby) -"us" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/medical) -"ut" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"uu" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"uv" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"uw" = ( -/turf/space/internal_edge/left, -/area/stellardelight/deck1/starboard) -"ux" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"uy" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/machinery/camera/network/security, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"uz" = ( -/obj/structure/table/reinforced, -/obj/item/device/slime_scanner, -/obj/item/device/slime_scanner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/light, -/obj/item/weapon/storage/box/syringes, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"uA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"uB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "explowindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/exploration) -"uC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"uD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"uF" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/exploration) -"uG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"uH" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/structure/cable/pink{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"uI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"uJ" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"uL" = ( -/obj/effect/floor_decal/chapel, -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"uM" = ( -/obj/structure/closet/excavation, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"uN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"uP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"uQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"uR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "rndshutters"; - name = "Privacy Shutters" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"uT" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"uU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Research and Development"; - req_access = list(7); - stripe_color = "#5a19a8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/workshop) -"uV" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -32; - req_access = list(39) - }, -/obj/machinery/door/blast/angled/open{ - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - autoclose = 0; - door_color = "#ffffff"; - frequency = 1379; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access = list(39); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/virology) -"uW" = ( -/turf/simulated/wall/bay/purple, -/area/stellardelight/deck1/exploration) -"uX" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"uY" = ( -/obj/structure/closet/radiation, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"uZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"va" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"vb" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"vc" = ( -/obj/machinery/vending/security, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"vd" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"ve" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"vf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/aft) -"vg" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"vh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"vi" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"vj" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"vk" = ( -/obj/structure/closet/secure_closet/pilot, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"vm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/toilet) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"vo" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"vp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"vq" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"vr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"vs" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"vt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/item_bank{ - dir = 4; - pixel_x = -29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"vu" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm5) -"vv" = ( -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"vw" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"vx" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/armoury) -"vy" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/explobriefing) -"vz" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"vA" = ( -/obj/machinery/computer/secure_data, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"vB" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"vC" = ( -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"vD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"vE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"vF" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"vG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"vH" = ( -/obj/machinery/button/remote/blast_door{ - id = "GatewayShutterE"; - name = "EVA Shutter"; - pixel_x = 5; - pixel_y = 24; - req_one_access = list(18,19,43,67) - }, -/obj/machinery/button/remote/blast_door{ - id = "GatewayShutterW"; - name = "EVA Shutter"; - pixel_x = -5; - pixel_y = 24; - req_access = null; - req_one_access = list(18,19,43,67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"vI" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/storage) -"vJ" = ( -/obj/machinery/mineral/stacking_unit_console{ - density = 0 - }, -/turf/simulated/wall/bay/brown, -/area/stellardelight/deck1/oreprocessing) -"vK" = ( -/obj/machinery/requests_console{ - department = "Exploration"; - name = "Exploration Requests Console"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"vL" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"vM" = ( -/obj/machinery/button/remote/airlock{ - id = "bathroomstall1"; - name = "Toilet 1 Lock"; - pixel_x = -10; - pixel_y = 22; - specialfunctions = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"vN" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"vP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"vQ" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"vT" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"vU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"vV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"vW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"vX" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"vY" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"vZ" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"wa" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"wb" = ( -/obj/structure/sign/painting/chapel_secure{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"wc" = ( -/obj/machinery/firealarm/angled, -/obj/machinery/mecha_part_fabricator/pros, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"we" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/nifsofts_security, -/obj/item/weapon/hand_labeler, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/vending/wallmed1/public{ - pixel_x = -29 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"wf" = ( -/turf/simulated/floor, -/area/maintenance/security_port) -"wg" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"wh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"wi" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"wj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"wk" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"wm" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"wn" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"wo" = ( -/obj/structure/table/bench/marble, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"wp" = ( -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"wq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"ws" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"wt" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/device/suit_cooling_unit{ - pixel_y = -5 - }, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/suit/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/obj/item/clothing/head/helmet/space/void/pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"wu" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"wv" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen2"; - name = "Pen 2 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"ww" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"wx" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"wy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"wz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/library) -"wA" = ( -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"wB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"wC" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"wE" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm1) -"wF" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/cargo) -"wG" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardfore) -"wI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/seed_storage/xenobotany, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"wJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"wK" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"wL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/closet/walllocker_double/north{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"wM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/orange, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"wN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"wO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"wP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"wQ" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"wR" = ( -/obj/machinery/computer/diseasesplicer{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"wS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm8"; - name = "Room 8"; - stripe_color = "#89bd66" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm8) -"wT" = ( -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"wU" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"wV" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"wW" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"wX" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/security/tactical) -"wY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"wZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"xa" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"xb" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/exploration) -"xc" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"xd" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"xe" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/starboard) -"xf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/stellardelight/deck1/miningequipment) -"xg" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/device/flashlight/pen{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"xh" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/lino, -/area/chapel/office) -"xi" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"xj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"xk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"xl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/random/maintenance/research, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/contraband, -/obj/random/action_figure, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"xm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"xn" = ( -/obj/machinery/firealarm/angled, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"xo" = ( -/turf/simulated/floor/reinforced, -/area/rnd/workshop) -"xq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"xs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"xt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/xenobio, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"xu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"xv" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"xw" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/item/weapon/disk/nifsoft/compliance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"xx" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"xy" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/portfore) -"xz" = ( -/obj/machinery/requests_console/preset/research{ - pixel_y = 30 - }, -/obj/machinery/button/remote/blast_door{ - id = "rndshutters"; - name = "Privacy Shutter Control"; - pixel_x = -15; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"xA" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"xB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"xC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"xD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"xE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"xF" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Research"; - sortType = "Research" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"xG" = ( -/obj/machinery/chem_master, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"xH" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"xI" = ( -/obj/machinery/door/window/eastright{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"xJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/stellardelight/deck1/miningshuttle) -"xK" = ( -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"xL" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"xM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "ex_airpump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"xN" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"xO" = ( -/obj/machinery/computer/shuttle_control/explore/stellardelight/mining, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"xP" = ( -/obj/structure/sign/department/morgue{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"xQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"xR" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"xS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"xT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"xU" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"xV" = ( -/turf/simulated/floor/carpet, -/area/library) -"xW" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/security) -"xX" = ( -/obj/structure/table/reinforced, -/obj/item/device/uv_light, -/obj/item/weapon/reagent_containers/spray/luminol, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"xZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"ya" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"yb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/stellardelight/deck1/exploshuttle) -"yc" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 4; - req_access = list(19,43,67,66,5) - }, -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"yd" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"ye" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/prison/cell_block) -"yf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"yg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/library) -"yi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"yj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"yk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/multi_tile/two_tile_ver{ - id = "armorydoor"; - name = "Armory" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"yl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"ym" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/xenobiology) -"yn" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"yo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"yp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#ffffff"; - name = "maintenance access"; - req_one_access = null; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/starboardaft) -"yq" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/item/device/retail_scanner/science, -/obj/item/device/multitool/scioutpost, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"yr" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"yt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"yu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"yv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/wall{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"yw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"yx" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"yy" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"yz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"yB" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell C" - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"yC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"yD" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris, -/area/rnd/storage) -"yE" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"yF" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"yG" = ( -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"yH" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"yI" = ( -/obj/machinery/transhuman/resleever, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/assembly/robotics) -"yK" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"yL" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"yM" = ( -/obj/machinery/mech_recharger, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"yN" = ( -/obj/structure/bed/chair, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"yO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/halls, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"yP" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"yQ" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8; - icon_state = "freezer_1"; - power_setting = 20; - set_temperature = 73; - use_power = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"yR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"yS" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"yT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"yU" = ( -/obj/structure/table/standard, -/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/item/clothing/glasses/welding, -/obj/item/weapon/storage/belt/utility, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"yV" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"yW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"yX" = ( -/obj/effect/shuttle_landmark/premade/sd/deck1/aft, -/turf/space, -/area/space) -"yY" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 - }, -/area/stellardelight/deck1/researchserver) -"yZ" = ( -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"za" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"zb" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"zc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"zd" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "ex_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "ex_airlock"; - name = "interior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/exploration) -"ze" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"zf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"zg" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"zi" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"zj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/library) -"zk" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"zl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"zm" = ( -/obj/structure/closet/walllocker_double/east, -/obj/item/device/camera, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"zn" = ( -/obj/structure/closet/secure_closet/paramedic, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"zo" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/landmark/start/librarian, -/turf/simulated/floor/carpet, -/area/library) -"zp" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/ionrifle, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"zq" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"zr" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"zs" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"zt" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"zv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"zw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Medical Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/medical) -"zx" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"zy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"zz" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"zA" = ( -/obj/structure/closet/walllocker_double/north, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"zB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/security_port) -"zC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"zD" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/warden) -"zE" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 6 - }, -/obj/effect/floor_decal/milspec/color/black, -/obj/item/ammo_magazine/ammo_box/b12g/stunshell{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/ammo_magazine/ammo_box/b12g/flash{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"zG" = ( -/obj/machinery/autolathe{ - dir = 1; - hacked = 1 - }, -/obj/structure/reagent_dispensers/acid{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"zH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"zI" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen5"; - name = "Pen 5 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"zK" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"zL" = ( -/obj/machinery/firealarm/angled, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"zM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/port) -"zN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/storage/vest/heavy/officer{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/suit/storage/vest/heavy/officer{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/suit/storage/vest/heavy/officer{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/suit/storage/vest/heavy/officer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"zO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"zP" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"zQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"zR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"zS" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"zT" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"zU" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"zV" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 4; - frequency = 1380; - id_tag = "miningdocker"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"zW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"zX" = ( -/obj/machinery/r_n_d/server/robotics, -/turf/simulated/floor/bluegrid{ - name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 - }, -/area/stellardelight/deck1/researchserver) -"zY" = ( -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"zZ" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Aa" = ( -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/structure/table/rack/shelf, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/weapon/storage/backpack/parachute{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Ab" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"Ac" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Ad" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 9; - network = list("Xenobiology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Ae" = ( -/obj/structure/bed/chair/sofa/corp/right, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"Af" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenospace4"; - name = "4 Space Door"; - pixel_x = 5; - pixel_y = 2; - req_access = list(55) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Ag" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Ah" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Ai" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen3"; - name = "Pen 3 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Aj" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck1/pilot) -"Ak" = ( -/turf/simulated/wall/bay/r_wall/black, -/area/chapel/chapel_morgue) -"Am" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"An" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Ao" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#8c1d11"; - name = "Equipment Storage"; - req_access = list(1); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/security_lockerroom) -"Ap" = ( -/obj/structure/table/bench/sifwooden/padded, -/obj/effect/landmark/start/pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"Aq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"Ar" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"As" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"At" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Au" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Av" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Aw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"Ax" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"Ay" = ( -/obj/machinery/light/small, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"AB" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -24; - pixel_y = -24 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"AC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"AD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"AF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"AG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Janitor"; - sortType = "Janitor" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/stellardelight/deck1/port) -"AH" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire, -/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem, -/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov, -/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs, -/obj/item/weapon/book/manual/synthetic_life, -/turf/simulated/floor/wood, -/area/library) -"AI" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"AJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#2e2e2e"; - name = "Chapel" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/main) -"AK" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/item/clothing/mask/breath, -/obj/item/weapon/rig/eva/equipped, -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(11,24) - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"AL" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"AM" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"AN" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/weapon/paper_bin{ - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet, -/area/library) -"AO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"AP" = ( -/obj/item/weapon/bedsheet/bluedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"AQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"AR" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"AS" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/curtain/open/privacy, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"AT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm5) -"AV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"AW" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"AX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/milspec/color/black, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"AY" = ( -/turf/simulated/wall/bay/r_wall/black, -/area/chapel/main) -"AZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Ba" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Bb" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"Bd" = ( -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Be" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"Bf" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/security_port) -"Bi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Bj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"Bk" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Bl" = ( -/obj/structure/bed/chair/backed_red{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"Bm" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen3"; - name = "Pen 3 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Bn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"Bo" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/paper{ - desc = ""; - info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; - name = "note to science staff" - }, -/obj/item/device/robotanalyzer, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/item/device/mmi/digital/posibrain, -/obj/item/device/mmi, -/turf/simulated/floor/tiled/steel_dirty, -/area/assembly/robotics) -"Br" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"Bs" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Equipment Storage"; - req_access = list(1); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/security_lockerroom) -"Bt" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Bu" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Bv" = ( -/obj/structure/table/reinforced, -/obj/item/device/reagent_scanner, -/obj/item/device/mass_spectrometer/adv, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Bw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"Bx" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/wood, -/area/library) -"By" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Bz" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/janitor, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"BA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"BB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"BC" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"BD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#333333"; - name = "Shuttle Bay"; - req_one_access = null; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/exploration) -"BE" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"BF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - id_tag = "m-ex-room"; - name = "Exam Room"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/exam_room) -"BG" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"BH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"BI" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"BJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"BK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/assembly/robotics) -"BL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"BM" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"BN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Cargo Subgrid"; - name_tag = "Cargo Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"BO" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"BP" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"BQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"BR" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"BS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/filingcabinet, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"BT" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"BU" = ( -/turf/simulated/wall/bay/black, -/area/chapel/main) -"BV" = ( -/obj/machinery/disease2/incubator, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"BW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"BX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"BY" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"BZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Ca" = ( -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Cb" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 25; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"Cc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Cf" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Cg" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Ch" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Ci" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Cj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"Ck" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/library) -"Cl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Cm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Cn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Co" = ( -/obj/structure/bed/chair/sofa/corp/left{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Cp" = ( -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"Cr" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"Cs" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/starboardcent) -"Ct" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/assembly/robotics) -"Cu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"Cv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Cw" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Cx" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Cz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"CA" = ( -/obj/machinery/door/airlock/angled_bay/standard/color/common{ - dir = 4; - id_tag = "bathroomstall1"; - name = "Toilet 1" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/toilet) -"CB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"CC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"CD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "brigwindowlockdown" - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/security/security_equiptment_storage) -"CE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "securitylockdown"; - name = "Brig Lockdown"; - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "armorydoor"; - name = "Armory"; - pixel_x = 26; - pixel_y = 9 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "wardenoffice"; - name = "Privacy Shutters"; - pixel_x = 37; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"CG" = ( -/turf/simulated/wall/bay/white, -/area/stellardelight/deck1/resleeving) -"CI" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"CJ" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/virology, -/obj/item/device/antibody_scanner, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/paper_bin, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/wall{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"CK" = ( -/obj/machinery/button/remote/blast_door{ - id = "explowindowlockdown"; - name = "Window Lockdown"; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"CL" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"CM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/prison/cell_block/C) -"CO" = ( -/obj/structure/table/woodentable, -/obj/machinery/librarycomp, -/turf/simulated/floor/carpet, -/area/library) -"CP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"CQ" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/requests_console/preset/security{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/weapon/paper_bin{ - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"CR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"CS" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology) -"CT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"CU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/angled, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"CV" = ( -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"CW" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"CX" = ( -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"CY" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/rack, -/obj/random/drinkbottle, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"CZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Da" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "EMT Bay"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/paramedic) -"Db" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "researchwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/rnd/storage) -"Dc" = ( -/obj/item/weapon/bedsheet/orangedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"Dd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"De" = ( -/obj/item/weapon/bedsheet/bluedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"Df" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"Dg" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "bodieshitthefloor" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/chapel_morgue) -"Di" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/fore) -"Dj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"Dk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Dl" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Dm" = ( -/obj/structure/bed/chair/backed_red, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"Dn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"Do" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Dp" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32; - pixel_y = 10 - }, -/obj/structure/sign/directions/library{ - dir = 4; - pixel_x = -32; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Dq" = ( -/obj/machinery/newscaster{ - pixel_x = -29 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Dr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Ds" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Robotics Lab"; - req_access = list(29,47); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/assembly/robotics) -"Dt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Dv" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"Dw" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Dx" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology) -"Dy" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"Dz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"DA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"DC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"DD" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"DE" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"DF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "brigwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/prison/cell_block/C) -"DG" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/start/xenobot, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"DH" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology/xenoflora_storage) -"DI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"DJ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"DK" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"DL" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"DN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"DO" = ( -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"DP" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"DQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"DS" = ( -/turf/simulated/wall/bay/red, -/area/prison/cell_block) -"DT" = ( -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/structure/closet/walllocker_double/north, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"DV" = ( -/obj/machinery/suit_cycler/pilot, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"DW" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"DY" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32 - }, -/obj/structure/sign/directions/bar{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -12 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/stairs_up{ - pixel_x = 32; - pixel_y = 12 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"Eb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"Ec" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Ee" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Ef" = ( -/turf/space/internal_edge/top, -/area/stellardelight/deck1/starboard) -"Eg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/library) -"Eh" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/security/armoury) -"Ei" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -32; - pixel_y = -25 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"Ek" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"Em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"En" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Eo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"Ep" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Eq" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Er" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenospace6"; - name = "6 Space Door"; - pixel_x = 10; - pixel_y = -21; - req_access = list(55) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Es" = ( -/obj/machinery/mecha_part_fabricator, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"Et" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Civilian Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/civilian) -"Eu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Ev" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"Ew" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"Ex" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen4"; - name = "Pen 4 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Ey" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Ez" = ( -/obj/structure/table/reinforced, -/obj/item/stack/material/phoron{ - amount = 6 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 11 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"EA" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"EB" = ( -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Virology Isolation Room Two"; - req_one_access = list(39) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/virology) -"EC" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"ED" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"EG" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"EH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"EI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"EJ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/shuttlebay) -"EK" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"EM" = ( -/obj/structure/table/rack, -/obj/item/device/defib_kit/compact/loaded, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"EN" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"EO" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"EP" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"EQ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"ER" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm8) -"ES" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "torpedolauncher" - }, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/chapel/chapel_morgue) -"ET" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"EU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"EV" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"EW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"EX" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"EY" = ( -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"EZ" = ( -/turf/space/internal_edge/bottomright, -/area/stellardelight/deck1/starboard) -"Fa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Fb" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"Fc" = ( -/obj/machinery/vending/wardrobe/scidrobe, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/researchequip) -"Fd" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/curtain/open/privacy, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"Fe" = ( -/turf/simulated/wall/bay/red, -/area/security/detectives_office) -"Ff" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Fh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Fi" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Fj" = ( -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"Fk" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"Fl" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Fm" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Fn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "researchwindowlockdown" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/researchhall) -"Fo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/portfore) -"Fp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#8c1d11"; - name = "maintenance access"; - req_one_access = list(1); - stripe_color = "#8c1d11" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/security_port) -"Fq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Fr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"Fs" = ( -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Ft" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Fu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - name = "Unisex Restrooms"; - stripe_color = "#89bd66" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/toilet) -"Fv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Fw" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"Fx" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Fy" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"FA" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"FB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"FC" = ( -/obj/machinery/computer/prisoner, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"FD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/black, -/obj/structure/sign/department/armory{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"FE" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardcent) -"FF" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"FG" = ( -/turf/simulated/wall/bay/white, -/area/medical/patient_wing) -"FH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"FI" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"FK" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"FL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"FM" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"FN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - name = "Recovery Room"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/patient_wing) -"FO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"FP" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"FQ" = ( -/obj/structure/morgue{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"FR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"FT" = ( -/turf/simulated/wall/bay/brown, -/area/library) -"FU" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"FV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/security, -/obj/random/contraband, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"FW" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"FX" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"FY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 - }, -/area/stellardelight/deck1/researchserver) -"FZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Ga" = ( -/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock, -/turf/space, -/area/space) -"Gb" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Gc" = ( -/obj/machinery/requests_console/preset/research{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Gd" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Cargo Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"Ge" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Gh" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"Gi" = ( -/obj/structure/closet{ - name = "Forensics Gear" - }, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/evidence, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/briefcase/crimekit, -/obj/item/weapon/storage/briefcase/crimekit, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Gj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Gl" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Gm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/southleft{ - id = "Cell A"; - name = "Cell A"; - req_access = list(2) - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/prison/cell_block) -"Gn" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"Go" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"Gp" = ( -/obj/structure/table/bench/steel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Gq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"Gr" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/tactical) -"Gu" = ( -/obj/item/weapon/bedsheet/bluedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"Gv" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Gy" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"GA" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"GB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"GC" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"GD" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"GE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"GF" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Research"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"GG" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/bodybags, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"GI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "researchwindowlockdown" - }, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/researchhall) -"GK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"GL" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"GM" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall{ - desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#785134" - }, -/area/security/armoury) -"GN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"GP" = ( -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "supply isolation valve" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/security/armoury) -"GQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"GR" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"GS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/stellardelight/deck1/miningshuttle) -"GT" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Security" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"GU" = ( -/obj/machinery/vending/wardrobe/robodrobe, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/researchequip) -"GV" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"GW" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"GX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"GZ" = ( -/obj/machinery/vending/loadout/uniform, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"Ha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Hb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/double/glass{ - door_color = "#a6753d"; - name = "Shuttle Bay"; - req_access = list(31); - req_one_access = null; - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/mining) -"Hc" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Hd" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"He" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "explowindowlockdown" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/explobriefing) -"Hf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Hg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Security"; - sortType = "Security" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Hi" = ( -/obj/machinery/computer/timeclock/premade/west, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Hj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/library) -"Hk" = ( -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"Hl" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Hn" = ( -/obj/machinery/mineral/processing_unit_console{ - density = 0; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Hp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/department/sci{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Hq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"Hr" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"Hs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/lobby) -"Ht" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Hv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Hw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"Hx" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Hy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"Hz" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/projectile/shotgun/pump{ - ammo_type = /obj/item/ammo_casing/a12g/pellet; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/weapon/gun/projectile/shotgun/pump{ - ammo_type = /obj/item/ammo_casing/a12g/pellet; - pixel_x = 2; - pixel_y = -6 - }, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"HA" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"HB" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "miningops" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"HC" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/stairs_up{ - dir = 1; - pixel_x = 32; - pixel_y = 12 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"HD" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/gun/energy/taser/xeno, -/obj/item/weapon/gun/energy/taser/xeno, -/obj/item/weapon/melee/baton/slime/loaded, -/obj/item/weapon/melee/baton/slime/loaded, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"HE" = ( -/obj/machinery/conveyor{ - id = "miningops" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"HF" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"HG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"HH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm2) -"HI" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"HK" = ( -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"HL" = ( -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"HN" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"HO" = ( -/obj/structure/bed/chair/comfy/black, -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"HP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/sign/department/morgue{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"HR" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"HS" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"HT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/east{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"HV" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"HW" = ( -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"HX" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm1"; - name = "Room 1 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"HY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"HZ" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Ib" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Ic" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"Ie" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"If" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell B" - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"Ig" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/toilet) -"Ih" = ( -/obj/structure/closet{ - name = "robotics equipment" - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/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, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/device/flash/synthetic, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Ii" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Ik" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Il" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Im" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"In" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Io" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/suit_cycler/security, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Ip" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Iq" = ( -/obj/effect/floor_decal/milspec/color/red, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Ir" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Is" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Iu" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - door_color = "#525252"; - name = "EVA Shuttle"; - req_one_access = list(18,19,43); - stripe_color = "#408f3b" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospheric_field_generator/perma/underdoors, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/exploshuttle) -"Iw" = ( -/obj/random/vendorfood, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"Ix" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Iy" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Iz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"IA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"IB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"IC" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm4) -"ID" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorblack/full, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"IE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/storage) -"IF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"IG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mouse_hole_spawner{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"IH" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"IJ" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "scrubber isolation valve" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/security/armoury) -"IK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"IL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"IM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"IN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"IO" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen6"; - name = "Pen 6 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"IP" = ( -/obj/machinery/r_n_d/protolathe{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"IQ" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"IR" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"IS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"IT" = ( -/turf/space/internal_edge/bottom, -/area/stellardelight/deck1/starboard) -"IU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"IV" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"IW" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_x = -32 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"IX" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/B) -"IY" = ( -/turf/simulated/wall/bay/steel, -/area/crew_quarters/toilet) -"IZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm8) -"Ja" = ( -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/tool/crowbar, -/obj/item/weapon/pickaxe, -/obj/item/weapon/pickaxe, -/obj/item/weapon/pickaxe, -/obj/item/weapon/pickaxe, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"Jb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Jc" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Jd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"Je" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Jg" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"Jh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Jj" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Medical Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"Jk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"Jl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"Jn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Jo" = ( -/obj/structure/table/steel, -/obj/random/maintenance/research, -/obj/random/medical, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Jp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Atmospherics Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/atmospherics) -"Jq" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "m-ex-room"; - name = "Exam Room Lock"; - pixel_x = -30; - pixel_y = -8; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Js" = ( -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm7) -"Jt" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"Jv" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor, -/area/stellardelight/deck1/port) -"Jw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Jx" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Jz" = ( -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"JA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"JB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/walllocker_double/east, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"JC" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/machinery/door/window/brigdoor{ - req_access = list(11,24) - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"JD" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"JE" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"JF" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/starboard) -"JH" = ( -/obj/structure/bed/chair/sofa/corp/left, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"JI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"JJ" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#5a19a8" - }, -/area/gateway) -"JK" = ( -/obj/machinery/door/firedoor, -/obj/item/weapon/folder/white, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Research Desk"; - req_access = list(7); - req_one_access = list(47) - }, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/weapon/pen, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "rndshutters"; - name = "Privacy Shutters" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"JM" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"JN" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"JO" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"JP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"JQ" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology/xenoflora) -"JR" = ( -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"JS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/bookbinder, -/turf/simulated/floor/wood, -/area/library) -"JT" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"JU" = ( -/obj/machinery/vending/loadout/uniform, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"JV" = ( -/obj/item/slime_extract/grey, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"JW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"JX" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"JY" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/flasher/portable, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Ka" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardcent) -"Kb" = ( -/obj/machinery/conveyor{ - id = "miningops" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Kc" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/transhuman/autoresleever, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - external_pressure_bound = 101.3; - external_pressure_bound_default = 101.3; - pressure_checks = 1; - pressure_checks_default = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"Kd" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Ke" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/exploration, -/obj/item/clothing/head/helmet/space/void/exploration, -/obj/machinery/door/window/brigdoor/eastleft{ - req_access = list(43) - }, -/obj/item/device/mapping_unit, -/obj/item/device/cataloguer, -/obj/item/device/cataloguer, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Kf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Kg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm6"; - name = "Room 6"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm6) -"Ki" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"Kj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Kk" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "ex_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/exploration) -"Kl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/starboardaft) -"Km" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Ko" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"Kp" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/librarian, -/turf/simulated/floor/wood, -/area/library) -"Kq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable, -/obj/item/device/taperecorder, -/obj/item/device/tape/random, -/obj/item/device/camera, -/obj/item/device/retail_scanner/civilian, -/obj/structure/sign/painting/library_private{ - pixel_y = 32 - }, -/obj/machinery/newscaster{ - pixel_x = 29 - }, -/turf/simulated/floor/wood, -/area/library) -"Kr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"Ks" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Kt" = ( -/obj/structure/table/reinforced, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Ku" = ( -/turf/simulated/wall/bay{ - desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#5a19a8" - }, -/area/gateway) -"Kv" = ( -/obj/effect/floor_decal/chapel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Kw" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "explodocker"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"Ky" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Kz" = ( -/obj/machinery/button/remote/airlock{ - id = "bathroomstall2"; - name = "Toilet 2 Lock"; - pixel_x = -10; - pixel_y = 22; - specialfunctions = 4 - }, -/obj/machinery/light/small, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"KA" = ( -/obj/machinery/vending/wardrobe/janidrobe, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"KB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"KC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"KD" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Atmospherics Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"KE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/halls, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"KF" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm6) -"KG" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"KH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"KI" = ( -/obj/machinery/button/remote/driver{ - id = "torpedolauncher"; - pixel_y = 27 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"KJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"KK" = ( -/obj/machinery/disposal/wall{ - dir = 4; - pixel_x = -24; - plane = -34 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sink/kitchen{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"KL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"KM" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -24; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"KN" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"KO" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"KP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"KQ" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"KR" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"KS" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"KT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"KU" = ( -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"KV" = ( -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"KW" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"KX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"KY" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"KZ" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"La" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Lc" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell B"; - name = "Cell B"; - pixel_x = 32; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Le" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Brig"; - req_access = null; - req_one_access = list(38,63); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/lobby) -"Lf" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"Lg" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/chapel/chapel_morgue) -"Lh" = ( -/obj/effect/floor_decal/chapel, -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"Lj" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = -11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"Lk" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"Ll" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"Lm" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Ln" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Lo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Lp" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Lq" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Research Subgrid"; - name_tag = "Research Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"Lr" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 8 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Ls" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"Lt" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen4"; - name = "Pen 4 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Lu" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"Lv" = ( -/obj/machinery/conveyor{ - id = "miningops" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Lw" = ( -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"Lx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"Ly" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - color = "#42038a" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Lz" = ( -/obj/structure/closet/walllocker_double/east{ - dir = 8; - pixel_x = -32 - }, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/robot_parts/l_arm, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/weapon/material/knife/machete/hatchet, -/obj/item/weapon/material/knife/machete/hatchet, -/obj/item/weapon/material/minihoe, -/obj/item/weapon/material/minihoe, -/obj/item/inflatable/door, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/weapon/storage/box/botanydisk, -/obj/item/weapon/storage/box/botanydisk, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"LA" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"LB" = ( -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/item/stack/material/plasteel{ - amount = 10 - }, -/obj/structure/closet/walllocker_double/east, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"LC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"LD" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"LE" = ( -/obj/structure/sign/directions/evac{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"LF" = ( -/turf/simulated/wall/bay/purple, -/area/maintenance/stellardelight/deck1/starboardaft) -"LG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "researchwindowlockdown" - }, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/rnd/xenobiology/xenoflora) -"LH" = ( -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"LI" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#2e2e2e"; - fill_color = "#2e2e2e"; - name = "Chapel Morgue"; - req_access = list(6,27); - stripe_color = "#deaf43" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/chapel_morgue) -"LJ" = ( -/obj/machinery/button/remote/blast_door{ - id = "GatewayShutter"; - name = "Gateway Shutter"; - pixel_y = 24; - req_access = list(62) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"LK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"LL" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"LM" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/librarian, -/turf/simulated/floor/wood, -/area/library) -"LN" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"LO" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"LP" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"LQ" = ( -/obj/machinery/door/blast/angled{ - id = "xenobiodiv4"; - name = "Divider 4 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"LR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"LT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Research Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/research) -"LU" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"LV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Resleeving"; - sortType = "Resleeving" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"LW" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/aft) -"LX" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"LY" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#785134" - }, -/area/library) -"LZ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/exploration) -"Ma" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - door_color = "#a88860"; - name = "Mining Shuttle"; - req_access = null; - req_one_access = list(31,5); - stripe_color = "#69461a" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospheric_field_generator/perma/underdoors, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/miningshuttle) -"Mb" = ( -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"Mc" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#785134" - }, -/area/security/armoury) -"Md" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Me" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#8c1d11"; - name = "Forensics Lab"; - req_access = list(4); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/detectives_office) -"Mf" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/structure/curtain/open/privacy, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"Mg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/purple, -/turf/simulated/floor, -/area/rnd/workshop) -"Mh" = ( -/turf/space/internal_edge/topleft, -/area/stellardelight/deck1/starboard) -"Mi" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Mj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#2e2e2e"; - fill_color = "#2e2e2e"; - name = "Chapel Morgue"; - req_access = null; - stripe_color = "#deaf43" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/main) -"Mk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "chapelmassdriver"; - name = "Window Lockdown"; - pixel_y = 27; - req_one_access = list(6,27) - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Ml" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Mm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Mn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Mq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Mr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"Ms" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/structure/curtain/open/privacy{ - name = "shower curtain" - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"Mt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Mu" = ( -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Mv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"My" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"MA" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/fore) -"MB" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"MC" = ( -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"MD" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"ME" = ( -/obj/machinery/gateway/centerstation, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"MF" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"MG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/miner, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"MH" = ( -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"MI" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"MJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"MK" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"ML" = ( -/obj/structure/bed/chair/sofa/corp/right{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"MM" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"MN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm6) -"MO" = ( -/obj/machinery/door/airlock/angled_bay/standard/color/common{ - dir = 4; - id_tag = "bathroomstall2"; - name = "Toilet 2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/toilet) -"MP" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-4" - }, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"MQ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 25; - pixel_y = -24 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"MR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#ffffff"; - name = "Xenoflora Research"; - req_access = list(77); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/xenobiology/xenoflora_storage) -"MS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#8c1d11"; - name = "maintenance access"; - req_access = list(4); - req_one_access = null; - stripe_color = "#8c1d11" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/detectives_office) -"MT" = ( -/obj/machinery/suit_cycler/engineering{ - req_access = null - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"MV" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Exploration Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/exploration) -"MX" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"MZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"Nb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled{ - dir = 4; - id = "mechbay"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/assembly/robotics) -"Nc" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/maintenance/security_port) -"Nd" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"Ne" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "processinglockdown" - }, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/security/security_processing) -"Nf" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Ng" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/lowermed) -"Nh" = ( -/obj/machinery/light/small, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Ni" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Warden's Office" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"Nj" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/milspec/color/red/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Nk" = ( -/obj/structure/table/reinforced, -/obj/machinery/microscope, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Nl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Nm" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"No" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 25 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"Np" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Nq" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"Nr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25; - pixel_y = 32 - }, -/obj/effect/landmark/start/janitor, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"Ns" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#a6753d"; - name = "Mining Equipment"; - req_access = list(31); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/miningequipment) -"Nt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/obj/random/contraband, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Nu" = ( -/obj/structure/table/standard, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Nv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Nw" = ( -/obj/structure/closet/walllocker_double/medical/north, -/obj/item/weapon/folder/white, -/obj/item/device/healthanalyzer, -/obj/item/weapon/cane, -/obj/item/clothing/accessory/stethoscope, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"Nx" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/expedition_medical, -/obj/item/clothing/head/helmet/space/void/expedition_medical, -/obj/machinery/door/window/brigdoor/eastleft{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Nz" = ( -/obj/effect/floor_decal/chapel{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"NA" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"NB" = ( -/obj/structure/closet/coffin, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"NC" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"ND" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/obj/structure/cable/pink, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"NF" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/library) -"NG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/purple, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"NH" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck1/shower) -"NI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"NJ" = ( -/obj/effect/shuttle_landmark/premade/sd/deck1/fore, -/turf/space, -/area/space) -"NK" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"NL" = ( -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"NM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/dark, -/area/assembly/robotics) -"NN" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"NP" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/portaft) -"NQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"NR" = ( -/obj/machinery/mech_recharger, -/obj/machinery/light, -/turf/simulated/floor/bluegrid, -/area/gateway) -"NS" = ( -/obj/structure/stairs/spawner/west, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "16-0" - }, -/turf/simulated/floor, -/area/stellardelight/deck1/mining) -"NT" = ( -/turf/space/internal_edge/topright, -/area/stellardelight/deck1/starboard) -"NV" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"NW" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"NX" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobiopen4"; - name = "Pen 4 Containment"; - pixel_x = 31; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen6"; - name = "Pen 6 Containment"; - pixel_x = 30; - pixel_y = -8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "xenobiodiv4"; - name = "Divider 4 Blast Doors"; - pixel_x = 39; - req_access = list(55) - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"NY" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/exploration) -"NZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"Oa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/milspec/color/emerald/half, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Ob" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"Oc" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Od" = ( -/obj/machinery/light, -/obj/structure/sign/department/medbay{ - name = "RESLEEVING"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Oe" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"Og" = ( -/obj/machinery/optable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"Oh" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"Oj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"Ok" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Ol" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/item/device/gps/medical{ - pixel_y = 3 - }, -/obj/item/device/gps/medical{ - pixel_x = -3 - }, -/obj/item/device/radio{ - pixel_x = 2 - }, -/obj/item/device/radio{ - pixel_x = -1; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"Om" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Cargo"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"On" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Oo" = ( -/obj/machinery/botany/extractor, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Op" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 2; - req_access = list(5) - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Oq" = ( -/obj/machinery/door/blast/angled{ - id = "xenobiodiv1"; - name = "Divider 1 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Or" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Ot" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/catwalk_plated/dark, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor, -/area/stellardelight/deck1/starboard) -"Ou" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Ov" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Ow" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Ox" = ( -/obj/structure/closet, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"Oy" = ( -/obj/structure/morgue/crematorium{ - dir = 2; - id = "crematorium" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Oz" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"OA" = ( -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm2) -"OB" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"OC" = ( -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Bar"; - sortType = "Bar" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"OD" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"OE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"OF" = ( -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"OG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"OH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/aft) -"OI" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#ffffff"; - fill_color = "#ead9ff"; - name = "Equipment Room"; - req_access = list(7); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/researchequip) -"OJ" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"OL" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"OM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/shower) -"ON" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/evac{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"OO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"OQ" = ( -/turf/simulated/wall/bay/brown, -/area/security/detectives_office) -"OR" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/closet/crate, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/snack, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"OT" = ( -/turf/simulated/wall/rshull, -/area/stellardelight/deck1/exploshuttle) -"OU" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"OV" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"OX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"OY" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen1"; - name = "Pen 1 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"OZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/aft) -"Pa" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Pb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/black, -/turf/simulated/floor, -/area/chapel/main) -"Pd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Pf" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/obj/structure/closet/walllocker_double/east{ - dir = 8; - name = "Evidence Storage"; - pixel_x = -32 - }, -/obj/item/weapon/storage/box/evidence, -/obj/item/weapon/storage/box/evidence, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Pg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"Ph" = ( -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Pj" = ( -/obj/machinery/door_timer/cell_3{ - id = "Cell A"; - name = "Cell A"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Pk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/random/slimecore, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Pl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"Pm" = ( -/obj/effect/floor_decal/chapel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Pn" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 8; - id = "miningops" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Po" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Pp" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Pr" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Ps" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/stellardelight/deck1/oreprocessing) -"Pt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Pu" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/exploration) -"Pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Pw" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-8" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Py" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Pz" = ( -/obj/structure/table/bench/marble, -/obj/effect/landmark/start/paramedic, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"PA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/curtain/black{ - anchored = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck1/dorms/dorm4) -"PB" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"PC" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"PD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/closet/walllocker_double/north{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"PE" = ( -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"PF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/random/soap, -/obj/random/soap, -/obj/item/weapon/towel/random, -/obj/item/weapon/towel/random, -/obj/item/clothing/under/bathrobe, -/obj/item/clothing/under/bathrobe, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"PG" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"PH" = ( -/obj/structure/janitorialcart, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/device/lightreplacer, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"PI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"PJ" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"PL" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"PM" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/janitor) -"PN" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"PO" = ( -/obj/effect/floor_decal/milspec/color/red/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"PP" = ( -/obj/structure/closet/crate, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"PQ" = ( -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/masks, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/soap/nanotrasen, -/obj/structure/closet/walllocker_double/medical/east, -/obj/item/weapon/hand_labeler, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/weapon/storage/box/monkeycubes/wolpincubes, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"PR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"PS" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"PU" = ( -/obj/machinery/button/remote/airlock{ - id = "bathroomstall3"; - name = "Toilet 3 Lock"; - pixel_x = -10; - pixel_y = 22; - specialfunctions = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"PV" = ( -/obj/machinery/light/small, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/stellardelight/deck1/resleeving) -"PW" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"PX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"PY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"PZ" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Civilian"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/civilian) -"Qa" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"Qb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "ex_airpump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "ex_sensor"; - pixel_y = 24 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Qc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Qd" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"Qe" = ( -/obj/machinery/alarm/angled, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"Qf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Qg" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/machinery/button/remote/blast_door{ - id = "processinglockdown"; - name = "Window Lockdown"; - pixel_x = -5; - req_access = list(1) - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"Qh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Qi" = ( -/turf/simulated/wall/bay/r_wall{ - desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#8c1d11" - }, -/area/security/tactical) -"Qj" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Qk" = ( -/turf/simulated/wall/bay/red, -/area/prison/cell_block/C) -"Ql" = ( -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/structure/cable/orange, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Atmospherics"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/atmospherics) -"Qm" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen5"; - name = "Pen 5 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"Qn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"Qp" = ( -/obj/structure/table/glass, -/obj/item/device/healthanalyzer, -/obj/item/clothing/accessory/stethoscope, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Qq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"Qr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Medical Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/medical) -"Qt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"Qu" = ( -/turf/simulated/wall/bay{ - desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#8c1d11" - }, -/area/security/security_processing) -"Qv" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Qw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "security_airlock"; - name = "exterior access button"; - pixel_x = -32; - req_access = list(1) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1379; - id_tag = "security_exterior"; - locked = 1; - name = "Security Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/tactical) -"Qx" = ( -/obj/machinery/gateway, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Qy" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Qz" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"QA" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"QB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"QC" = ( -/turf/simulated/wall/bay/red, -/area/security/lobby) -"QD" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"QE" = ( -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"QF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"QG" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - door_color = "#8c1d11"; - id_tag = "BrigFoyer"; - name = "Security"; - req_one_access = list(38,63); - stripe_color = "#d27428" - }, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "securitylockdown" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/lobby) -"QH" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"QI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"QJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"QK" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/mining) -"QM" = ( -/obj/item/weapon/bedsheet/orangedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"QO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"QP" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/storage/box/trackimp{ - pixel_y = -4 - }, -/obj/item/weapon/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/milspec/color/black, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"QQ" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"QR" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"QS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"QU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"QV" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"QX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"QY" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "brigwindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/security/security_equiptment_storage) -"QZ" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"Ra" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Rb" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"Rc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#2e2e2e"; - fill_color = "#2e2e2e"; - name = "Chapel Office"; - req_access = list(22); - stripe_color = "#deaf43" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/chapel/office) -"Rd" = ( -/obj/structure/bed/chair/wood/wings, -/obj/effect/landmark/start/chaplain, -/turf/simulated/floor/lino, -/area/chapel/office) -"Re" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Rf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Rg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Rh" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Medical Subgrid"; - name_tag = "Medical Subgrid" - }, -/obj/structure/cable/white, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"Ri" = ( -/obj/machinery/door/airlock/angled_bay/standard/color/common{ - dir = 4; - id_tag = "bathroomstall3"; - name = "Toilet 3" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/toilet) -"Rj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Rk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Rl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"Rm" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "researchwindowlockdown"; - name = "Window Lockdown"; - pixel_x = -24; - pixel_y = 23 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Rn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - id_tag = "resleeveexit"; - name = "Resleeving Lab"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/resleeving) -"Ro" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"Rp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "librarywindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/library) -"Rq" = ( -/obj/structure/janitorialcart, -/obj/machinery/requests_console/preset/janitor{ - pixel_y = 30 - }, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/clothing/suit/caution, -/obj/item/device/lightreplacer, -/obj/structure/mopbucket, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/storage/bag/trash, -/obj/item/weapon/soap/nanotrasen, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"Rr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"Rs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Exploration Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/exploration) -"Rt" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - req_access = list(26); - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/janitor) -"Ru" = ( -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/machinery/door/window/brigdoor{ - dir = 2 - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Rv" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Rw" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "security_airpump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - id_tag = "security_airlock"; - pixel_x = -24; - req_one_access = list(1); - tag_airpump = "security_airpump"; - tag_chamber_sensor = "security_sensor"; - tag_exterior_door = "security_exterior"; - tag_interior_door = "security_interior" - }, -/obj/machinery/airlock_sensor{ - dir = 8; - id_tag = "security_sensor"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/security/tactical) -"Ry" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "researchwindowlockdown" - }, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/rnd/xenobiology/xenoflora_storage) -"Rz" = ( -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"RA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"RB" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"RC" = ( -/turf/simulated/wall/bay/red, -/area/security/warden) -"RD" = ( -/obj/structure/closet/walllocker_double/north, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/storage/briefcase/inflatable, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"RE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"RF" = ( -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"RG" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"RH" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"RI" = ( -/turf/space/internal_edge/bottomleft, -/area/stellardelight/deck1/starboard) -"RJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"RK" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/disposal/wall/cleaner{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"RL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"RM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"RN" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"RP" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/medical/equipped, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/paramedic) -"RQ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/sign/department/chapel{ - pixel_x = -32; - plane = -34 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"RR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/botany/editor, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"RS" = ( -/turf/simulated/wall/bay/purple, -/area/stellardelight/deck1/explobriefing) -"RT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - id_tag = "resleeveclean"; - name = "Cleaning Room"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/resleeving) -"RU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 29 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 38 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"RV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "researchwindowlockdown" - }, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/rnd/xenobiology/xenoflora_storage) -"RX" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"RY" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"RZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Sa" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Sb" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"Sc" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/maintenance/stellardelight/deck1/starboardaft) -"Sd" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Se" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Sf" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Sg" = ( -/obj/machinery/vending/wardrobe/chapdrobe, -/turf/simulated/floor/lino, -/area/chapel/office) -"Sh" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Si" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm1) -"Sj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Sk" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/storage) -"Sl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"Sn" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Sq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"Sr" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Ss" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"St" = ( -/obj/effect/landmark/start/xenobot, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Su" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"Sv" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Sx" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/library) -"Sy" = ( -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Sz" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"SA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/chapel/main) -"SB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"SC" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/security) -"SD" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"SE" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"SF" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/security, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"SG" = ( -/obj/machinery/vending/wallmed1/public{ - pixel_x = 29 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"SH" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 25 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"SI" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"SJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = 32 - }, -/obj/structure/sign/directions/science{ - dir = 6; - pixel_x = 32; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"SL" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"SM" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"SN" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"SO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"SP" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "dorm3"; - name = "Room 3 Lock"; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"SQ" = ( -/turf/simulated/floor/lino, -/area/chapel/office) -"SR" = ( -/obj/machinery/door/blast/multi_tile/three_tile_ver{ - id = "xenospace6" - }, -/turf/simulated/floor/reinforced, -/area/rnd/workshop) -"SS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 25; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"ST" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"SU" = ( -/obj/machinery/light/small, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"SV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/stellardelight/deck1/shower) -"SW" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "ex_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/exploration) -"SX" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"SY" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 25 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"SZ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"Ta" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/library) -"Tb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Tc" = ( -/obj/item/weapon/bedsheet/orangedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Td" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/portcent) -"Te" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/laser{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/weapon/gun/energy/laser{ - pixel_x = -1; - pixel_y = -11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - dir = 9 - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"Tf" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/stellardelight/deck1/starboardaft) -"Tg" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Th" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_processing) -"Ti" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"Tj" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Tk" = ( -/obj/structure/bed/chair/comfy/black, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"Tl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#ffffff"; - name = "Xenoflora Research"; - req_access = list(77); - stripe_color = "#5a19a8" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/xenobiology/xenoflora) -"Tm" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#8c1d11"; - name = "Forensics Lab"; - req_access = list(4); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/detectives_office) -"Tn" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"To" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"Tp" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Xenobiology"; - req_access = null; - req_one_access = list(47,55); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/rnd/xenobiology) -"Tq" = ( -/obj/structure/cable/white, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Medical"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"Tr" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Ts" = ( -/obj/machinery/door/blast/angled{ - id = "xenobiodiv2"; - name = "Divider 2 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Tv" = ( -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/starboard) -"Tw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4; - plane = -34 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"Tx" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm3"; - name = "Room 3"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm3) -"Ty" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"TB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"TC" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"TD" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"TE" = ( -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block/C) -"TF" = ( -/obj/structure/bed/chair/sofa/corp/right{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"TG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"TH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "processinglockdown" - }, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/security/security_processing) -"TI" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"TJ" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"TK" = ( -/obj/machinery/clonepod/transhuman, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"TL" = ( -/obj/machinery/alarm/angled, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"TM" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/pink{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"TN" = ( -/obj/item/weapon/bedsheet/orangedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"TO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/sign/directions/science{ - dir = 6; - pixel_x = -32 - }, -/obj/structure/sign/directions/science{ - dir = 5; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - dir = 10; - name = "\improper Shuttle Bay"; - pixel_x = -32; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"TP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"TQ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"TR" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"TS" = ( -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/contraband, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/security_port) -"TT" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"TU" = ( -/obj/structure/closet/coffin, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"TV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/canvas, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/item/paint_palette, -/obj/item/paint_brush, -/turf/simulated/floor/wood, -/area/library) -"TW" = ( -/obj/machinery/door/blast/angled{ - dir = 4; - id = "chapelmassdriver" - }, -/turf/simulated/floor/airless, -/area/chapel/chapel_morgue) -"TX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - id_tag = "recoveryexit"; - name = "Recovery Room"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/patient_wing) -"TY" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"TZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Ua" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/exploration) -"Ub" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck1/portcent) -"Uc" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = 32 - }, -/obj/structure/table/bench/sifwooden/padded, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24; - pixel_y = -32 - }, -/obj/effect/landmark/start/pilot, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"Ud" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"Ue" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Uf" = ( -/obj/machinery/newscaster{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Ug" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "wardenoffice"; - name = "Privacy Shutters" - }, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/security/warden) -"Uh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/library) -"Uj" = ( -/obj/structure/table/woodentable, -/obj/random/paicard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"Uk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Ul" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Um" = ( -/obj/structure/mirror{ - pixel_y = 38 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"Un" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Uo" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Up" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Uq" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Ur" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Us" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/obj/effect/landmark/start/librarian, -/turf/simulated/floor/wood, -/area/library) -"Ut" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 2"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 2"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen2"; - name = "Pen 2 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Uu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Uv" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardaft) -"Uw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Ux" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"Uy" = ( -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/shower) -"Uz" = ( -/obj/structure/bookcase/bookcart, -/turf/simulated/floor/carpet, -/area/library) -"UA" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"UB" = ( -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"UD" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research) -"UE" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"UF" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"UG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"UH" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"UI" = ( -/obj/structure/cable/pink{ - icon_state = "2-8" - }, -/obj/structure/cable/pink{ - icon_state = "2-4" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"UJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"UK" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"UL" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Atmospherics Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/atmospherics) -"UM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/action_figure, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"UN" = ( -/obj/structure/table/steel, -/obj/item/device/electronic_assembly/large/default, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"UO" = ( -/obj/structure/closet/walllocker_double/east{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"UP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/action_figure, -/turf/simulated/floor, -/area/maintenance/security_port) -"UQ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"UR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"US" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/glasses/hud/security, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"UT" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"UU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"UV" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "xenobiopen1"; - name = "Pen 1 Containment"; - pixel_x = -30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen3"; - name = "Pen 3 Containment"; - pixel_x = -31; - pixel_y = -8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "xenobiodiv1"; - name = "Divider 1 Blast Doors"; - pixel_x = -39; - req_access = list(55) - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"UW" = ( -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/eris/steel/gray_platform, -/area/stellardelight/deck1/exploshuttle) -"UX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Research Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/research) -"UY" = ( -/obj/machinery/suit_cycler/engineering{ - req_access = null - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"UZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/research) -"Va" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"Vb" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/medical) -"Vc" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Vd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/steel/panels, -/area/stellardelight/deck1/pilot) -"Ve" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/prison/cell_block) -"Vf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"Vg" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/rnd/xenobiology) -"Vh" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck1/pilot) -"Vi" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Vk" = ( -/obj/structure/closet/walllocker_double/east{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Vl" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 6"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 6"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen6"; - name = "Pen 6 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Vm" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/shuttle_landmark/shuttle_initializer/mining, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"Vn" = ( -/obj/machinery/door/blast/angled, -/turf/simulated/floor, -/area/stellardelight/deck1/shuttlebay) -"Vo" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"Vp" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch, -/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance, -/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures, -/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide, -/obj/item/weapon/book/custom_library/reference/securityguidelines, -/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization, -/obj/item/weapon/book/manual/anomaly_spectroscopy, -/obj/item/weapon/book/manual/anomaly_testing, -/obj/item/weapon/book/manual/atmospipes, -/obj/item/weapon/book/manual/bar_guide, -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/book/manual/casino, -/obj/item/weapon/book/manual/chef_recipes, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/cook_guide, -/obj/item/weapon/book/manual/detective, -/obj/item/weapon/book/manual/engineering_construction, -/obj/item/weapon/book/manual/engineering_guide, -/obj/item/weapon/book/manual/engineering_hacking, -/obj/item/weapon/book/manual/engineering_particle_accelerator, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/weapon/book/manual/evaguide, -/obj/item/weapon/book/manual/excavation, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/book/manual/mass_spectrometry, -/obj/item/weapon/book/manual/materials_chemistry_analysis, -/obj/item/weapon/book/manual/medical_cloning, -/obj/item/weapon/book/manual/medical_diagnostics_manual, -/obj/item/weapon/book/manual/research_and_development, -/obj/item/weapon/book/manual/resleeving, -/obj/item/weapon/book/manual/ripley_build_and_repair, -/obj/item/weapon/book/manual/robotics_cyborgs, -/obj/item/weapon/book/manual/robotics_manual, -/obj/item/weapon/book/manual/rust_engine, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/stasis, -/obj/item/weapon/book/manual/supermatter_engine, -/obj/item/weapon/book/manual/tesla_engine, -/obj/item/weapon/book/manual/virology, -/obj/effect/landmark/vermin, -/turf/simulated/floor/wood, -/area/library) -"Vq" = ( -/obj/machinery/computer/centrifuge, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -28; - pixel_y = -16; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/virology) -"Vr" = ( -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Vs" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"Vt" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"Vu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"Vv" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm7"; - name = "Room 7 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Vw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/port) -"Vx" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Vy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm3) -"Vz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"VA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "EMT Bay"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/paramedic) -"VB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/security) -"VC" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/resleeving) -"VD" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/sign/directions/bar{ - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/command{ - pixel_x = -32 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -12 - }, -/obj/structure/sign/directions/stairs_up{ - pixel_x = -32; - pixel_y = 12 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"VE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"VF" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"VG" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"VH" = ( -/obj/structure/table/woodentable, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"VI" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/vest/wolftaur{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/weapon/storage/lockbox, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"VJ" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"VK" = ( -/obj/structure/table/steel, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance, -/obj/random/medical, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardfore) -"VL" = ( -/obj/effect/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"VM" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/black, -/area/chapel/chapel_morgue) -"VN" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"VP" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/toilet) -"VQ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/miningshuttle) -"VR" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/starboard) -"VS" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"VT" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "miningops" - }, -/obj/structure/plasticflaps/mining, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"VV" = ( -/turf/simulated/wall/bay/red, -/area/chapel/office) -"VW" = ( -/obj/machinery/vending/wardrobe/detdrobe, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/red, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"VX" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"VY" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"VZ" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/library) -"Wa" = ( -/obj/machinery/button/remote/airlock{ - id = "dorm2"; - name = "Room 2 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm2) -"Wb" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - color = "#42038a" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Wc" = ( -/obj/machinery/smartfridge/produce, -/turf/simulated/wall/bay/r_wall/purple, -/area/rnd/xenobiology/xenoflora_storage) -"Wd" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"We" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/obj/effect/landmark/start/xenobot, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Wf" = ( -/obj/structure/table/woodentable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/coin/sometimes, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"Wg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Wh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/research, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Wi" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 9; - network = list("Xenobiology") - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Wj" = ( -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Wk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm4) -"Wl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm8) -"Wm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Wn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "dorm7"; - name = "Room 7"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/dorms/dorm7) -"Wo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"Wp" = ( -/obj/structure/bed/chair/sofa/pew/left{ - dir = 1 - }, -/obj/structure/sign/painting/chapel_secure{ - pixel_y = -32 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Wq" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Wr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) -"Ws" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Wt" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"Wu" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardaft) -"Wv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"Ww" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/starboardaft) -"Wx" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Wy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"Wz" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"WA" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "miningops"; - name = "Mining Ops conveyor switch"; - pixel_x = 10; - pixel_y = 5; - req_access = list(48); - req_one_access = list(48) - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"WB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck1/fore) -"WC" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"WD" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"WE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"WF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"WG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/prison/cell_block/B) -"WH" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"WJ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/obj/machinery/photocopier/faxmachine{ - department = "Library Conference Room" - }, -/turf/simulated/floor/wood, -/area/library) -"WK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"WL" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/chapel/chapel_morgue) -"WM" = ( -/turf/simulated/wall/bay/r_wall/purple, -/area/stellardelight/deck1/explobriefing) -"WP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "miningops" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/oreprocessing) -"WQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/mining/brace, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"WR" = ( -/turf/simulated/wall/bay/purple, -/area/rnd/research) -"WS" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"WT" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"WU" = ( -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"WW" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm6) -"WX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 - }, -/area/stellardelight/deck1/researchserver) -"WY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"WZ" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"Xa" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32; - pixel_y = -5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"Xb" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"Xc" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/toilet) -"Xd" = ( -/obj/machinery/alarm/angled, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Xe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Xf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"Xg" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Xh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Warden's Desk"; - req_access = list(3) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "wardenoffice"; - name = "Privacy Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"Xi" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/medical/virology) -"Xj" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/wall{ - dir = 4; - pixel_x = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/library) -"Xk" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"Xl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck1/shuttlebay) -"Xm" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Security Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/security) -"Xn" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"Xo" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/medical) -"Xp" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"Xq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Xr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/button/remote/blast_door{ - id = "mechbay"; - name = "Mech Bay"; - pixel_y = 25; - req_access = list(29,47) - }, -/obj/machinery/door/blast/angled{ - dir = 4; - id = "mechbay"; - name = "Mech Bay" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/assembly/robotics) -"Xs" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portcent) -"Xt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Xu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"Xv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Xw" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/pink, -/obj/structure/cable/pink{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"Xx" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"Xz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"XA" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck1/exterior) -"XB" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/security_equiptment_storage) -"XC" = ( -/obj/effect/floor_decal/milspec/color/red/half{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"XD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#ffffff"; - name = "maintenance access"; - req_one_access = null; - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/explobriefing) -"XE" = ( -/obj/structure/table/reinforced, -/obj/item/roller, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/gray_platform, -/area/gateway) -"XF" = ( -/obj/effect/floor_decal/milspec/color/emerald/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"XG" = ( -/obj/structure/flora/pottedplant/dead, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/researchserver) -"XH" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"XJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/milspec/color/emerald/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"XL" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell A" - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"XM" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"XN" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/landmark/start/scientist, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchequip) -"XO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Mech Bay"; - req_access = list(29,47); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/assembly/robotics) -"XP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"XQ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"XR" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/research) -"XS" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/storage) -"XT" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"XU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/random/vendordrink, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"XV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/purple, -/turf/simulated/floor, -/area/stellardelight/deck1/exploration) -"XW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/mining, -/obj/machinery/mining/drill/loaded, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"XX" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/library) -"XY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"XZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"Ya" = ( -/obj/structure/cable/pink{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Yb" = ( -/obj/machinery/light, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"Yc" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Slime Pen 5"; - req_access = list(55) - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Slime Pen 5"; - req_access = list(55) - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen5"; - name = "Pen 5 Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Yd" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/security) -"Ye" = ( -/obj/structure/closet/secure_closet/hydroponics/sci{ - req_access = list(77) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris, -/area/stellardelight/deck1/researchhall) -"Yf" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck1/lowermed) -"Yh" = ( -/obj/machinery/camera/network/mining{ - dir = 8 - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"Yi" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Yj" = ( -/obj/machinery/processor, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"Yk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Ym" = ( -/obj/structure/cable/pink{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/milspec/color/red/half, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Yn" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/research, -/obj/random/medical, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Yo" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) -"Yp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/prison/cell_block) -"Yq" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/stellardelight/deck1/miningshuttle) -"Yr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/stellardelight/deck1/dorms/dorm7) -"Ys" = ( -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "dorm5"; - name = "Room 5 Lock"; - pixel_y = -22; - specialfunctions = 4 - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck1/dorms/dorm5) -"Yt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Yu" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/storage) -"Yv" = ( -/turf/simulated/wall/bay/black, -/area/chapel/office) -"Yw" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"Yx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Yy" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"Yz" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"YA" = ( -/obj/structure/bookcase{ - desc = "There appears to be a shrine to WGW at the back..."; - name = "Forbidden Knowledge" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/painting/library_private{ - pixel_y = 32 - }, -/obj/structure/sign/painting/library_private{ - pixel_x = -32 - }, -/obj/item/weapon/book/manual/engineering_hacking, -/obj/item/weapon/book/manual/nuclear, -/obj/item/weapon/book/custom_library/fiction/woodysgotwood, -/turf/simulated/floor/wood, -/area/library) -"YB" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploration) -"YC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora_storage) -"YE" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/cargo) -"YF" = ( -/turf/simulated/wall/bay/r_wall/brown, -/area/stellardelight/deck1/dorms/dorm7) -"YG" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#a6753d"; - name = "Refinery"; - req_access = list(48); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck1/oreprocessing) -"YH" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/chapel/office) -"YI" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"YJ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"YK" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#8c1d11"; - fill_color = "#854a44"; - name = "Armory"; - req_access = list(3); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/armoury) -"YL" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/department/robo{ - pixel_y = 32 - }, -/obj/machinery/door/blast/angled_shutter/open{ - dir = 4; - id = "dontlooktmyrobotpenis"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 4; - name = "Robotics Desk"; - req_access = list(7); - req_one_access = list(47) - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"YM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/purple, -/turf/simulated/floor, -/area/gateway) -"YN" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"YO" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"YP" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck1/exploration) -"YQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/mining{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"YR" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/patient_wing) -"YS" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"YT" = ( -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/port) -"YV" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/security/tactical) -"YW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"YX" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"YY" = ( -/obj/effect/floor_decal/chapel{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/pew/right{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"YZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/swabs{ - layer = 5 - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/blue{ - pixel_y = -3 - }, -/obj/item/weapon/folder/yellow{ - pixel_y = -5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"Za" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Zb" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/item/clothing/accessory/badge/holo/cord, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/red, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) -"Zc" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/assembly/robotics) -"Zd" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"Ze" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/black, -/turf/simulated/floor, -/area/chapel/chapel_morgue) -"Zf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/shuttlebay) -"Zg" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"Zh" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/explobriefing) -"Zi" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Zj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/brigdoor/southleft{ - id = "Cell C"; - name = "Cell C"; - req_access = list(2) - }, -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/prison/cell_block/C) -"Zk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/toilet) -"Zl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck1/starboard) -"Zm" = ( -/obj/structure/closet/walllocker_double/west, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/miningequipment) -"Zn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "wardenoffice"; - name = "Privacy Shutters" - }, -/obj/structure/low_wall/bay/reinforced/red, -/turf/simulated/floor, -/area/security/warden) -"Zo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"Zp" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "GatewayShutterE"; - name = "EVA Shutter"; - pixel_x = -23; - req_one_access = list(18,19,43,67) - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/starboard) -"Zq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/exam_room) -"Zr" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "dontlooktmyrobotpenis"; - name = "Privacy Shutter Control"; - pixel_y = 2 - }, -/obj/item/device/robotanalyzer, -/turf/simulated/floor/tiled/steel, -/area/assembly/robotics) -"Zs" = ( -/obj/structure/table/woodentable, -/obj/structure/sign/painting/chapel_secure{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/lino, -/area/chapel/office) -"Zt" = ( -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"Zu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/starboardcent) -"Zv" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/detectives_office) -"Zw" = ( -/obj/effect/floor_decal/milspec/color/black, -/turf/simulated/floor/tiled/dark, -/area/security/security_cell_hallway) -"Zx" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = -33; - req_access = list(39) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - autoclose = 0; - dir = 4; - door_color = "#ffffff"; - frequency = 1379; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access = list(39); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/virology) -"Zy" = ( -/obj/machinery/photocopier, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/chapel/office) -"Zz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"ZA" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology) -"ZB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"ZC" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 20 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 29 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"ZD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/armor/vest/alt{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) -"ZE" = ( -/obj/structure/stairs/spawner/south, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck1/fore) -"ZF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/dnaforensics, -/turf/simulated/floor/tiled/white, -/area/security/detectives_office) -"ZG" = ( -/turf/simulated/wall/bay/r_wall/red, -/area/security/security_lockerroom) -"ZI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"ZJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/stellardelight/deck1/mining) -"ZK" = ( -/obj/structure/cable/pink{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portfore) -"ZM" = ( -/obj/machinery/seed_extractor, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris, -/area/rnd/xenobiology/xenoflora) -"ZN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/mineral/equipment_vendor/survey, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"ZO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/aft) -"ZP" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "wardenoffice"; - name = "Privacy Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/security/warden) -"ZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/milspec, -/area/stellardelight/deck1/exploequipment) -"ZR" = ( -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/lobby) -"ZS" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/structure/cable/orange{ - icon_state = "16-0" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/exploration) -"ZT" = ( -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "xenobiopen2"; - name = "Pen 2 Blast Doors" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/xenobiology) -"ZU" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck1/port) -"ZV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/department/chapel{ - pixel_x = -32; - plane = -34 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck1/fore) -"ZW" = ( -/obj/structure/cable/green{ - color = "#42038a"; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/research) -"ZX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck1/portaft) -"ZY" = ( -/obj/effect/floor_decal/borderfloorblack/full, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/deployable/barrier, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"ZZ" = ( -/turf/simulated/wall/bay/purple, -/area/rnd/xenobiology) +"aa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/machinery/newscaster/security_unit{pixel_y = 28},/mob/living/simple_mob/vore/fennec/bridgette,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"ab" = (/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"ac" = (/obj/structure/table/steel_reinforced,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ad" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ae" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"af" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light{dir = 4},/obj/item/weapon/book/manual/resleeving,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"ag" = (/obj/structure/cable/pink{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"ah" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ai" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/structure/cable/pink,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"aj" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"ak" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"al" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"am" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"an" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/aft) +"ao" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ap" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"aq" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"ar" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"as" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"at" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"au" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"av" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/item/weapon/storage/box/backup_kit,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"aw" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"ax" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/machinery/shower{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/device/multitool/station_buffered{pixel_y = 2},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"az" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"aA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"aB" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/effect/floor_decal/milspec/color/red,/obj/item/device/personal_shield_generator/security/loaded,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"aC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"aD" = (/turf/simulated/wall/bay/purple,/area/assembly/robotics) +"aE" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"aF" = (/obj/structure/closet/bombcloset/double,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aG" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,/obj/item/weapon/book/custom_library/religious/feastofkubera,/obj/item/weapon/book/custom_library/religious/storyoflordganesha,/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,/turf/simulated/floor/wood,/area/library) +"aH" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterE"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"aI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"aJ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"aK" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"aL" = (/obj/machinery/camera/network/research/xenobio{dir = 5; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"aM" = (/turf/simulated/wall/bay/purple,/area/rnd/workshop) +"aN" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"aO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"aP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"aQ" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"aR" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"aS" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/security_equiptment_storage) +"aT" = (/obj/item/weapon/storage/box/nifsofts_mining,/obj/structure/table/reinforced,/obj/item/device/personal_shield_generator/belt/mining/loaded,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"aU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aV" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"aW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"aX" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/emerald/corner,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"aY" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/machinery/door/window/brigdoor/eastright{dir = 2},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"aZ" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "xenobio_airlock_control"; name = "Xenobiology Access Console"; pixel_x = 24; tag_exterior_door = "xenobio_airlock_exterior"; tag_interior_door = "xenobio_airlock_interior"},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"ba" = (/obj/item/modular_computer/console/preset/civilian,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"bb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/botany/editor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"bc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"bd" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"be" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "xenobio_airlock_control"; name = "Xenobiology Access Button"; pixel_y = -32; req_access = null; req_one_access = list(47,55)},/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; frequency = 1379; id_tag = "xenobio_airlock_interior"; locked = 1; name = "Xenobiology Lab"; req_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology) +"bf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"bg" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/disposal/wall/cleaner{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"bh" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bi" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm1) +"bj" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology/xenoflora) +"bk" = (/turf/simulated/wall/bay/r_wall/steel,/area/prison/cell_block/C) +"bl" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/civilian) +"bm" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/warden,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"bo" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/exploshuttle) +"bp" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/structure/closet/walllocker_double/security/west{name = "evidence storage cabinet"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bq" = (/obj/structure/table/bench/steel,/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"br" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm1"; name = "Room 1"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm1) +"bs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"bt" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"bu" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bv" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/janitor) +"bw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/catwalk_plated/dark,/obj/effect/landmark/vines,/turf/simulated/floor,/area/stellardelight/deck1/port) +"bx" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"by" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"bz" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"bA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/library) +"bB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"bC" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bD" = (/obj/structure/lattice,/turf/space,/area/space) +"bE" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"bF" = (/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = -32},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"bG" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"bH" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"bI" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/camera/network/security{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bJ" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) +"bK" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"bL" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"bM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"bN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"bO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"bP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"bQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"bR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"bT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"bU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm7) +"bV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"bW" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"bX" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/corner,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bY" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"bZ" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ca" = (/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cb" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"cc" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/rods,/obj/fiftyspawner/rglass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cd" = (/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ce" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"cf" = (/obj/structure/table/steel,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/cautery,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"cg" = (/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"ch" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/lino,/area/chapel/office) +"ci" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"cj" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen3"; name = "Pen 3 Containment"; pixel_x = -30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen5"; name = "Pen 5 Containment"; pixel_x = -31; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 8; id = "xenobiodiv3"; name = "Divider 3 Blast Doors"; pixel_x = -39; req_access = list(55)},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ck" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/sign/directions/evac{dir = 8; pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cl" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"cm" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit,/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"cn" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"co" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"cp" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"cq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/button/remote/blast_door{dir = 4; id = "researchwindowlockdown"; name = "Window Lockdown"; pixel_x = -24},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"cr" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"cs" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"ct" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"cu" = (/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"cv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"cw" = (/obj/structure/reagent_dispensers/acid{pixel_x = 32},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"cx" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/head/welding,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"cz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"cC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"cE" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"cF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"cG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cH" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"cI" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm2"; name = "Room 2"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm2) +"cK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cM" = (/obj/structure/table/rack/shelf/steel,/obj/item/gunbox{pixel_y = 6},/obj/item/gunbox{pixel_y = -3},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"cN" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"cO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cP" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/item/stack/material/plasteel{amount = 10},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/closet/walllocker_double/science/east{name = "material sheets"},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"cQ" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"cR" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/defib_kit/jumper_kit,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/bodybags{pixel_x = -3; pixel_y = -2},/obj/item/weapon/book/manual/robotics_manual,/obj/item/weapon/book/manual/robotics_cyborgs,/obj/structure/closet/walllocker_double/science/east,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"cS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"cT" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"cU" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"cV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"cW" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"cX" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"cY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"cZ" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"da" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"db" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"dc" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"dd" = (/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"de" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"df" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"dg" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen2"; name = "Pen 2 Containment"; pixel_x = 30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen4"; name = "Pen 4 Containment"; pixel_x = 29; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 4; id = "xenobiodiv2"; name = "Divider 2 Blast Doors"; pixel_x = 38; pixel_y = -1; req_access = list(55)},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"dh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"dj" = (/obj/structure/table/woodentable,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"dk" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"dl" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/mining) +"dm" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"dn" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"do" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/machinery/mineral/input,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"dq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 4; id = "recoveryexit"; name = "Door Control"; pixel_x = -27; pixel_y = 25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"dr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"ds" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/science/north{name = "material sheets"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"dt" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"du" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"dv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/walllocker_double/generic_civ/west,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"dw" = (/obj/structure/railing/grey{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/structure/cable/white{icon_state = "16-0"},/obj/structure/stairs/spawner/north,/turf/simulated/floor,/area/stellardelight/deck1/lowermed) +"dx" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/library) +"dy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"dz" = (/obj/item/weapon/weldingtool,/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/multitool,/obj/structure/sink/kitchen{dir = 4; pixel_x = 11},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/walllocker_double/engineering/north{name = "xenobiology repair supplies"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"dA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"dB" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"dC" = (/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/closet/walllocker_double/cargo/west{name = "mining tools"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dD" = (/obj/structure/table/rack/shelf/steel,/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -1; pixel_y = 2},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"dE" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/closet/walllocker_double/cargo/west{name = "suit cooling units"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dF" = (/obj/machinery/computer/security/xenobio,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"dG" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"dH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"dI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"dJ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Library"; stripe_color = "#3b3b3b"},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"dL" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dM" = (/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/robot_parts/l_arm,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/inflatable/door,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/weapon/storage/box/botanydisk,/obj/item/weapon/storage/box/botanydisk,/obj/structure/closet/walllocker_double/science/west{name = "xenoflora supplies"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"dN" = (/obj/structure/closet/secure_closet/hydroponics/sci{req_access = list(77)},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/research{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"dO" = (/obj/machinery/mineral/input,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"dQ" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dR" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/camera/network/security,/obj/machinery/computer/arcade,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"dS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/pouch,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"dT" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"dU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"dV" = (/obj/structure/table/rack/shelf/steel,/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/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"dW" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Robotics Desk"; req_access = list(7); req_one_access = list(47)},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"dX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"dY" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dZ" = (/obj/structure/table/standard,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/item/clothing/glasses/omnihud/rnd,/obj/item/clothing/gloves/sterile/latex,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ea" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"eb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"ec" = (/obj/structure/sign/deck1{pixel_x = -32},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"ed" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"ee" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ef" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"eg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell B"; name = "Cell B"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block/B) +"ei" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ej" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ek" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portaft) +"el" = (/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/structure/closet/walllocker_double/east,/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/device/gps{pixel_x = 6; pixel_y = 5},/obj/item/device/gps{pixel_x = -6; pixel_y = 5},/obj/item/device/gps{pixel_x = -6; pixel_y = -4},/obj/item/device/gps{pixel_x = 6; pixel_y = -4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"en" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"eo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/low_wall/bay/reinforced/purple,/obj/structure/sign/xenobio{plane = -34},/turf/simulated/floor,/area/rnd/xenobiology) +"ep" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"eq" = (/turf/simulated/floor/carpet,/area/chapel/main) +"er" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"es" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"et" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"eu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ev" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"ew" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ex" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"ey" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/exploration) +"ez" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"eA" = (/obj/effect/floor_decal/milspec/color/black,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"eB" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"eC" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"eD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"eF" = (/turf/simulated/floor,/area/security/tactical) +"eG" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"eH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"eI" = (/obj/machinery/libraryscanner,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/carpet,/area/library) +"eJ" = (/obj/structure/table/rack/shelf,/obj/item/device/radio{pixel_x = -4; pixel_y = -4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = -4; pixel_y = 5},/obj/item/device/radio{pixel_x = 4; pixel_y = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"eK" = (/obj/structure/closet/walllocker_double/generic_civ/west,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"eL" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"eM" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"eN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"eP" = (/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eQ" = (/obj/machinery/light{dir = 4},/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"eR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"eS" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "chapelofficelockdown"},/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/office) +"eT" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eU" = (/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"eV" = (/turf/simulated/floor,/area/stellardelight/deck1/aft) +"eW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eY" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/alarm/angled,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"eZ" = (/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"fa" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#8c1d11"; fill_color = "#854a44"; name = "Warden's Office"; req_access = list(3); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/warden) +"fb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"fc" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"fd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"fe" = (/obj/item/device/camera,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ff" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"fg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology) +"fh" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"fi" = (/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"fj" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"fk" = (/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"fl" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"fm" = (/obj/machinery/smartfridge/secure/virology,/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"fn" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/firealarm/angled{dir = 8},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"fp" = (/obj/machinery/r_n_d/circuit_imprinter{dir = 1},/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"fq" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"fr" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm3) +"fs" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"ft" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fu" = (/obj/structure/bed/chair/sofa/corp/right,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"fv" = (/obj/random/slimecore,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"fw" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block) +"fx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"fy" = (/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/stamp/ward,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/pen,/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/security/warden) +"fz" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"fB" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"fD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -64},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"fE" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"fF" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"fG" = (/obj/structure/table/steel_reinforced,/obj/item/device/gps/security{pixel_y = 3},/obj/item/device/gps/security{pixel_x = -3},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"fI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"fJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Mech Bay"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"fK" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"fL" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"fM" = (/obj/structure/closet/l3closet/scientist,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/item/clothing/suit/bio_suit/scientist,/obj/item/clothing/head/bio_hood/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"fN" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"fO" = (/turf/simulated/wall/bay/r_wall{desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#3d5e80"},/area/stellardelight/deck1/aft) +"fP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"fQ" = (/obj/structure/cable/green{color = "#42038a"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Exploration"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"fR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"fS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"fT" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"fU" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"fV" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"fW" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"fX" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/librarypubliccomp,/turf/simulated/floor/wood,/area/library) +"fZ" = (/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"ga" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gb" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"gc" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"ge" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"gf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm5"; name = "Room 5"; stripe_color = "#89bd66"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm5) +"gg" = (/obj/effect/landmark/start/xenobio,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"gh" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"gi" = (/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"gj" = (/obj/structure/stairs/spawner/south,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"gk" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"gl" = (/obj/machinery/camera/network/research/xenobio{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"gm" = (/obj/machinery/light{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = 32},/obj/effect/landmark/start/chaplain,/turf/simulated/floor/carpet,/area/chapel/main) +"gn" = (/obj/structure/bed/chair/backed_red,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"go" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"gp" = (/obj/structure/closet/crate,/obj/machinery/camera/network/mining{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"gq" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"gr" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"gt" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"gu" = (/obj/structure/table/steel,/obj/machinery/recharger,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"gw" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"gx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"gy" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"gz" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"gC" = (/obj/structure/table/steel,/obj/item/device/sleevemate,/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/obj/machinery/alarm/angled,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"gD" = (/obj/structure/flora/pottedplant/decorative,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"gE" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/item/weapon/nullrod,/obj/item/weapon/deck/tarot,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/lino,/area/chapel/office) +"gF" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"gG" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portcent) +"gH" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gI" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"gK" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"gL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{id = "GatewayShutter"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"gM" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Research and Development"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/research) +"gO" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; req_access = list(31,5)},/obj/structure/cable/yellow,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"gP" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"gQ" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/oreprocessing) +"gS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"gT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"gU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"gV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"gW" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"gX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"gY" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"ha" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "rddoor"; name = "Server Room"; req_access = list(30); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/researchserver) +"hb" = (/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Security"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"hc" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/security_port) +"hd" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"he" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"hg" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"hh" = (/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"hi" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"hj" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"hk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hl" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"hm" = (/obj/machinery/autolathe{hacked = 1},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"hp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"hq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = -24},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"hr" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"hs" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"hu" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/gun{pixel_y = 7},/obj/item/weapon/gun/energy/gun{pixel_y = -5},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"hv" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"hw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hx" = (/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "xenobio_airlock_control"; name = "Xenobiology Access Button"; pixel_y = 32; req_access = null; req_one_access = list(47,55)},/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; frequency = 1379; id_tag = "xenobio_airlock_exterior"; locked = 1; name = "Xenobiology Lab"; req_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"hy" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"hz" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"hB" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = list(30)},/obj/machinery/door/window/northleft{name = "Server Room"; req_access = list(30)},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck1/researchserver) +"hC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/cell/device/weapon{pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_y = -8},/obj/item/weapon/cell/device/weapon{pixel_y = 4},/obj/item/weapon/cell/device/weapon{pixel_y = 11},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"hD" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"hG" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 10},/obj/structure/sign/directions/chapel{dir = 8; pixel_x = 32; pixel_y = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hH" = (/obj/machinery/door/blast/angled{id = "GatewayShutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hI" = (/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"hJ" = (/turf/simulated/wall/bay/white,/area/medical/virology) +"hK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"hN" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"hP" = (/obj/structure/morgue{dir = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"hQ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"hR" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hS" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/sign/department/biblio{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hT" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"hU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hV" = (/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"hW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"hX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterW"},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"hZ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/closet/bombcloset,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ia" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ib" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"ic" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"id" = (/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ie" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"if" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"ig" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"ih" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"ii" = (/obj/random/maintenance/security,/obj/random/medical,/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/security_port) +"ik" = (/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"il" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"im" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"in" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"io" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"ip" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"iq" = (/turf/simulated/floor/wood,/area/library) +"ir" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"is" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"it" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"iv" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"iw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"ix" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"iy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"iz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"iA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"iB" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"iC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"iD" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"iE" = (/obj/structure/sign/painting/library_private{pixel_x = -32},/obj/structure/sign/painting/library_private{pixel_y = -32},/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase,/obj/structure/table/rack,/turf/simulated/floor/wood,/area/library) +"iF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Custodial Closet"; req_access = list(26); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/janitor) +"iG" = (/obj/structure/closet/wardrobe/virology_white,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"iH" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/effect/shuttle_landmark/shuttle_initializer/exploration,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"iI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"iJ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iK" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen{pixel_y = 6},/obj/random/coin/sometimes,/turf/simulated/floor/wood,/area/library) +"iL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iM" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"iN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/main) +"iO" = (/obj/structure/table/steel,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"iQ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"iR" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"iS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"iU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"iW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"iX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"iY" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 4; frequency = 1380; id_tag = "explodocker_bay"; pixel_x = -24},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"iZ" = (/obj/effect/floor_decal/milspec/color/red,/obj/machinery/alarm/angled,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ja" = (/obj/machinery/light{dir = 4},/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"jb" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace2"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"jc" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"jd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"jf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"jg" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jh" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ji" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"jj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"jk" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 24; plane = -34},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"jl" = (/obj/structure/table/steel,/obj/item/device/retail_scanner/security,/obj/item/device/taperecorder,/obj/item/weapon/storage/box/evidence,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"jm" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"jn" = (/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"jo" = (/obj/machinery/button/crematorium{id = "crematorium"; pixel_x = 25; req_access = list(); req_one_access = null},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"jp" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"jq" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/wood,/area/library) +"jr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block/B) +"js" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"jt" = (/obj/structure/table/steel_reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ju" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 4"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"jv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"jw" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"jx" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"jy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"jz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm3) +"jA" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"jB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"jC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/library) +"jD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"jF" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"jG" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"jH" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jI" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"jJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"jK" = (/obj/machinery/door/window/southleft{dir = 8; name = "Library Desk Door"; req_access = list(37)},/obj/machinery/button/remote/blast_door{id = "librarywindowlockdown"; name = "Window Lockdown"; pixel_y = 25; req_access = null},/turf/simulated/floor/carpet,/area/library) +"jL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/library) +"jN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"jO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Cargo Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/cargo) +"jP" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"jQ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"jR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jV" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"jW" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"jY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"jZ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"ka" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/rnd/storage) +"kc" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"kd" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"ke" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"kg" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"kh" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"kj" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/sign/directions/janitor{dir = 8; pixel_x = 32},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/lino,/area/chapel/office) +"kl" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"km" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"kn" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"ko" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"kp" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/rnd/storage) +"kq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"kr" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"ks" = (/obj/machinery/atmospherics/pipe/manifold/hidden/purple{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"kt" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ku" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"kv" = (/obj/structure/sign/deck1{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"kw" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/library) +"kx" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ky" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"kz" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"kA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"kB" = (/turf/simulated/wall/bay/r_wall/black,/area/maintenance/security_port) +"kC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"kE" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"kG" = (/obj/machinery/computer/security{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"kH" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"kI" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 3"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 3"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"kJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"kK" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"kL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"kM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"kN" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace4"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"kO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"kP" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/storage) +"kQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"kS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"kT" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-8"},/obj/machinery/camera/network/security,/obj/machinery/computer/arcade,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"kU" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"kY" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"la" = (/obj/machinery/smartfridge/secure/extract,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"lb" = (/obj/machinery/door/blast/angled{id = "xenobiodiv3"; name = "Divider 3 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"lc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"ld" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"le" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"lf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"lg" = (/obj/effect/shuttle_landmark/premade/sd/deck1/starboard,/turf/space,/area/space) +"lh" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"li" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"lm" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"ln" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 1"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 1"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"lo" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/taperecorder,/turf/simulated/floor/carpet,/area/library) +"lp" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"lq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Security Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/security) +"lr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/crate/trashcart,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"ls" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/directions/dorms{dir = 6; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 4; pixel_x = -32},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/janitor{pixel_x = -32; pixel_y = -12},/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"lt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"lv" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"lw" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"lx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ly" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"lz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9fccc7"; fill_color = "#333333"; name = "Pilot Equipment"; req_access = list(67); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/pilot) +"lA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lB" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/red,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"lC" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"lD" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"lF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"lG" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/mimepet/gregory,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"lH" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"lI" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"lJ" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"lK" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 24; plane = -34},/obj/machinery/button/remote/blast_door{id = "xenospace2"; name = "2 Space Door"; pixel_x = 10; pixel_y = 21; req_access = list(55)},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"lM" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/biblio{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"lN" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"lO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#333333"; name = "Auxiliary EVA Equipment Room"; req_one_access = list(18,19,43); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploequipment) +"lP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lQ" = (/obj/structure/table/steel,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/monotile,/area/janitor) +"lR" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"lS" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"lT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"lU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"lV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lW" = (/obj/machinery/camera/network/research{dir = 1},/obj/structure/table/glass,/obj/machinery/chemical_dispenser/xenoflora/full,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"lX" = (/obj/structure/closet/secure_closet/paramedic,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"lY" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"lZ" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 4},/obj/item/device/radio{anchored = 1; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Virology Emergency Phone"; pixel_x = 7; pixel_y = 9},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = -28; pixel_y = 5; req_access = list(5)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"ma" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"mb" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"mc" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/structure/table/steel,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/monotile,/area/janitor) +"md" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"me" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/library) +"mf" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/detective,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"mh" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"mi" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"mj" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"mk" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ml" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mm" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"mo" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/painting/library_secure{pixel_x = -30},/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman,/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor,/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1,/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain,/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver,/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday,/obj/item/weapon/book/bundle/custom_library/fiction/raissue142,/obj/item/weapon/book/bundle/custom_library/fiction/raissue147,/obj/item/weapon/book/bundle/custom_library/fiction/silence,/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,/obj/item/weapon/book/custom_library/fiction/myrock,/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,/turf/simulated/floor/wood,/area/library) +"mr" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ms" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"mt" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"mu" = (/turf/simulated/floor/tiled/dark,/area/security/lobby) +"mv" = (/obj/structure/janitorialcart,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"mw" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"my" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"mz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"mA" = (/obj/structure/sign/deck1{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"mC" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink,/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"mD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"mE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"mG" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"mH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"mI" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"mJ" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"mK" = (/obj/structure/table/sifwooden_reinforced,/obj/item/weapon/storage/box/nifsofts_pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"mM" = (/turf/simulated/wall/bay/steel,/area/janitor) +"mN" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"mO" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mP" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"mQ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"mS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"mT" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"mV" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"mW" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#333333"; name = "Away Mission Meeting Room"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"mX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/camera/network/research{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"mY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"mZ" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"nb" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"nc" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"nd" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/expedition_medical,/obj/item/clothing/head/helmet/space/void/expedition_medical,/obj/machinery/door/window/brigdoor/eastright{req_access = list(5)},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ne" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Exploration Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"nf" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm2) +"ng" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"nh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"nj" = (/obj/structure/table/sifwooden_reinforced,/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"nk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/explobriefing) +"nl" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/sensor{name = "Powernet Sensor - Exploration Subgrid"; name_tag = "Exploration Subgrid"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"nm" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"nn" = (/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"no" = (/turf/simulated/floor/tiled/monotile,/area/janitor) +"nq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Security Processing"; req_access = list(63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_processing) +"nt" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"nu" = (/obj/machinery/transhuman/synthprinter,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"nv" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"nw" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"nx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; name = "Morgue"; req_access = list(6); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/morgue) +"ny" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/explobriefing) +"nz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"nA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"nB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"nC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"nD" = (/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"nE" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"nF" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"nG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/medbay{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nH" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"nI" = (/obj/effect/floor_decal/milspec/color/emerald,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nJ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"nK" = (/turf/simulated/wall/rshull,/area/stellardelight/deck1/miningshuttle) +"nL" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"nM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/chapel_morgue) +"nN" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"nO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 1; pixel_x = 32; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"nP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"nQ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"nS" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"nT" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nV" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"nW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"nX" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"nY" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 32},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/aft) +"nZ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"oa" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled/dark,/area/security/warden) +"ob" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oc" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"od" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"oe" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"of" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"og" = (/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor,/area/maintenance/security_port) +"oh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the cleaning room exit."; dir = 4; id = "resleeveexit"; name = "Door Control"; pixel_x = -27; pixel_y = 25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"oi" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Exploration"; sortType = "Exploration"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"ol" = (/obj/machinery/newscaster/security_unit{pixel_x = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"om" = (/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"on" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"oo" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"op" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"oq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"or" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"os" = (/obj/structure/sign/department/miner_dock{pixel_y = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ou" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ov" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"ox" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"oy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"oz" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/research) +"oA" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm4"; name = "Room 4 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"oB" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"oC" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"oD" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"oE" = (/turf/simulated/wall/bay/white,/area/medical/morgue) +"oF" = (/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oG" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"oH" = (/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Void"; sort_tag = "Void"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/virology{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"oI" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"oK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) +"oL" = (/obj/structure/table/steel,/obj/item/device/integrated_circuit_printer,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"oM" = (/obj/machinery/transhuman/resleever,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oO" = (/obj/structure/cable/pink{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oQ" = (/obj/machinery/vending/wardrobe/secdrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"oS" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large/default,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"oT" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"oU" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oW" = (/obj/machinery/light{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oX" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/storage) +"oY" = (/obj/machinery/organ_printer/flesh,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oZ" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"pa" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"pb" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"pc" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/air,/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pd" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -64},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"pe" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"pf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/catwalk_plated/dark,/obj/effect/landmark/vines,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"ph" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/security_port) +"pi" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"pj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"pk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"pl" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/red,/area/security/tactical) +"pm" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm6"; name = "Room 6 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"pn" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"pp" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "chapelwindowlockdown"},/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/main) +"pq" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"pr" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"ps" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Equipment Room"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/research) +"pt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Toxins Storage"; req_access = list(8); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/storage) +"pu" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled,/area/rnd/storage) +"pv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 32; pixel_y = 7},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"pw" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"px" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/computer/guestpass{pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"py" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"pz" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"pA" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the cleaning room."; dir = 4; id = "resleeveclean"; name = "Door Control"; pixel_x = -27; pixel_y = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"pC" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/exploequipment) +"pD" = (/obj/structure/table/woodentable,/obj/item/device/tvcamera,/obj/structure/sign/painting/library_private{pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"pE" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pF" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/researchequip) +"pH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Mining"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"pI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "ex_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "ex_airpump"; tag_chamber_sensor = "ex_sensor"; tag_exterior_door = "ex_exterior"; tag_interior_door = "ex_interior"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pJ" = (/obj/structure/bed/chair/sofa/corp/left{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"pK" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pL" = (/obj/machinery/door/window/brigdoor/southright{req_access = list(77); req_one_access = newlist()},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"pM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"pN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"pO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Cargo Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/cargo) +"pP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology/xenoflora_storage) +"pR" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/miningequipment) +"pS" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"pT" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"pU" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"pV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"pX" = (/obj/machinery/shower{dir = 1; pixel_y = -2},/obj/structure/window/reinforced{dir = 4},/obj/structure/curtain/open/shower/medical,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel,/area/medical/virology) +"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/detective,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"pZ" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"qa" = (/obj/machinery/suit_cycler/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"qb" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"qd" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"qe" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "miningdocker_bay"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"qh" = (/turf/simulated/wall/bay/white,/area/medical/exam_room) +"qj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Library"; sortType = "Library"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"qk" = (/obj/machinery/newscaster{pixel_x = 30},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ql" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"qm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"qn" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"qo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"qp" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"qq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"qv" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck1{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"qw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm4"; name = "Room 4"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm4) +"qx" = (/obj/machinery/atmospherics/unary/heater{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"qy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/sign/directions/evac{pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"qA" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/researchserver) +"qB" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"qD" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/paramedic) +"qE" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/shower) +"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"qG" = (/obj/machinery/door_timer/cell_3{id = "Cell C"; name = "Cell C"; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qH" = (/obj/item/modular_computer/console/preset/civilian,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"qI" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/item/weapon/storage/box/handcuffs{pixel_x = 6; pixel_y = -2},/obj/item/weapon/storage/box/evidence,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"qJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#8c1d11"; name = "maintenance access"; req_one_access = list(38,63); stripe_color = "#8c1d11"},/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"qK" = (/obj/structure/bed/chair/sofa/corp/left,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"qL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"qM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"qN" = (/obj/structure/sign/painting/chapel_secure{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"qO" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"qP" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qQ" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/button/remote/blast_door{id = "chapelwindowlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 25},/turf/simulated/floor/carpet,/area/chapel/main) +"qR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"qS" = (/obj/machinery/button/remote/blast_door{id = "brigwindowlockdown"; name = "Window Lockdown"; pixel_y = 25; req_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qT" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 32},/obj/effect/catwalk_plated/dark,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/stellardelight/deck1/aft) +"qU" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"qV" = (/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"qW" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Resleeving Lab"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"qX" = (/turf/space/internal_edge/right,/area/stellardelight/deck1/starboard) +"qY" = (/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qZ" = (/obj/structure/table/steel,/obj/item/device/retail_scanner/security,/obj/item/device/retail_scanner/security,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"ra" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"rb" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "GatewayShutterW"; name = "EVA Shutter"; pixel_x = 23; req_one_access = list(18,19,43,67)},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"rd" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"re" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rf" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rg" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rh" = (/obj/structure/table/steel,/obj/item/weapon/cell/device/weapon{pixel_x = 3},/obj/item/weapon/cell/device/weapon{pixel_x = -6; pixel_y = -3},/obj/item/weapon/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"ri" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"rj" = (/obj/machinery/camera/network/research,/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"rk" = (/obj/structure/bed/chair/backed_red,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"rl" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"rn" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/mining{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"ro" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-8"},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"rp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/morgue{dir = 2; name = "Private Study"; req_access = list(37)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/library) +"rr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"rs" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/obj/structure/cable/pink{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"rt" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ru" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"rw" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ry" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"rA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Civilian Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/civilian) +"rB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rC" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"rD" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"rF" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"rG" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"rH" = (/obj/structure/closet/l3closet/security,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"rI" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"rJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"rL" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; name = "Morgue"; req_access = list(5,6); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/morgue) +"rM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"rN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"rO" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"rP" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterE"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"rT" = (/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"rV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"rW" = (/obj/machinery/button/remote/airlock{id = "dorm8"; name = "Room 8 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"rX" = (/obj/machinery/light{dir = 8},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"rY" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp{pixel_x = -14; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/button/remote/blast_door{dir = 1; id = "chapelofficelockdown"; name = "Window Lockdown"; pixel_x = -5; pixel_y = 5},/turf/simulated/floor/lino,/area/chapel/office) +"rZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"sa" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"sb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/dorms{dir = 10; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/janitor{dir = 8; pixel_x = 32; pixel_y = -6},/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"sd" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"se" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sf" = (/obj/machinery/disease2/isolator,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/alarm/angled,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"sg" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/department/medbay{name = "RESLEEVING"; pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"si" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"sj" = (/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"sl" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/alarm/angled,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"sm" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"sn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"so" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"sp" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/security_port) +"sq" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"sr" = (/obj/structure/closet/secure_closet/warden,/obj/item/weapon/book/manual/security_space_law,/obj/item/gunbox/warden,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/storage/box/donut,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/warden) +"ss" = (/obj/machinery/optable{name = "Robotics Operating Table"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/medical_wall/anesthetics{pixel_x = 32; req_access = list(); req_one_access = list(29,45)},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"st" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"su" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"sv" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/security/armoury) +"sw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"sx" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"sy" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"sz" = (/obj/structure/sign/deck1{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"sA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"sB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"sC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#333333"; name = "Shuttle Bay"; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"sD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"sG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"sH" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"sI" = (/obj/machinery/door/window/eastright{dir = 8; name = "Virology Isolation Room One"; req_one_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"sJ" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sK" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"sL" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"sM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"sN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"sO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"sP" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"sQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"sR" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/mining) +"sS" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"sT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"sU" = (/obj/structure/closet/coffin,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"sV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sW" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ex_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"sX" = (/obj/machinery/camera/network/research/xenobio{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"sY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"sZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"ta" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/lowermed) +"tb" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"tc" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"td" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portcent) +"te" = (/obj/machinery/firealarm/angled,/obj/machinery/chemical_analyzer,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tf" = (/obj/structure/closet/wardrobe/robotics_black,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"tg" = (/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"th" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/effect/floor_decal/milspec/color/black,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ti" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"tj" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"tm" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/tindalos/twigs,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"tn" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"to" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"tp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "security_airlock"; name = "interior access button"; pixel_x = -32; req_access = list(1)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "security_interior"; locked = 1; name = "Security Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"tq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Circuitry Workshop"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/workshop) +"tr" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/rnd/storage) +"ts" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"tt" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"tu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/stellardelight/deck1/exploequipment) +"tv" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"tw" = (/obj/structure/sign/department/sci{pixel_x = 32},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"tx" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"tz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"tA" = (/obj/machinery/camera/network/research/xenobio{dir = 5; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"tB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"tC" = (/turf/simulated/wall/bay/r_wall/black,/area/security/armoury) +"tD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"tE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/bed/chair,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"tF" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"tG" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"tH" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"tI" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/department/rnd{pixel_y = 32},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/conveyor_switch/oneway{id = "bodieshitthefloor"; pixel_x = -12; pixel_y = 20},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"tL" = (/turf/simulated/wall/bay/r_wall{desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#3d5e80"},/area/chapel/chapel_morgue) +"tM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"tN" = (/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"tO" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"tP" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"tR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"tS" = (/obj/machinery/papershredder,/obj/machinery/camera/network/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"tT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"tU" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"tW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tX" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -25},/turf/simulated/floor/lino,/area/chapel/office) +"tY" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tZ" = (/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"ua" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ub" = (/obj/structure/table/steel_reinforced,/obj/item/ammo_magazine/m45/rubber{pixel_y = 9},/obj/item/ammo_magazine/m45/rubber{pixel_x = 3; pixel_y = 3},/obj/item/ammo_magazine/m45/rubber{pixel_y = -3},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"uc" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/obj/machinery/door/window/brigdoor/eastright{req_access = list(43)},/obj/item/device/bluespaceradio/sd_prelinked,/obj/item/device/cataloguer/compact,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ue" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"ug" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"uh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/stellardelight/deck1/exploshuttle) +"ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"uk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ul" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"um" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/atmospherics) +"un" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"uo" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"uq" = (/turf/space,/area/space) +"ur" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Brig"; req_access = null; req_one_access = list(38,63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"us" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/medical) +"ut" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uu" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"uv" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"uw" = (/turf/space/internal_edge/left,/area/stellardelight/deck1/starboard) +"ux" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"uy" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle/pistol,/obj/machinery/camera/network/security,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"uz" = (/obj/structure/table/reinforced,/obj/item/device/slime_scanner,/obj/item/device/slime_scanner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/light,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"uA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"uB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/exploration) +"uC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"uD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"uG" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uH" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"uI" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uJ" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uL" = (/obj/effect/floor_decal/chapel,/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"uM" = (/obj/structure/closet/excavation,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"uN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"uP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"uR" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"uS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uT" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"uU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Research and Development"; req_access = list(7); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/rnd/workshop) +"uV" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -32; req_access = list(39)},/obj/machinery/door/blast/angled/open{id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"},/obj/structure/disposalpipe/segment,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; door_color = "#ffffff"; frequency = 1379; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"uW" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/exploration) +"uX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"uY" = (/obj/structure/closet/radiation,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"uZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"va" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vb" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"vc" = (/obj/machinery/vending/security,/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"vd" = (/obj/structure/toilet{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"ve" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"vf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/aft) +"vg" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) +"vh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vi" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vj" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/exploration,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"vk" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"vm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"vo" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"vp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"vq" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vs" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"vt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/item_bank{dir = 4; pixel_x = -29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"vu" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm5) +"vv" = (/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"vw" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"vx" = (/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"vy" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"vz" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"vA" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"vB" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"vC" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"vE" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"vF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"vG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"vH" = (/obj/machinery/button/remote/blast_door{id = "GatewayShutterE"; name = "EVA Shutter"; pixel_x = 5; pixel_y = 24; req_one_access = list(18,19,43,67)},/obj/machinery/button/remote/blast_door{id = "GatewayShutterW"; name = "EVA Shutter"; pixel_x = -5; pixel_y = 24; req_access = null; req_one_access = list(18,19,43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"vI" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"vJ" = (/obj/machinery/mineral/stacking_unit_console{density = 0},/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/oreprocessing) +"vK" = (/obj/machinery/requests_console{department = "Exploration"; name = "Exploration Requests Console"; pixel_x = -30},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"vL" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vM" = (/obj/machinery/button/remote/airlock{id = "bathroomstall1"; name = "Toilet 1 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"vN" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"vP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"vQ" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"vT" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"vU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"vV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"vW" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"vX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"vY" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"vZ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"wa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_port) +"wb" = (/obj/structure/sign/painting/chapel_secure{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wc" = (/obj/machinery/firealarm/angled,/obj/machinery/mecha_part_fabricator/pros,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"we" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/nifsofts_security,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/vending/wallmed1/public{pixel_x = -29},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"wf" = (/turf/simulated/floor,/area/maintenance/security_port) +"wg" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"wh" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"wi" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"wk" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"wm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"wn" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"wo" = (/obj/structure/table/bench/marble,/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/landmark/start/paramedic,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"wp" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"wq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ws" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"wt" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"wu" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wv" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wx" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"wy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/library) +"wA" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"wC" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"wE" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm1) +"wF" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/cargo) +"wG" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardfore) +"wI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/seed_storage/xenobotany,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"wJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"wK" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"wM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"wN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/mining/brace,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wP" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"wQ" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"wR" = (/obj/machinery/computer/diseasesplicer{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"wS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm8"; name = "Room 8"; stripe_color = "#89bd66"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm8) +"wT" = (/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"wU" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"wV" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wW" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wX" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"wY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"wZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/directions/security{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"xa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"xb" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"xc" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"xd" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"xe" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/starboard) +"xf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/stellardelight/deck1/miningequipment) +"xg" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = -7; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = 4; pixel_y = 6},/obj/item/device/flashlight/pen{pixel_x = -3; pixel_y = -3},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"xh" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/lino,/area/chapel/office) +"xi" = (/obj/structure/morgue{dir = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"xj" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"xk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"xl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/steel,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xn" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"xo" = (/turf/simulated/floor/reinforced,/area/rnd/workshop) +"xq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"xs" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"xt" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/xenobio,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"xu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"xv" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"xw" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/item/weapon/disk/nifsoft/compliance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xx" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"xy" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portfore) +"xz" = (/obj/machinery/requests_console/preset/research{pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "rndshutters"; name = "Privacy Shutter Control"; pixel_x = -15; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"xA" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) +"xB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/library) +"xC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"xD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"xE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"xF" = (/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Research"; sortType = "Research"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"xG" = (/obj/machinery/chem_master,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/security{dir = 8},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xH" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"xI" = (/obj/machinery/door/window/eastright{dir = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"xK" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"xL" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xM" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xN" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"xO" = (/obj/machinery/computer/shuttle_control/explore/stellardelight/mining,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"xP" = (/obj/structure/sign/department/morgue{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"xQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"xR" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"xS" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"xT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"xU" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xV" = (/turf/simulated/floor/carpet,/area/library) +"xW" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/security) +"xX" = (/obj/structure/table/reinforced,/obj/item/device/uv_light,/obj/item/weapon/reagent_containers/spray/luminol,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ya" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"yb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/stellardelight/deck1/exploshuttle) +"yc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; req_access = list(19,43,67,66,5)},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"yd" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"ye" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block) +"yf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"yg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/library) +"yi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"yj" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"yk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/multi_tile/two_tile_ver{id = "armorydoor"; name = "Armory"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"yl" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"ym" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"yn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"yo" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"yp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"yq" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/item/device/retail_scanner/science,/obj/item/device/multitool/scioutpost,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yr" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/computer/guestpass{pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yu" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"yv" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"yx" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"yy" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"yz" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yB" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/closet/secure_closet/brig{id = "Cell C"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"yC" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"yE" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"yG" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yH" = (/obj/structure/bed/chair/bay/shuttle{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"yI" = (/obj/machinery/transhuman/resleever,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"yK" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"yL" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"yM" = (/obj/machinery/mech_recharger,/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"yN" = (/obj/structure/bed/chair,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"yO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yP" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"yQ" = (/obj/machinery/atmospherics/unary/freezer{dir = 8; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"yR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"yS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"yT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yU" = (/obj/structure/table/standard,/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/item/clothing/glasses/welding,/obj/item/weapon/storage/belt/utility,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yV" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"yW" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yX" = (/obj/effect/shuttle_landmark/premade/sd/deck1/aft,/turf/space,/area/space) +"yY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"yZ" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"za" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"zb" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zd" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ex_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"ze" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"zf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"zg" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"zi" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"zj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/library) +"zk" = (/obj/structure/closet/l3closet/virology,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"zn" = (/obj/structure/closet/secure_closet/paramedic,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"zo" = (/obj/item/weapon/stool/padded,/obj/machinery/light_switch{pixel_y = 25},/obj/effect/landmark/start/librarian,/turf/simulated/floor/carpet,/area/library) +"zp" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/milspec/color/black,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zq" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"zr" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"zs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"zt" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"zv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"zw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Medical Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/medical) +"zx" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"zy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"zz" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"zB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/security_port) +"zC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"zD" = (/turf/simulated/wall/bay/r_wall/red,/area/security/warden) +"zE" = (/obj/structure/table/rack/shelf/steel,/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 6},/obj/effect/floor_decal/milspec/color/black,/obj/item/ammo_magazine/ammo_box/b12g/stunshell{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/flash{pixel_x = -1; pixel_y = 2},/obj/item/ammo_magazine/ammo_box/b12g/beanbag{pixel_x = -5; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zG" = (/obj/machinery/autolathe{dir = 1; hacked = 1},/obj/structure/reagent_dispensers/acid{pixel_x = -32},/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"zH" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"zI" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"zK" = (/obj/machinery/light,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"zL" = (/obj/machinery/firealarm/angled,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"zM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"zN" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = -4; pixel_y = 4},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = -4; pixel_y = -6},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = 5; pixel_y = -6},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = 5; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"zP" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"zQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"zR" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"zS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"zT" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"zU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"zV" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 4; frequency = 1380; id_tag = "miningdocker"; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"zW" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zX" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"zY" = (/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"zZ" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Aa" = (/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = -6},/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = -6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Ab" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Ac" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ad" = (/obj/machinery/camera/network/research/xenobio{dir = 9; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Ae" = (/obj/structure/bed/chair/sofa/corp/right,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"Af" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{dir = 4; id = "xenospace4"; name = "4 Space Door"; pixel_x = 5; pixel_y = 2; req_access = list(55)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Ag" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ah" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Ai" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Aj" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck1/pilot) +"Ak" = (/turf/simulated/wall/bay/r_wall/black,/area/chapel/chapel_morgue) +"Am" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"An" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Ao" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"Ap" = (/obj/structure/table/bench/sifwooden/padded,/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Aq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Ar" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"As" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"At" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Au" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Av" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Aw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Ax" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Ay" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"AB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"AC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"AD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"AF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"AG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Janitor"; sortType = "Janitor"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/port) +"AH" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem,/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov,/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,/obj/item/weapon/book/manual/synthetic_life,/turf/simulated/floor/wood,/area/library) +"AI" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/table/steel,/obj/random/maintenance,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"AJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#2e2e2e"; name = "Chapel"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"AK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/item/clothing/mask/breath,/obj/item/weapon/rig/eva/equipped,/obj/machinery/door/window/brigdoor/eastright{req_access = list(11,24)},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"AL" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"AM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"AN" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/library) +"AO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"AP" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"AQ" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"AR" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"AS" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"AT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm5) +"AV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"AW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"AX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"AY" = (/turf/simulated/wall/bay/r_wall/black,/area/chapel/main) +"AZ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ba" = (/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Bb" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Bd" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Be" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Bf" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_port) +"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Bj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Bk" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Bl" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Bm" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Bo" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/paper{desc = ""; info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; name = "note to science staff"},/obj/item/device/robotanalyzer,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/mmi/digital/posibrain,/obj/item/device/mmi,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"Br" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Bs" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"Bt" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Bu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Bv" = (/obj/structure/table/reinforced,/obj/item/device/reagent_scanner,/obj/item/device/mass_spectrometer/adv,/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Bw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"Bx" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/library) +"By" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Bz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"BA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/directions/security{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"BB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"BC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"BD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#333333"; name = "Shuttle Bay"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"BE" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"BF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "m-ex-room"; name = "Exam Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/exam_room) +"BG" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"BH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"BI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"BJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"BK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"BL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"BM" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"BN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"BO" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"BP" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"BQ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"BR" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"BS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/filingcabinet,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"BT" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"BU" = (/turf/simulated/wall/bay/black,/area/chapel/main) +"BV" = (/obj/machinery/disease2/incubator,/obj/structure/reagent_dispensers/virusfood{pixel_y = 27},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"BW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"BX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"BY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Ca" = (/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Cb" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 1; pixel_x = 25; pixel_y = -24},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Cc" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Cf" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Cg" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ch" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ci" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"Ck" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) +"Cl" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Cm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Cn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Co" = (/obj/structure/bed/chair/sofa/corp/left{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Cp" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Cr" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"Cs" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardcent) +"Ct" = (/turf/simulated/wall/bay/r_wall/purple,/area/assembly/robotics) +"Cu" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Cv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Cw" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Cx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"CA" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall1"; name = "Toilet 1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"CB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"CC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"CD" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/security/security_equiptment_storage) +"CE" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/button/remote/blast_door{dir = 8; id = "securitylockdown"; name = "Brig Lockdown"; pixel_x = 26; pixel_y = -7},/obj/machinery/button/remote/blast_door{dir = 8; id = "armorydoor"; name = "Armory"; pixel_x = 26; pixel_y = 9},/obj/machinery/button/remote/blast_door{dir = 8; id = "wardenoffice"; name = "Privacy Shutters"; pixel_x = 37; pixel_y = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"CG" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/resleeving) +"CI" = (/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/warden) +"CJ" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/virology,/obj/item/device/antibody_scanner,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"CK" = (/obj/machinery/button/remote/blast_door{id = "explowindowlockdown"; name = "Window Lockdown"; pixel_y = 25},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"CL" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"CM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block/C) +"CO" = (/obj/structure/table/woodentable,/obj/machinery/librarycomp,/turf/simulated/floor/carpet,/area/library) +"CP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"CQ" = (/obj/structure/table/steel_reinforced,/obj/machinery/requests_console/preset/security{pixel_y = 30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/red,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"CR" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"CS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"CT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 32},/obj/structure/table/standard,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"CV" = (/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"CW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"CX" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"CY" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/drinkbottle,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"CZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Da" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "EMT Bay"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/paramedic) +"Db" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/storage) +"Dc" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Dd" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"De" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"Df" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"Dg" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "bodieshitthefloor"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/chapel_morgue) +"Di" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"Dj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Dk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Dl" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Dm" = (/obj/structure/bed/chair/backed_red,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Dn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"Do" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Dp" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 10},/obj/structure/sign/directions/library{dir = 4; pixel_x = -32; pixel_y = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Dq" = (/obj/machinery/newscaster{pixel_x = -29},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Ds" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Robotics Lab"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Dv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Dw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Dx" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"Dy" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Dz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DA" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"DC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DD" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"DE" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"DF" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block/C) +"DG" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"DH" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora_storage) +"DI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"DJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DK" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"DL" = (/obj/structure/closet/secure_closet/xenoarchaeologist,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"DN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"DO" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"DP" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"DQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"DS" = (/turf/simulated/wall/bay/red,/area/prison/cell_block) +"DV" = (/obj/machinery/suit_cycler/pilot,/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"DW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"DY" = (/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/command{pixel_x = 32},/obj/structure/sign/directions/bar{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/stairs_up{pixel_x = 32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"Eb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"Ec" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ee" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Ef" = (/turf/space/internal_edge/top,/area/stellardelight/deck1/starboard) +"Eg" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) +"Eh" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/armoury) +"Ei" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 1; pixel_x = -32; pixel_y = -25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"Ek" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"En" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) +"Ep" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Eq" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Er" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenospace6"; name = "6 Space Door"; pixel_x = 10; pixel_y = -21; req_access = list(55)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Es" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Et" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Civilian Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/civilian) +"Eu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Ev" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Ew" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Ex" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Ey" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ez" = (/obj/structure/table/reinforced,/obj/item/stack/material/phoron{amount = 6},/obj/machinery/reagentgrinder{pixel_y = 11},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"EA" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"EB" = (/obj/machinery/door/window/eastright{dir = 8; name = "Virology Isolation Room Two"; req_one_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"EC" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ED" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"EG" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"EH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"EI" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"EJ" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/shuttlebay) +"EK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"EM" = (/obj/structure/table/rack,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"EN" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"EO" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"EP" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"EQ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ER" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm8) +"ES" = (/obj/machinery/mass_driver{dir = 8; id = "torpedolauncher"},/obj/structure/sign/vacuum{pixel_y = 32},/turf/simulated/floor/airless,/area/chapel/chapel_morgue) +"ET" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"EU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/library) +"EV" = (/obj/structure/stairs/spawner/south,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"EW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"EX" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"EY" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"EZ" = (/turf/space/internal_edge/bottomright,/area/stellardelight/deck1/starboard) +"Fa" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Fb" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/library) +"Fc" = (/obj/machinery/vending/wardrobe/scidrobe,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"Fd" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Fe" = (/turf/simulated/wall/bay/red,/area/security/detectives_office) +"Ff" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Fh" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Fi" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Fj" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Fk" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Fl" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Fm" = (/obj/structure/morgue{dir = 2},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Fn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/researchhall) +"Fo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portfore) +"Fp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#8c1d11"; name = "maintenance access"; req_one_access = list(1); stripe_color = "#8c1d11"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/security_port) +"Fq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Fr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Fs" = (/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ft" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Fu" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Unisex Restrooms"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"Fv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Fw" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office) +"Fx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Fy" = (/obj/structure/flora/pottedplant/orientaltree,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/janitor) +"FA" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"FB" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"FC" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/tiled/dark,/area/security/warden) +"FD" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/black,/obj/structure/sign/department/armory{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"FE" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"FF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"FG" = (/turf/simulated/wall/bay/white,/area/medical/patient_wing) +"FH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"FI" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"FK" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"FL" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) +"FM" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"FN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"FO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"FP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"FQ" = (/obj/structure/morgue{dir = 2},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"FR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"FT" = (/turf/simulated/wall/bay/brown,/area/library) +"FU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"FV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/contraband,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"FW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"FX" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"FY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"FZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Ga" = (/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock,/turf/space,/area/space) +"Gb" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Gc" = (/obj/machinery/requests_console/preset/research{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Gd" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"Ge" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Gh" = (/obj/machinery/hologram/holopad,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Gi" = (/obj/structure/closet{name = "Forensics Gear"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Gj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Gl" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Gm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell A"; name = "Cell A"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block) +"Gn" = (/obj/machinery/disease2/diseaseanalyser,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Go" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Gp" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Gq" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Gr" = (/turf/simulated/wall/bay/r_wall/red,/area/security/tactical) +"Gu" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"Gv" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Gy" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"GA" = (/obj/machinery/light,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"GB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"GC" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"GD" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"GE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"GF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Research"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"GG" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/bodybags,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"GI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/researchhall) +"GK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"GL" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"GM" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/security/armoury) +"GN" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GP" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/valve/digital{dir = 4; name = "supply isolation valve"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/security/armoury) +"GQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GR" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"GS" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"GT" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Security"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"GU" = (/obj/machinery/vending/wardrobe/robodrobe,/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"GV" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"GX" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"GZ" = (/obj/machinery/vending/loadout/uniform,/obj/structure/sign/painting/library_secure{pixel_y = 30},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"Ha" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Hb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#a6753d"; name = "Shuttle Bay"; req_access = list(31); req_one_access = null; stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"Hc" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Hd" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"He" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/explobriefing) +"Hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/backed_red{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Hg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Security"; sortType = "Security"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Hi" = (/obj/machinery/computer/timeclock/premade/west,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Hj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"Hk" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"Hl" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Hn" = (/obj/machinery/mineral/processing_unit_console{density = 0; pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Hp" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/department/sci{pixel_x = 32; pixel_y = 32},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Hq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Hr" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"Ht" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Hu" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Hv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Hw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"Hx" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"Hz" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 1; pixel_y = 4},/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 2; pixel_y = -6},/obj/machinery/camera/network/security{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"HA" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"HB" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"HC" = (/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"HD" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/energy/taser/xeno,/obj/item/weapon/gun/energy/taser/xeno,/obj/item/weapon/melee/baton/slime/loaded,/obj/item/weapon/melee/baton/slime/loaded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"HE" = (/obj/machinery/conveyor{id = "miningops"},/obj/machinery/mineral/input,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"HF" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/machinery/door/window/brigdoor/eastleft{dir = 2},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"HG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"HH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm2) +"HI" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"HK" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"HL" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"HN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"HO" = (/obj/structure/bed/chair/comfy/black,/obj/structure/sign/painting/public{pixel_y = 30},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"HP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/sign/department/morgue{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"HR" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"HS" = (/obj/structure/table/woodentable,/obj/machinery/microwave{pixel_y = 7},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"HV" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"HW" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"HX" = (/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Room 1 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"HY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"HZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ib" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Ic" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Ie" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"If" = (/obj/structure/closet/secure_closet/brig{id = "Cell B"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"Ig" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"Ih" = (/obj/structure/closet{name = "robotics equipment"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/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,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/glasses/omnihud/rnd,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Ii" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Ik" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Il" = (/obj/structure/table/steel_reinforced,/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/pink{icon_state = "4-8"},/obj/item/device/radio{pixel_x = -4; pixel_y = -4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = -4; pixel_y = 5},/obj/item/device/radio{pixel_x = 4; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Im" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"In" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Io" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/suit_cycler/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ip" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Iq" = (/obj/effect/floor_decal/milspec/color/red,/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Ir" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Is" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Iu" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; door_color = "#525252"; name = "EVA Shuttle"; req_one_access = list(18,19,43); stripe_color = "#408f3b"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospheric_field_generator/perma/underdoors,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploshuttle) +"Iw" = (/obj/random/vendorfood,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"Ix" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Iy" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Iz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"IA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"IB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"IC" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm4) +"ID" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/effect/floor_decal/borderfloorblack/full,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"IE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"IG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"IH" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"IJ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/valve/digital{dir = 4; name = "scrubber isolation valve"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/security/armoury) +"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"IL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"IM" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"IN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"IO" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"IP" = (/obj/machinery/r_n_d/protolathe{dir = 1},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"IQ" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"IR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"IS" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"IT" = (/turf/space/internal_edge/bottom,/area/stellardelight/deck1/starboard) +"IU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"IV" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"IW" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"IX" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"IY" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/toilet) +"IZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm8) +"Jb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Jc" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Jd" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Je" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Jg" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"Jh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Jj" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Jk" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Jl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"Jn" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Jo" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Jp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Atmospherics Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/atmospherics) +"Jq" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/remote/airlock{dir = 4; id = "m-ex-room"; name = "Exam Room Lock"; pixel_x = -30; pixel_y = -8; specialfunctions = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Js" = (/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm7) +"Jt" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Jv" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/port) +"Jw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Jx" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Jz" = (/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"JA" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"JC" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/machinery/door/window/brigdoor{req_access = list(11,24)},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"JD" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"JE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"JF" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/starboard) +"JH" = (/obj/structure/bed/chair/sofa/corp/left,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"JI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"JJ" = (/turf/simulated/wall/bay/r_wall{desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#5a19a8"},/area/gateway) +"JK" = (/obj/machinery/door/firedoor,/obj/item/weapon/folder/white,/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Research Desk"; req_access = list(7); req_one_access = list(47)},/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"JM" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"JN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"JO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"JP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"JQ" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora) +"JR" = (/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"JS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) +"JT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"JU" = (/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"JV" = (/obj/item/slime_extract/grey,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"JW" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"JX" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"JY" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Ka" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"Kb" = (/obj/machinery/conveyor{id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Kc" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/transhuman/autoresleever,/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{external_pressure_bound = 101.3; external_pressure_bound_default = 101.3; pressure_checks = 1; pressure_checks_default = 1},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"Kd" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/status_display{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ke" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/obj/machinery/door/window/brigdoor/eastleft{req_access = list(43)},/obj/item/device/mapping_unit,/obj/item/device/cataloguer,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Kf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Kg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm6"; name = "Room 6"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm6) +"Ki" = (/obj/structure/toilet{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Kj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Kk" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"Kl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"Km" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ko" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Kp" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"Kq" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/camera,/obj/item/device/retail_scanner/civilian,/obj/structure/sign/painting/library_private{pixel_y = 32},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/wood,/area/library) +"Kr" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Ks" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Kt" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Ku" = (/turf/simulated/wall/bay{desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#5a19a8"},/area/gateway) +"Kv" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Kw" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "explodocker"; pixel_x = 24},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Ky" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Kz" = (/obj/machinery/button/remote/airlock{id = "bathroomstall2"; name = "Toilet 2 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"KA" = (/obj/machinery/vending/wardrobe/janidrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/monotile,/area/janitor) +"KB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"KC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"KD" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmospherics Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"KF" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm6) +"KG" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"KH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"KI" = (/obj/machinery/button/remote/driver{id = "torpedolauncher"; pixel_y = 27},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"KJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"KK" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sink/kitchen{pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"KL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"KM" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"KN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"KO" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"KP" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"KQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"KR" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"KS" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"KT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"KU" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"KV" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"KW" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"KX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"KY" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"KZ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"La" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Lc" = (/obj/machinery/door_timer/cell_3{id = "Cell B"; name = "Cell B"; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Brig"; req_access = null; req_one_access = list(38,63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"Lf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Lg" = (/turf/simulated/wall/bay/r_wall/steel,/area/chapel/chapel_morgue) +"Lh" = (/obj/effect/floor_decal/chapel,/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Li" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"Lj" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -11},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/monotile,/area/janitor) +"Lk" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Ll" = (/obj/structure/bed/chair/bay/shuttle{dir = 1},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Lm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ln" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Lo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Lp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Lq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Lr" = (/obj/structure/bed/chair/wheelchair{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Ls" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Lt" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Lu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Lv" = (/obj/machinery/conveyor{id = "miningops"},/obj/machinery/mineral/output,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Lw" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"Lx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"Ly" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"LA" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"LD" = (/obj/structure/table/reinforced,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"LE" = (/obj/structure/sign/directions/evac{pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"LF" = (/turf/simulated/wall/bay/purple,/area/maintenance/stellardelight/deck1/starboardaft) +"LG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora) +"LH" = (/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Morgue"; req_access = list(6,27); stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/chapel_morgue) +"LJ" = (/obj/machinery/button/remote/blast_door{id = "GatewayShutter"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"LK" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"LL" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LM" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"LN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"LO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"LP" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"LQ" = (/obj/machinery/door/blast/angled{id = "xenobiodiv4"; name = "Divider 4 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"LR" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"LT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Research Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/research) +"LU" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"LV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm/angled,/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Resleeving"; sortType = "Resleeving"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"LW" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"LX" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"LY" = (/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/library) +"LZ" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/exploration) +"Ma" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; door_color = "#a88860"; name = "Mining Shuttle"; req_access = null; req_one_access = list(31,5); stripe_color = "#69461a"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospheric_field_generator/perma/underdoors,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/miningshuttle) +"Mb" = (/turf/simulated/floor/tiled/dark,/area/security/warden) +"Mc" = (/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/security/armoury) +"Md" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Me" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"Mf" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Mg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/rnd/workshop) +"Mh" = (/turf/space/internal_edge/topleft,/area/stellardelight/deck1/starboard) +"Mi" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Mj" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Morgue"; req_access = null; stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"Mk" = (/obj/machinery/light{dir = 8},/obj/machinery/button/remote/blast_door{id = "chapelmassdriver"; name = "Window Lockdown"; pixel_y = 27; req_one_access = list(6,27)},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ml" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Mm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atm{pixel_y = 30},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Mn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Ms" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/structure/curtain/open/privacy{name = "shower curtain"},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Mt" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Mu" = (/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Mv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"My" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"MA" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"MB" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/security{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"MC" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"MD" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ME" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"MF" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"MG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/miner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"MH" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"MI" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"MJ" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"MK" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"ML" = (/obj/structure/bed/chair/sofa/corp/right{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"MM" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"MN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm6) +"MO" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall2"; name = "Toilet 2"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"MP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-4"},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"MQ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = 25; pixel_y = -24},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"MR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Xenoflora Research"; req_access = list(77); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology/xenoflora_storage) +"MS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#8c1d11"; name = "maintenance access"; req_access = list(4); req_one_access = null; stripe_color = "#8c1d11"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"MT" = (/obj/machinery/suit_cycler/engineering{req_access = null},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"MV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Exploration Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/exploration) +"MX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"MZ" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Nb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Nc" = (/turf/simulated/wall/bay/r_wall/red,/area/maintenance/security_port) +"Nd" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"Ne" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "processinglockdown"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/security_processing) +"Nf" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ng" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/lowermed) +"Nh" = (/obj/machinery/light/small,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Ni" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Warden's Office"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Nj" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Nk" = (/obj/structure/table/reinforced,/obj/machinery/microscope,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Nl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Nm" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"No" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Np" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Nq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Nr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 32},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"Ns" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Mining Equipment"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/miningequipment) +"Nt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Nu" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Nv" = (/obj/machinery/light{dir = 4},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Nw" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/folder/white,/obj/item/device/healthanalyzer,/obj/item/weapon/cane,/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Nx" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/expedition_medical,/obj/item/clothing/head/helmet/space/void/expedition_medical,/obj/machinery/door/window/brigdoor/eastleft{req_access = list(5)},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Nz" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"NA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"NB" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"NC" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/janitor) +"ND" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"NF" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet,/area/library) +"NG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"NH" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck1/shower) +"NI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"NJ" = (/obj/effect/shuttle_landmark/premade/sd/deck1/fore,/turf/space,/area/space) +"NK" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"NL" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"NM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"NN" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"NP" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portaft) +"NQ" = (/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"NR" = (/obj/machinery/mech_recharger,/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/gateway) +"NS" = (/obj/structure/stairs/spawner/west,/obj/structure/railing/grey{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "16-0"},/turf/simulated/floor,/area/stellardelight/deck1/mining) +"NT" = (/turf/space/internal_edge/topright,/area/stellardelight/deck1/starboard) +"NV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"NW" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"NX" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen4"; name = "Pen 4 Containment"; pixel_x = 31; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen6"; name = "Pen 6 Containment"; pixel_x = 30; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 4; id = "xenobiodiv4"; name = "Divider 4 Blast Doors"; pixel_x = 39; req_access = list(55)},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"NY" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/exploration) +"NZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Oa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/milspec/color/emerald/half,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ob" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Oc" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Od" = (/obj/machinery/light,/obj/structure/sign/department/medbay{name = "RESLEEVING"; pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Oe" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Og" = (/obj/machinery/optable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Oh" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Oj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Ok" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ol" = (/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/item/device/gps/medical{pixel_y = 3},/obj/item/device/gps/medical{pixel_x = -3},/obj/item/device/radio{pixel_x = 2},/obj/item/device/radio{pixel_x = -1; pixel_y = -3},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"Om" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Cargo"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"On" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Oo" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Op" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/clothing/suit/space/void/medical,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/head/helmet/space/void/medical,/obj/machinery/door/window/brigdoor/westleft{dir = 2; req_access = list(5)},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Oq" = (/obj/machinery/door/blast/angled{id = "xenobiodiv1"; name = "Divider 1 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Or" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ot" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/catwalk_plated/dark,/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"Ou" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ov" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ow" = (/obj/machinery/gateway{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Ox" = (/obj/structure/closet,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Oy" = (/obj/structure/morgue/crematorium{dir = 2; id = "crematorium"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Oz" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"OA" = (/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm2) +"OB" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"OC" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"OD" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"OF" = (/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"OG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"OH" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"OI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Equipment Room"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/researchequip) +"OJ" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"OL" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"OM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"ON" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/evac{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"OO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"OQ" = (/turf/simulated/wall/bay/brown,/area/security/detectives_office) +"OR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"OT" = (/turf/simulated/wall/rshull,/area/stellardelight/deck1/exploshuttle) +"OU" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"OV" = (/obj/machinery/computer/rdservercontrol{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"OX" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"OY" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"OZ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Pa" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/camera/network/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Pb" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/main) +"Pd" = (/obj/machinery/light/small{dir = 1},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Pg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/lino,/area/chapel/office) +"Ph" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Pj" = (/obj/machinery/door_timer/cell_3{id = "Cell A"; name = "Cell A"; pixel_x = 32; pixel_y = 32},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Pk" = (/obj/machinery/light{dir = 8},/obj/random/slimecore,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Pl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"Pm" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Pn" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{dir = 8; id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Po" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Pp" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Pr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Ps" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/stellardelight/deck1/oreprocessing) +"Pt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Pu" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Pw" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Pz" = (/obj/structure/table/bench/marble,/obj/effect/landmark/start/paramedic,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"PA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm4) +"PB" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"PC" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PE" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"PG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"PH" = (/obj/structure/janitorialcart,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"PJ" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"PL" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"PM" = (/turf/simulated/wall/bay/r_wall/steel,/area/janitor) +"PN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PO" = (/obj/effect/floor_decal/milspec/color/red/corner{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"PP" = (/obj/structure/closet/crate,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"PQ" = (/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/storage/lockbox/vials,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/masks,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/soap/nanotrasen,/obj/structure/closet/walllocker_double/medical/east,/obj/item/weapon/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"PR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"PS" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"PU" = (/obj/machinery/button/remote/airlock{id = "bathroomstall3"; name = "Toilet 3 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"PV" = (/obj/machinery/light/small,/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"PW" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"PX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"PY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"PZ" = (/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Civilian"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"Qa" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Qb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/airlock_sensor{id_tag = "ex_sensor"; pixel_y = 24},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Qc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Qd" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Qe" = (/obj/machinery/alarm/angled,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Qf" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Qg" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/obj/machinery/button/remote/blast_door{id = "processinglockdown"; name = "Window Lockdown"; pixel_x = -5; req_access = list(1)},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Qh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Qi" = (/turf/simulated/wall/bay/r_wall{desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#8c1d11"},/area/security/tactical) +"Qj" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Qk" = (/turf/simulated/wall/bay/red,/area/prison/cell_block/C) +"Ql" = (/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Atmospherics"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"Qm" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Qp" = (/obj/structure/table/glass,/obj/item/device/healthanalyzer,/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Qq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Qr" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Medical Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/medical) +"Qt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Qu" = (/turf/simulated/wall/bay{desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#8c1d11"},/area/security/security_processing) +"Qv" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Qw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "security_airlock"; name = "exterior access button"; pixel_x = -32; req_access = list(1)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "security_exterior"; locked = 1; name = "Security Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"Qx" = (/obj/machinery/gateway,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Qy" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Qz" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"QA" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"QC" = (/turf/simulated/wall/bay/red,/area/security/lobby) +"QD" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"QE" = (/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"QF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"QG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#8c1d11"; id_tag = "BrigFoyer"; name = "Security"; req_one_access = list(38,63); stripe_color = "#d27428"},/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"QH" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"QI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"QJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QK" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor,/area/stellardelight/deck1/mining) +"QM" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"QO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/trackimp{pixel_y = -4},/obj/item/weapon/storage/box/trackimp{pixel_x = 5; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/black,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"QQ" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"QR" = (/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"QU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"QV" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/security/security_equiptment_storage) +"QZ" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Ra" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Rb" = (/obj/structure/bed/padded,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Rc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Office"; req_access = list(22); stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/office) +"Rd" = (/obj/structure/bed/chair/wood/wings,/obj/effect/landmark/start/chaplain,/turf/simulated/floor/lino,/area/chapel/office) +"Re" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Rf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Rg" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Rh" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Medical Subgrid"; name_tag = "Medical Subgrid"},/obj/structure/cable/white,/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Ri" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall3"; name = "Toilet 3"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"Rj" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Rk" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Rl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Rm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/button/remote/blast_door{dir = 4; id = "researchwindowlockdown"; name = "Window Lockdown"; pixel_x = -24; pixel_y = 23},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Rn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "resleeveexit"; name = "Resleeving Lab"; req_access = list(5); stripe_color = "#5a96bb"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"Ro" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "librarywindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/library) +"Rq" = (/obj/structure/janitorialcart,/obj/machinery/requests_console/preset/janitor{pixel_y = 30},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"Rr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Rs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Exploration Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/exploration) +"Rt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; req_access = list(26); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/janitor) +"Ru" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/machinery/door/window/brigdoor{dir = 2},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Rv" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Rw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "security_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; id_tag = "security_airlock"; pixel_x = -24; req_one_access = list(1); tag_airpump = "security_airpump"; tag_chamber_sensor = "security_sensor"; tag_exterior_door = "security_exterior"; tag_interior_door = "security_interior"},/obj/machinery/airlock_sensor{dir = 8; id_tag = "security_sensor"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/security/tactical) +"Ry" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"Rz" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"RA" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"RB" = (/obj/machinery/gateway{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"RC" = (/turf/simulated/wall/bay/red,/area/security/warden) +"RE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"RF" = (/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"RG" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"RH" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"RI" = (/turf/space/internal_edge/bottomleft,/area/stellardelight/deck1/starboard) +"RJ" = (/obj/machinery/light{dir = 4},/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"RK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/disposal/wall/cleaner{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"RL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"RM" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"RN" = (/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"RP" = (/obj/structure/table/rack,/obj/item/weapon/rig/medical/equipped,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"RQ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/sign/department/chapel{pixel_x = -32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"RR" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/botany/editor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"RS" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/explobriefing) +"RT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "resleeveclean"; name = "Cleaning Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"RV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"RX" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"RY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"RZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Sa" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Sb" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Sc" = (/turf/simulated/wall/bay/r_wall/purple,/area/maintenance/stellardelight/deck1/starboardaft) +"Sd" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Se" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Sf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Sg" = (/obj/machinery/vending/wardrobe/chapdrobe,/turf/simulated/floor/lino,/area/chapel/office) +"Sh" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Si" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"Sj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Sk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"Sl" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"Sn" = (/obj/structure/flora/pottedplant/orientaltree,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Sq" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Sr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Ss" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"St" = (/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Su" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Sv" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Sx" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"Sy" = (/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Sz" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"SA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/main) +"SB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"SC" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/security) +"SD" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"SE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"SF" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"SG" = (/obj/machinery/vending/wallmed1/public{pixel_x = 29},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"SH" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = -24; pixel_y = 25},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"SI" = (/obj/machinery/computer/security{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"SJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32},/obj/structure/sign/directions/science{dir = 6; pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"SL" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"SM" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"SN" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"SO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_y = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"SP" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm3"; name = "Room 3 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"SQ" = (/turf/simulated/floor/lino,/area/chapel/office) +"SR" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace6"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"SS" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"ST" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"SU" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"SV" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"SW" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"SX" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"SY" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 25},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"SZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ta" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"Tb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Tc" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Td" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portcent) +"Te" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser{pixel_x = -1; pixel_y = 2},/obj/item/weapon/gun/energy/laser{pixel_x = -1; pixel_y = -11},/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 9},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Tf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Tg" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Th" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Ti" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Tj" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Tk" = (/obj/structure/bed/chair/comfy/black,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"Tl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Xenoflora Research"; req_access = list(77); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology/xenoflora) +"Tm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"Tn" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"To" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Tp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Xenobiology"; req_access = null; req_one_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology) +"Tq" = (/obj/structure/cable/white,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Medical"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Tr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Ts" = (/obj/machinery/door/blast/angled{id = "xenobiodiv2"; name = "Divider 2 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Tv" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"Tw" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 4; plane = -34},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"Tx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm3"; name = "Room 3"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm3) +"Ty" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"TC" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"TD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TE" = (/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"TF" = (/obj/structure/bed/chair/sofa/corp/right{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"TG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"TH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "processinglockdown"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/security_processing) +"TI" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"TJ" = (/obj/structure/stairs/spawner/south,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"TK" = (/obj/machinery/clonepod/transhuman,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"TL" = (/obj/machinery/alarm/angled,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"TM" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/pink{icon_state = "1-4"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"TN" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"TO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/science{dir = 6; pixel_x = -32},/obj/structure/sign/directions/science{dir = 5; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 10; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"TP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"TQ" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"TR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TS" = (/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/contraband,/obj/random/mre,/turf/simulated/floor,/area/maintenance/security_port) +"TT" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"TU" = (/obj/structure/closet/coffin,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"TV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/table/rack,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/machinery/alarm/angled{dir = 4},/obj/item/paint_palette,/obj/item/paint_brush,/turf/simulated/floor/wood,/area/library) +"TW" = (/obj/machinery/door/blast/angled{dir = 4; id = "chapelmassdriver"},/turf/simulated/floor/airless,/area/chapel/chapel_morgue) +"TX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "recoveryexit"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"TY" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"TZ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ua" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/exploration) +"Ub" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portcent) +"Uc" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/obj/structure/table/bench/sifwooden/padded,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = -32},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ud" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Ue" = (/obj/machinery/light_switch{pixel_y = 25},/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Uf" = (/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/warden) +"Uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/library) +"Uj" = (/obj/structure/table/woodentable,/obj/random/paicard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"Uk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ul" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Um" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Un" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Uo" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Up" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Uq" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Ur" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Us" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"Ut" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 2"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 2"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Uu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Uv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Uw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ux" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Uy" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"Uz" = (/obj/structure/bookcase/bookcart,/turf/simulated/floor/carpet,/area/library) +"UA" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"UB" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-4"},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"UD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"UE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"UF" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"UG" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UH" = (/turf/simulated/floor/tiled/dark,/area/chapel/main) +"UI" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"UJ" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UK" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"UL" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Atmospherics Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/atmospherics) +"UM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/rack,/obj/random/action_figure,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"UN" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large/default,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"UP" = (/obj/machinery/light/small{dir = 1},/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/structure/table/rack,/obj/random/contraband,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/security_port) +"UQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"US" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/glasses/hud/security,/obj/item/clothing/glasses/hud/security,/obj/item/clothing/glasses/hud/security,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"UT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"UU" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UV" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen1"; name = "Pen 1 Containment"; pixel_x = -30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen3"; name = "Pen 3 Containment"; pixel_x = -31; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 8; id = "xenobiodiv1"; name = "Divider 1 Blast Doors"; pixel_x = -39; req_access = list(55)},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"UW" = (/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"UX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Research Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/research) +"UY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"UZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Va" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Vb" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/medical) +"Vc" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Vd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ve" = (/turf/simulated/wall/bay/r_wall/steel,/area/prison/cell_block) +"Vf" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Vg" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"Vh" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/pilot) +"Vi" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Vl" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 6"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 6"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Vm" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/shuttle_landmark/shuttle_initializer/mining,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"Vn" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/stellardelight/deck1/shuttlebay) +"Vo" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Vp" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance,/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures,/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,/obj/item/weapon/book/custom_library/reference/securityguidelines,/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/bar_guide,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/book/manual/casino,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/cook_guide,/obj/item/weapon/book/manual/detective,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/engineering_hacking,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/weapon/book/manual/evaguide,/obj/item/weapon/book/manual/excavation,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/book/manual/mass_spectrometry,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/medical_cloning,/obj/item/weapon/book/manual/medical_diagnostics_manual,/obj/item/weapon/book/manual/research_and_development,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/ripley_build_and_repair,/obj/item/weapon/book/manual/robotics_cyborgs,/obj/item/weapon/book/manual/robotics_manual,/obj/item/weapon/book/manual/rust_engine,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/weapon/book/manual/tesla_engine,/obj/item/weapon/book/manual/virology,/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/library) +"Vq" = (/obj/machinery/computer/centrifuge,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = -28; pixel_y = -16; tag_exterior_door = "virology_airlock_exterior"; tag_interior_door = "virology_airlock_interior"},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Vr" = (/obj/machinery/camera/network/security{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Vs" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"Vt" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Vu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Vv" = (/obj/machinery/button/remote/airlock{id = "dorm7"; name = "Room 7 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Vw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"Vx" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Vy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Vz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"VA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "EMT Bay"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/paramedic) +"VB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"VC" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"VD" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/bar{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/command{pixel_x = -32},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_up{pixel_x = -32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"VE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"VF" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VG" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VH" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"VI" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/vest/wolftaur{pixel_x = 4; pixel_y = 7},/obj/item/clothing/suit/armor/vest/wolftaur{pixel_x = -8; pixel_y = -4},/obj/item/weapon/storage/lockbox,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"VJ" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"VK" = (/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance,/obj/random/medical,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"VL" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"VM" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/black,/area/chapel/chapel_morgue) +"VN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"VP" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"VQ" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/miningshuttle) +"VR" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"VS" = (/obj/machinery/gateway{dir = 1},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"VT" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"VV" = (/turf/simulated/wall/bay/red,/area/chapel/office) +"VW" = (/obj/machinery/vending/wardrobe/detdrobe,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"VY" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"VZ" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"Wa" = (/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Room 2 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Wb" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Wc" = (/obj/machinery/smartfridge/produce,/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora_storage) +"Wd" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"We" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Wf" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/coin/sometimes,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Wg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Wh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Wi" = (/obj/machinery/camera/network/research/xenobio{dir = 9; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Wj" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"Wl" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"Wm" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Wn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm7"; name = "Room 7"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm7) +"Wo" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Wp" = (/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = -32},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Wq" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ws" = (/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wt" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Wu" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardaft) +"Wv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Ww" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardaft) +"Wx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Wy" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Wz" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WA" = (/obj/machinery/conveyor_switch/oneway{id = "miningops"; name = "Mining Ops conveyor switch"; pixel_x = 10; pixel_y = 5; req_access = list(48); req_one_access = list(48)},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"WB" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"WC" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"WD" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"WE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"WF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WG" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block/B) +"WH" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"WJ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/painting/library_secure{pixel_y = 30},/obj/machinery/photocopier/faxmachine{department = "Library Conference Room"},/turf/simulated/floor/wood,/area/library) +"WK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WL" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/chapel/chapel_morgue) +"WM" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/explobriefing) +"WP" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/machinery/mineral/output,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"WQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/mining/brace,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"WR" = (/turf/simulated/wall/bay/purple,/area/rnd/research) +"WS" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"WT" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"WU" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"WW" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"WX" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"WY" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"WZ" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Xa" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Xb" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"Xd" = (/obj/machinery/alarm/angled,/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Xe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Xf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Xg" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Xh" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/eastleft{name = "Warden's Desk"; req_access = list(3)},/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Xi" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Xj" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) +"Xk" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Xl" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Xm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Security Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/security) +"Xn" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"Xo" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Xp" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"Xq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Xr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/button/remote/blast_door{id = "mechbay"; name = "Mech Bay"; pixel_y = 25; req_access = list(29,47)},/obj/machinery/door/blast/angled{dir = 4; id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Xs" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Xt" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Xu" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Xv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/reagent_dispensers/foam,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Xw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink,/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Xx" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Xz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"XA" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"XB" = (/turf/simulated/wall/bay/r_wall/red,/area/security/security_equiptment_storage) +"XC" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"XD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"XE" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"XF" = (/obj/effect/floor_decal/milspec/color/emerald/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XG" = (/obj/structure/flora/pottedplant/dead,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"XH" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"XJ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XL" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/secure_closet/brig{id = "Cell A"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"XM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"XN" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"XO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Mech Bay"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"XP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"XQ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"XR" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/research) +"XS" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage) +"XT" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"XU" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "2-8"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"XV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/stellardelight/deck1/exploration) +"XW" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/mining,/obj/machinery/mining/drill/loaded,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"XX" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"XY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Ya" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Yb" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Yc" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Yd" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/security) +"Ye" = (/obj/structure/closet/secure_closet/hydroponics/sci{req_access = list(77)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Yf" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Yh" = (/obj/machinery/camera/network/mining{dir = 8},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Yi" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Yj" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Yk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ym" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Yn" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/medical,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Yo" = (/obj/structure/morgue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Yp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"Yq" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"Yr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Ys" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm5"; name = "Room 5 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Yt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Yu" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"Yv" = (/turf/simulated/wall/bay/black,/area/chapel/office) +"Yw" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Yx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Yy" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 5},/obj/structure/sign/vacuum{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Yz" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"YA" = (/obj/structure/bookcase{desc = "There appears to be a shrine to WGW at the back..."; name = "Forbidden Knowledge"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/painting/library_private{pixel_y = 32},/obj/structure/sign/painting/library_private{pixel_x = -32},/obj/item/weapon/book/manual/engineering_hacking,/obj/item/weapon/book/manual/nuclear,/obj/item/weapon/book/custom_library/fiction/woodysgotwood,/turf/simulated/floor/wood,/area/library) +"YB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"YC" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"YE" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"YF" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm7) +"YG" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Refinery"; req_access = list(48); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/oreprocessing) +"YH" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/chapel/office) +"YI" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"YJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"YK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#8c1d11"; fill_color = "#854a44"; name = "Armory"; req_access = list(3); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/armoury) +"YL" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/structure/sign/department/robo{pixel_y = 32},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/machinery/door/window/brigdoor/westleft{dir = 4; name = "Robotics Desk"; req_access = list(7); req_one_access = list(47)},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"YM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/gateway) +"YN" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"YO" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/camera/network/security{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"YP" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"YQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/mining{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"YR" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"YS" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"YT" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"YV" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"YW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"YX" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/firealarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"YY" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"YZ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/swabs{layer = 5},/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Za" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Zb" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Zc" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Zd" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"Ze" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/chapel_morgue) +"Zf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"Zg" = (/obj/structure/closet/secure_closet/miner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"Zh" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Zi" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Zj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell C"; name = "Cell C"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block/C) +"Zk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Zl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Zn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "wardenoffice"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/warden) +"Zo" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Zp" = (/obj/machinery/button/remote/blast_door{dir = 4; id = "GatewayShutterE"; name = "EVA Shutter"; pixel_x = -23; req_one_access = list(18,19,43,67)},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Zq" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Zr" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutter Control"; pixel_y = 2},/obj/item/device/robotanalyzer,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Zs" = (/obj/structure/table/woodentable,/obj/structure/sign/painting/chapel_secure{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/lino,/area/chapel/office) +"Zt" = (/turf/simulated/floor,/area/stellardelight/deck1/fore) +"Zu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Zv" = (/turf/simulated/wall/bay/r_wall/red,/area/security/detectives_office) +"Zw" = (/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Zx" = (/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_y = -33; req_access = list(39)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; frequency = 1379; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"Zy" = (/obj/machinery/photocopier,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"Zz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ZA" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"ZB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ZC" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ZD" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/vest/alt{pixel_x = -4; pixel_y = -6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = 6; pixel_y = -6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = -4; pixel_y = 6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = 6; pixel_y = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"ZE" = (/obj/structure/stairs/spawner/south,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"ZF" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"ZG" = (/turf/simulated/wall/bay/r_wall/red,/area/security/security_lockerroom) +"ZI" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ZJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ZK" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ZM" = (/obj/machinery/seed_extractor,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"ZN" = (/obj/machinery/light{dir = 1},/obj/machinery/mineral/equipment_vendor/survey,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ZO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/station_map{dir = 4; pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ZP" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"ZQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ZR" = (/obj/machinery/camera/network/security{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ZS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/cable/orange{icon_state = "16-0"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"ZT" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ZU" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"ZV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/department/chapel{pixel_x = -32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ZW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ZX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"ZY" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ZZ" = (/turf/simulated/wall/bay/purple,/area/rnd/xenobiology) (1,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(2,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(3,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(4,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(5,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(6,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(7,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(8,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(9,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(10,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(11,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(12,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(13,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(14,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(15,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(16,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(17,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(18,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(19,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(20,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(21,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(22,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(23,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Ga -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(24,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(25,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(26,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(27,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(28,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(29,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(30,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(31,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(32,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(33,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(34,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(35,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(36,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(37,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(38,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(39,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -ea -JE -JE -JE -JE -FP -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(40,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -SN -JE -JE -JE -JE -JE -sa -RF -hw -uq -uq -uq -uq -uq -uq -pz -JE -JE -GL -RF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(41,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -bD -ea -EG -RF -RF -uq -uq -uq -vX -JE -GL -RF -bD -bD -bD -bD -RF -RF -RF -RF -vF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(42,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -ib -kJ -kJ -kJ -kJ -kJ -kJ -Sd -RF -RF -RF -RF -uo -ga -bD -bD -ra -sW -Kk -ra -Vi -Gj -ra -ra -ra -ra -Vi -ra -ra -ra -uF -Vi -Vi -ra -ra -ra -ra -ra -ra -bD -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(43,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -RF -RF -DD -kJ -kJ -kJ -kJ -Ks -kJ -Sd -ra -ra -xM -qd -ra -Oz -Wx -iU -iU -iU -iU -iU -iU -KZ -vT -tE -Jo -BP -Cc -gw -xw -vT -Gy -ra -bD -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(44,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -RF -RF -RF -RF -uq -uq -YP -ra -ra -Qb -Zo -ra -Yn -vT -um -um -um -um -um -um -In -wm -Ag -Ly -wm -wm -rB -wm -Np -Oz -ra -RF -vF -uq -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(45,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -bD -bD -ra -YP -ZS -ra -pI -tx -ra -xl -rf -um -lI -Ql -KD -KP -um -if -WM -WM -WM -WM -WM -WM -WM -XD -WM -nk -RF -vF -bD -RF -RF -RF -uq -uq -et -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(46,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -bD -ra -ra -Km -fE -ra -zd -SW -ra -wU -PG -UL -EX -jm -ng -cC -um -if -WM -Cl -wq -mP -Lp -wk -sT -gS -Sn -nk -bD -hE -JE -JE -sa -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(47,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -ND -ag -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gc -nn -aK -aK -aK -aK -mC -uq -uq -uq -uq -uq -uq -uq -uq -uq -sy -nc -nc -nc -nc -hD -RF -uq -uq -uq -uq -uq -bD -ra -UB -jp -rl -RY -RY -FF -Xg -Ln -vn -um -um -um -um -Jp -um -if -WM -Rz -Rz -Uo -kg -kg -kg -ji -kO -He -JE -en -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(48,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gc -RF -bD -bD -uq -uq -uq -uq -bD -bD -nn -yE -uq -gH -RF -bD -bD -uq -uq -uq -uq -uq -uq -bD -bD -RF -ap -yE -uq -uq -uq -RF -gH -RF -bD -bD -uq -uq -uq -bD -bD -RF -yz -RF -uq -uq -uq -yz -RF -RF -bD -bD -uq -uq -uq -ra -yn -qq -aA -qq -sF -qq -qq -Yk -pP -qq -UQ -Tb -Mn -PL -DQ -XM -WM -Up -Rz -TC -zZ -yP -zZ -OB -Rz -ny -bD -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(49,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -Ul -Lg -TW -tL -tL -nM -nM -nM -Ak -iN -SA -xy -xy -as -Vu -Vu -xy -Vu -Vu -xy -Vu -Vu -Vu -xy -xy -Td -td -xW -xW -xW -xW -xW -Yd -Td -Td -NP -EH -EH -NP -NP -NP -NP -ek -NP -NP -NP -NP -ek -NP -NP -NP -NP -EH -EH -ra -ra -IL -wF -wF -wF -wF -wF -wF -vT -NI -Ua -Rs -Ua -Ua -Ua -Ua -Ec -WM -HS -Rz -TC -oZ -Zh -rt -OB -Rz -ny -uq -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(50,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -WL -Lg -ES -Ze -Mk -fZ -Ey -sd -Ak -mU -OG -xy -Ox -NW -cB -cB -FV -dS -kx -Zz -Bb -cB -cB -cB -Dj -gY -aV -SC -rJ -jV -zH -Sl -SC -gY -gY -ZX -nm -nm -NP -FI -Ra -bV -Ml -NL -yN -ld -wQ -Rg -nm -tB -nm -nm -nm -nm -kA -vT -IL -wF -pb -Jl -TI -YE -wF -pf -nB -Ua -gV -BW -ex -Pu -Ua -Ec -WM -Rz -Rz -NA -An -An -An -sN -Rz -ny -bD -vF -uq -RF -by -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(51,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -yE -WL -Lg -Dg -Ze -KI -fk -Ge -cN -Ak -xP -js -Fo -ZK -is -ZK -ZK -kh -ZK -ZK -Ev -ZK -ZK -ZK -ZK -nZ -Gv -kY -Xm -rs -hb -sP -VB -lq -Wg -cF -rK -CB -CB -CB -CB -CB -RL -Ib -To -bQ -Dr -aO -Ib -To -Xz -To -To -To -To -kf -JP -nP -jO -JW -Gd -Om -BN -pO -Uw -tc -Ua -Jg -ne -fQ -nl -MV -gt -WM -ql -TP -CW -Fx -zm -qk -aC -Fy -nk -bD -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(52,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Lg -WL -Fm -Wr -tK -Wr -Or -qF -AV -LI -aU -pT -AY -AY -pp -pp -pp -AY -pp -pp -AY -pp -pp -pp -AY -AY -Rf -bH -SC -SC -SC -SC -SC -SC -Wh -gY -PM -PM -PM -PM -PM -PM -Xc -VP -Ig -Xc -Xc -Xc -vm -Xc -qE -qE -qE -qE -qE -qE -qE -qE -Vh -Vh -Vh -Vh -Vh -wF -Xq -yS -pC -pC -pC -pC -pC -pC -pC -pC -pC -vy -mW -RS -RS -RS -RS -RS -nk -RF -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(53,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -yE -Lg -VM -Oy -fk -jo -ko -Ak -Ak -Ak -Ak -ix -hj -Mj -Rj -ad -Dw -PX -qN -PX -uj -wb -UH -UH -jB -fV -AY -vG -yw -Vb -Jd -lm -Xo -HI -us -Nt -gY -PM -KA -Lj -NC -bJ -mM -vd -IY -Ki -IY -vd -IY -Um -XP -NH -in -xS -jd -yl -Ms -ax -NH -vk -jW -vK -wt -Vh -Pd -Xq -ma -pC -uc -Ke -pC -Aa -pC -nd -Nx -pC -XH -TR -WH -mH -WH -WH -Hf -LZ -bD -hE -JE -JE -EG -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(54,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -MP -yE -Eh -Eh -aq -tC -Ak -Ak -Ak -vx -vx -vx -tC -Kf -Cf -AY -sU -TU -Am -fW -fW -fW -EY -Nz -UH -lh -cW -Wp -AY -Hg -GQ -zw -dy -Jj -Tq -Rh -Qr -aP -GV -Rt -no -Eo -no -lQ -mM -vM -IY -Kz -IY -PU -IY -Um -Zk -NH -PF -gI -cu -SV -NH -NH -NH -mf -oR -OF -wt -Vh -fO -vf -fO -pC -Vo -Tr -aJ -tW -ZQ -ZQ -sO -pC -CK -jZ -DO -uf -DO -pd -ve -uB -uq -vF -bD -RF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(55,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -yE -Eh -Eh -vx -pc -vx -vx -vx -vx -vx -ua -vx -vx -kB -zB -AY -NB -NB -UH -UH -UH -eq -yZ -Lh -UH -YY -Pm -zY -AY -ok -sQ -Vb -Vb -Vb -Vb -Vb -Vb -lr -GN -PM -mv -pN -bv -mc -mM -CA -IY -MO -IY -Ri -IY -eL -SX -it -zP -pS -Uy -SV -Ms -Dy -NH -ml -SZ -OF -DV -Aj -vj -vU -uu -pC -ZN -tY -tY -GB -tY -tY -zK -pC -By -TD -ux -rM -Qt -Qt -HG -uB -uq -vF -uq -RF -RF -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(56,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Eh -Eh -vx -uy -ID -tt -wh -th -Hz -JR -pE -zp -vx -ph -Bf -Yv -Yv -eS -eS -eS -Yv -gm -Un -rN -DI -rN -vD -yo -fc -eC -eE -gY -hh -km -QB -zi -gY -HY -GN -PM -PH -Bz -no -oT -mM -wJ -IU -fb -kQ -kQ -kQ -kQ -Ko -NH -Ew -Cu -cu -SV -NH -NH -NH -ct -ri -Ap -nj -Aj -gn -OZ -Bl -pC -te -tY -At -vw -tY -tY -eJ -pC -PE -jZ -PC -PC -PC -md -tm -LZ -bD -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(57,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Eh -Mc -vx -QP -Iy -zE -Hu -mZ -dD -Ii -ks -Te -vx -og -Bf -Yv -yV -xh -kk -SQ -Yv -qQ -VL -HK -UH -CX -mk -Mu -AY -xK -IS -cF -cF -nz -Ix -cF -FR -Xs -GN -PM -Rq -Nr -Fz -rZ -mM -Ls -LR -oC -ky -QS -SG -iR -RK -NH -Ew -MZ -OM -kK -Ms -ax -NH -nF -Vd -Uc -mK -Aj -rk -OZ -Bl -pC -CT -ay -em -eu -AD -UR -xk -pC -Jz -LO -ey -ey -ey -ey -ey -NY -JE -oq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(58,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Eh -Mc -vx -rH -pK -NG -Fa -AX -Pv -VN -lp -lJ -vx -sp -wa -Yv -Rd -rY -YH -tX -Rc -Hv -OC -uL -UH -kt -Kv -bF -AY -Td -Ub -Td -Td -Td -Td -Td -Td -Td -gG -PM -mM -iF -mM -mM -mM -IY -IY -Fu -IY -IY -IY -IY -IY -NH -NH -NH -NH -NH -NH -NH -NH -Aj -lz -Aj -Aj -Aj -Dm -Gh -Bl -pC -tu -tu -pC -lO -pC -tu -tu -pC -zL -SE -vz -WH -WH -WH -gh -uB -bD -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(59,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Eh -Mc -vx -aF -GP -IJ -dJ -dJ -dJ -OJ -JY -bI -vx -ii -Bf -Yv -Fw -vE -vp -xv -Yv -wA -Xf -gi -UH -wV -sB -Nh -BU -qo -uA -Tw -IA -Hi -Dq -aN -hp -Qf -YS -rg -rg -LC -rg -JA -wu -Kd -ia -Sa -xC -hR -ke -iV -Wz -re -MI -nJ -uG -bu -ZO -IW -qv -iJ -ET -Qv -dP -hg -hg -nT -cI -sC -yj -jR -Dt -BC -Pr -YB -cV -Pr -UT -Md -Qt -Qt -fD -Qt -ho -uB -uq -vF -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(60,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Eh -Mc -vx -ts -GR -hC -tg -fq -hu -tg -rO -Cw -vx -UP -Bf -Yv -gE -Hw -Yv -Yv -Yv -BU -AJ -BU -Pb -Pb -Pb -BU -BU -jJ -qm -Vw -ug -ob -nS -bO -zM -GX -Fv -Ov -bw -kj -WK -nC -ut -WK -wW -oU -sw -Jv -cK -qy -cG -sG -HP -bs -Dk -lf -WS -tJ -tJ -tJ -SJ -YI -oy -sh -Nl -nY -fS -xb -PN -DO -ce -zs -DO -BH -Pw -DO -iQ -KU -PC -PC -lw -PC -Ty -uB -bD -vX -JE -JE -Wb -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(61,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -fP -Uq -sv -GM -rF -yM -TM -zN -eA -ub -cM -tn -rO -ZY -vx -TS -Bf -Yv -Sg -Pg -Yv -Mm -RQ -Hx -ej -Jn -ZV -py -gr -Ou -ls -ew -AG -ms -CZ -ms -hk -YF -YF -YF -YF -YF -ja -KF -KF -KF -KF -KF -uk -ob -HW -TT -Fk -oE -oE -nx -oE -oE -FG -TX -FG -LW -eV -pa -CG -CG -Rn -CG -CG -nT -SO -uW -uW -uW -uW -uW -uW -uW -uW -uW -BD -uW -uW -XV -XV -XV -uW -LZ -EJ -EJ -EJ -EJ -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(62,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -nn -yE -Eh -Eh -vx -vx -VJ -yk -vx -YK -vx -vx -vx -vx -vx -vx -wf -Bf -Yv -Zs -ch -Yv -mA -zW -xZ -KV -KV -KV -EO -hL -rb -hL -YT -WF -Pt -SL -ob -Je -YF -Vv -Tc -rS -YF -YF -KF -li -TN -pm -KF -kU -ob -BI -Wf -Jt -oE -hP -bT -Yo -oE -AS -dq -FG -GC -HC -oc -CG -Kc -oh -cp -CG -mD -rG -dl -dl -sS -pR -rn -Ja -Zm -vq -pR -aI -UG -iY -uN -uN -uN -uN -uN -uN -Ax -nA -EJ -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(63,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Ve -Ve -ak -XL -DS -FD -La -RC -Fj -Mb -XZ -sr -cg -Ni -zD -hc -Bf -Yv -Zy -SQ -Yv -xE -zW -xZ -MA -Zt -gj -Ku -hY -Ku -hY -Ku -LV -EN -EN -Pt -Sh -Wn -SY -mz -SU -YF -Js -KF -TL -Ar -KM -Kg -Xx -Mq -SB -lv -ZU -oE -xi -Va -Yo -oE -Mf -qn -FG -FG -CG -CG -CG -GZ -ci -PV -CG -Xe -XY -dl -NS -zz -xf -oJ -MG -vC -Zg -xf -ww -dI -OT -yb -OT -OT -OT -yb -OT -bo -yK -Vn -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(64,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -Ve -dR -qs -qY -ye -Zw -La -Zn -CI -fI -fI -xA -Mb -fy -zD -Nc -Fp -VV -VV -VV -VV -jf -zW -hG -WB -DY -ZE -Ku -RD -UY -nD -Ku -uD -YT -at -KL -of -YF -Ht -Yr -ML -YF -Js -KF -Ae -Li -WW -KF -uS -ob -YT -cO -cd -oE -FQ -Va -Yo -oE -eO -Fr -YR -FG -MX -oY -CG -CU -MK -qR -CG -iS -jT -dl -QK -pV -xf -aT -MG -vC -vi -xf -ww -dI -uh -ih -OL -UW -hy -Ti -OT -OT -yK -Vn -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(65,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -fw -dT -qP -pr -Gm -Vx -Ph -Zn -FC -bm -CE -vg -ol -oa -zD -iZ -Xk -OD -ZR -QG -RX -iX -mT -Ku -Ku -Ku -Ku -Ku -DT -ll -nD -YM -Rk -rw -Ep -Mt -EK -YF -Yi -KO -Co -YF -Js -KF -qK -tG -xH -KF -XU -bg -iI -Hl -YT -oE -FB -Vt -nO -rL -mh -KR -nw -FG -VC -gD -CG -CG -RT -CG -CG -yO -hg -dl -sR -pV -xf -qV -MG -dL -kH -xf -zO -dI -uh -ba -Ll -fi -bY -bY -Ll -OT -yK -Vn -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(66,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -fw -to -tM -qY -ye -Pj -su -RC -ZP -Xh -RC -fa -RC -Ug -zD -Ue -hT -mu -ZI -Hs -zb -IF -GA -Ku -Kt -Ca -vQ -nD -hX -nD -nD -YM -Rk -kU -ER -ER -ER -ER -ER -bU -bU -YF -YF -KF -MN -MN -vu -vu -vu -vu -vu -ue -YT -oE -ar -tZ -GG -oE -Nw -Fr -op -FN -Vs -dH -oW -vb -pA -hv -CG -ZB -hg -dl -ZC -YQ -xf -MF -MG -vC -Zg -xf -mY -bS -uh -om -Ll -fi -bY -bY -Ll -OT -yK -Vn -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(67,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -gH -fw -IM -Yp -BY -DS -Ee -UI -rX -Rv -Rv -MB -fT -RG -PS -Le -IH -JN -QC -QC -QC -wZ -hU -zW -YM -LD -Se -XE -Kj -hX -nD -uM -YM -Rk -kU -ER -rW -lC -HT -ER -EZ -qX -qX -qX -qX -qX -NT -vu -Br -AP -Ys -vu -ue -oF -oE -gC -Og -cf -oE -sl -Rr -Fd -FG -fL -Hy -fH -hs -ir -ip -CG -cA -hg -dl -Nm -on -pR -rI -SS -Dn -va -pR -Zf -mG -uh -ih -Kw -iH -yc -KQ -OT -OT -yK -Vn -vF -uq -uq -uq -yX -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(68,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Ah -Ul -Ve -ye -ye -ye -DS -qS -bX -Ba -wT -wT -wT -UO -yR -wT -QC -vA -hT -qp -SI -jy -mO -zc -zW -JJ -JJ -JJ -JJ -JJ -LJ -nD -NR -Ku -wL -Nf -wS -SH -jD -PI -IZ -IT -xe -xe -xe -xe -xe -Ef -AT -Aq -WE -AB -gf -rP -YT -oE -oE -oE -oE -oE -FG -mR -FG -FG -xg -TK -oM -ev -DA -hv -CG -ck -os -dl -wp -pV -pR -pR -Ns -pR -pR -pR -DN -mG -OT -yb -OT -Iu -OT -yb -OT -bo -yK -Vn -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(69,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -gH -jr -eB -wY -fl -WG -lU -On -Qu -Ne -Ne -Ne -Qu -xm -wT -QC -lB -GD -mu -SF -HF -mO -zc -zW -YM -un -kE -RB -hH -Av -gx -yd -YM -wy -kU -ER -zg -aj -Wl -IZ -IT -xe -xe -xe -xe -xe -Ef -AT -Qd -VH -Qa -vu -QF -YT -hJ -iG -Jk -pX -hJ -Eu -bG -ep -CG -CG -CG -CG -CG -qW -CG -CG -mr -Uk -pH -le -Be -Xa -ZJ -jF -KC -Su -Hb -lP -Xl -IB -IB -IB -jN -oG -oG -oG -oG -si -Vn -vX -sa -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(70,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -NJ -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -jr -hl -sx -IX -eh -Rv -UK -Qu -iO -jl -xd -Qu -cy -oB -QC -GT -ya -mu -NN -fU -mO -Ha -df -YM -VS -ME -Qx -gL -zy -En -hz -YM -am -wi -bi -bi -bi -bi -bi -IT -xe -xe -xe -xe -xe -Ef -IC -IC -IC -IC -IC -fN -xc -hJ -zk -bf -pv -uV -oH -Pp -mJ -dw -Ng -ec -ik -iB -QJ -Od -ta -gq -mI -dl -VE -EC -Yh -TB -wp -wp -NZ -st -wN -Lx -CP -cn -CP -CP -CP -CP -cn -CP -JI -Vn -uq -IV -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(71,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -gH -jr -Hk -ic -If -WG -Lc -xU -TH -ti -Aw -eH -Qu -io -wT -QC -CQ -ah -mu -SF -aY -mO -zc -zW -YM -so -jP -Ow -gL -Cv -db -WT -YM -bn -AQ -bi -Si -gK -LX -wE -IT -xe -xe -xe -xe -xe -Ef -PA -da -dc -zR -IC -Im -ei -hJ -hJ -Zx -hJ -hJ -hJ -hJ -Nv -Yf -Jx -Oc -QA -Jx -MM -QO -ta -Ie -hg -gQ -Ps -Ps -gQ -YG -gQ -Ps -Ps -gQ -YJ -mb -Kr -Kr -Kr -UU -uN -uN -uN -uN -dA -Vn -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(72,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Ah -pn -bk -CM -CM -CM -Qk -wT -fF -TH -Qg -vs -FH -Qu -kS -wT -QC -tS -hT -Bt -kG -jy -mO -zc -zW -JJ -JJ -JJ -JJ -JJ -vH -nD -NR -Ku -mE -Ir -br -KG -sn -kL -wE -IT -xe -xe -xe -xe -xe -Ef -PA -Wk -iT -MQ -qw -ie -ei -hJ -sf -gT -Vq -lZ -Gn -hJ -qh -BF -qh -qh -qh -qD -VA -qD -qD -sM -hg -gQ -xD -pw -uP -uI -dQ -Wt -hi -gQ -qM -dI -nK -GS -nK -Ma -nK -GS -nK -VQ -PY -Vn -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(73,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -bD -gH -DF -tH -sA -qO -Qk -wT -xU -TH -hQ -ab -mj -nq -gW -go -ur -Vc -xa -QC -QC -QC -BA -nW -zW -YM -Op -fh -JC -AK -zy -nD -DL -YM -OO -AQ -bi -HX -Gu -JB -bi -RI -uw -uw -uw -uw -uw -Mh -IC -RM -De -oA -IC -uC -jn -hJ -BV -RE -QI -zf -wR -hJ -Lr -RH -Jq -dd -qh -lX -Df -zn -qD -lt -hg -gQ -dO -sZ -tz -xu -Do -hA -uJ -Ps -wO -dI -xJ -VY -zV -Vm -gO -JD -nK -nK -PY -Vn -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(74,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -DF -Lw -dh -TE -CM -zC -xL -Qu -tF -Th -cE -Qu -LN -jv -QC -zq -he -mu -gy -QG -XC -zc -GA -Ku -Ru -Xb -EI -WY -ov -WY -Ft -YM -OO -AQ -bi -bi -bi -bi -bi -HH -HH -nf -nf -fr -jz -jz -IC -IC -IC -IC -IC -nQ -ei -hJ -fm -Oj -PQ -uZ -CJ -hJ -KW -Qh -Qp -vW -qh -ef -tv -Ol -qD -YN -hg -gQ -cQ -gQ -fK -mV -dQ -vJ -ff -Ps -XW -dI -xJ -xO -yH -pe -Hd -Hd -yH -nK -PY -Vn -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(75,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -DF -iD -vZ -JX -Zj -Rv -Ym -Qu -Ne -Ne -Ne -Qu -aa -wT -QC -Iq -HN -Tg -Vr -Hs -EA -zc -zW -Ku -Ku -Ku -Ku -Ku -gs -nD -tb -YM -OO -sg -cU -qL -Ur -nf -uv -zr -TF -nf -OA -fr -fu -jA -FK -fr -cZ -GK -BL -mm -ei -hJ -hJ -sI -hJ -EB -hJ -hJ -HR -Qh -aR -Zi -qh -RP -yu -EM -qD -bR -hg -gQ -WP -Ps -PP -dQ -dQ -Ps -qb -gQ -WQ -dI -xJ -qH -yH -pe -Hd -Hd -yH -nK -PY -Vn -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(76,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -bk -kT -mn -TE -CM -qG -PO -Pf -wT -wT -wT -QQ -Nj -wT -Fe -Fe -Me -Fe -Fe -Fe -Fe -KE -zW -Dp -Di -VD -EV -Ku -xn -MT -tb -Ku -Qc -AQ -RZ -yi -iW -nf -Oe -rc -pJ -nf -OA -fr -JH -hK -bt -fr -eW -ei -ei -se -Ws -hJ -SD -gZ -hJ -ui -sK -hJ -TY -Au -Zq -gF -qh -cs -LU -Pz -qD -PD -KX -gQ -HB -Ps -gp -Hn -WA -Ps -VT -gQ -Wd -dI -xJ -VY -VX -eU -wC -Yq -nK -nK -PY -Vn -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(77,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -bk -bk -wM -yB -Qk -dB -GW -RJ -YO -eG -DE -ze -eQ -qe -Tm -mw -bE -BS -QV -cm -Fe -Qn -zW -xZ -MA -Zt -TJ -Ku -aH -Ku -rQ -Ku -Lo -EQ -Qj -ei -bd -cJ -No -KJ -Ay -nf -OA -fr -Qe -Vy -Cb -Tx -Ch -Dz -im -aQ -kn -hJ -CR -Bj -hJ -Bj -Xi -hJ -qh -qh -qh -qh -qh -qa -er -wo -qD -bh -Ok -gQ -do -gQ -Ps -gQ -Ps -gQ -Pn -gQ -lA -dI -nK -dU -nK -nK -dU -dU -nK -VQ -PY -Vn -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(78,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -ag -aS -aS -XB -XB -XB -ZG -ZG -ZG -Ao -ZG -ZG -ZG -ZG -Zv -Bd -Ya -xI -mg -nV -Fe -sz -ao -xZ -KV -KV -KV -Ky -AF -Zp -ly -ei -OO -ei -qu -ei -Sz -nf -Wa -QM -dv -nf -nf -fr -Iz -Dc -SP -fr -AQ -ei -lD -cl -wn -hJ -Rb -Ic -hJ -Ic -Rb -hJ -an -lR -pU -OH -qD -OU -dr -rm -qD -yt -ht -gQ -dY -Lv -Kb -Kb -Kb -HE -qU -gQ -lV -yL -qg -oG -oG -oG -oG -oG -oG -KT -UJ -EJ -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(79,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uH -ag -aS -ZD -pZ -qI -ZG -we -VW -LL -jc -ae -sL -Zb -Zv -Bk -HA -Fh -Cz -Nk -Fe -px -hS -tR -vB -lF -jY -lM -Jb -za -sb -eN -qj -ei -AQ -ei -DC -nf -nf -nf -nf -nf -NQ -fr -fr -fr -fr -fr -hN -ei -aE -fz -VR -hJ -hJ -hJ -hJ -hJ -hJ -hJ -an -CL -eV -pa -qD -qD -Da -qD -qD -dn -XF -WR -WR -WR -qA -qA -qA -qA -qA -qA -qA -qA -oX -oX -oX -oX -oX -kP -EJ -EJ -EJ -EJ -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(80,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -QY -VI -ED -rh -ZG -oO -ed -Sv -LH -vo -vo -IN -Zv -Fi -fd -YZ -nh -BO -OQ -FT -wz -FT -iz -dK -FT -wz -wz -FT -FT -HL -vr -vh -Wy -Sj -Jb -Sj -mS -vt -Sj -Sj -pg -MD -nX -Jh -AZ -nX -dG -nX -nX -Ot -nX -ON -Wq -DJ -hW -Vz -gd -KH -zQ -Xu -Xu -Xu -TO -jH -iL -nG -Xu -qT -Oa -WR -Mi -My -qA -zX -jj -nt -FW -kz -OV -qA -XS -kp -tr -Ux -pu -Db -bD -ea -JE -JE -FP -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(81,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Dl -CD -gb -wx -Ei -Bs -oI -WD -LA -BJ -bq -bq -Gp -Zv -Xd -QX -Fh -FZ -xX -OQ -WJ -JS -Xj -FL -iq -Ck -AH -iq -mo -FT -kM -lc -Vf -vL -eP -Uf -LE -xx -id -yx -MC -ou -Yt -ei -aX -mQ -Wj -Wj -Wj -Wj -Vk -WU -tw -Wj -Wj -Wj -MH -xx -xF -kl -CV -kv -jg -XJ -DK -yW -XJ -Hp -RA -Dd -gM -dp -Jc -qA -FY -WX -hB -pM -GE -cX -qA -ka -Wv -lN -Ek -pq -Db -uq -vF -bD -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(82,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -QY -BM -zx -US -ZG -RU -VG -ws -Bi -IK -IK -mF -cY -OE -Py -xI -pY -ez -OQ -VZ -Eg -Eg -Ta -iq -iq -iq -iq -xB -LY -FE -Cs -FE -FE -FE -FE -FE -FE -FE -FE -Wu -Tv -Mv -ei -aD -aD -YL -ry -dW -aD -aD -Ds -aD -aD -Xr -Nb -Nb -aD -iM -LF -aM -aM -Mg -Mg -Mg -aM -aM -nI -nI -nI -WR -sY -LP -qA -zX -yY -yQ -du -XG -es -qA -Sk -vI -yD -IE -Yu -kP -RF -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(83,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -aS -vc -BT -dV -ZG -qZ -oQ -Re -dm -YX -VF -Is -Zv -Gi -JM -ZF -xG -Bv -OQ -fX -iq -iq -bA -zj -LM -Fb -Bx -Cj -LY -WC -Ik -Cg -hI -UM -Xv -wP -lY -Cg -bz -Wu -Iw -zl -ei -aD -wK -Bn -Zr -xs -zG -Ih -ru -av -aD -Mr -fo -Yb -aD -Rl -wg -aM -oS -oL -gu -oL -UN -aM -tI -JK -uR -WR -Gc -yv -qA -qA -qA -qA -ha -qA -qA -qA -oX -oX -pt -oX -oX -kP -RF -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(84,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -aS -aS -XB -XB -ZG -ZG -ZG -hF -ZG -ZG -ZG -ZG -Zv -Fe -MS -Fe -Fe -Fe -OQ -FT -jK -lo -xV -oK -iK -XX -jq -yg -Hj -iA -CC -yT -yT -xT -Zu -yT -yT -yT -eM -Wu -co -zl -ei -aD -mN -sc -cS -hV -LK -IQ -Qq -sq -aD -vY -AO -vY -aD -nH -QR -aM -Xp -Pl -ST -Pl -FM -aM -xz -Wo -jG -OX -BZ -QE -yq -WR -Xn -Tn -lH -Nd -pF -WZ -nN -Cp -AL -cq -Ye -Fn -JE -en -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(85,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -ag -ni -ni -eF -eF -Gr -ee -Po -HZ -nv -fn -aB -Gr -sJ -bx -LY -YA -TV -iE -FT -zo -NF -xV -eb -Kp -kw -Kp -Eb -LY -IG -Ik -bl -bl -bl -bl -bl -bl -Cg -gz -Kl -Zl -oD -aE -aD -Es -ig -BK -BK -NM -Za -gU -Sr -XO -fR -jQ -Sf -fJ -Sb -Tf -tq -DP -jI -DW -FU -JT -uU -hM -UE -nE -UA -zU -Bu -BB -ps -de -QH -fx -mt -OI -bN -tD -zS -Lk -mi -dN -GI -uq -vF -uq -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(86,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -ro -ag -ni -ni -Qi -Gr -eT -BG -au -ft -Ac -xN -Gr -Cr -bx -LY -Us -Uh -rr -rp -jL -AN -me -jC -iq -iq -iq -Eb -LY -AC -Uu -Et -lx -kc -PZ -od -rA -pi -TQ -Wu -Tk -Uj -sm -aD -wc -oo -cD -cD -MJ -sc -QZ -Bo -aD -Zc -sc -Zc -aD -fs -Ab -aM -zA -Dx -eo -Dx -hx -ZZ -hm -ZW -cv -UD -Tj -lG -tO -WR -Fc -iw -vv -tf -JQ -JQ -JQ -JQ -Tl -JQ -JQ -bj -bD -vF -bD -RF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(87,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -ag -Qw -Rw -tp -Yx -di -eX -qB -tU -Pa -Gr -sD -bx -LY -Kq -EU -pD -FT -eI -CO -Uz -Vp -Sx -aG -iq -dx -LY -Cm -Ip -bl -fj -jh -rC -bZ -bl -Cg -vP -Wu -HO -dj -sm -aD -JU -LB -nu -yI -af -al -rz -ss -aD -bW -rV -EW -aD -uX -Go -aM -kd -Dx -gX -aZ -gl -ZZ -Nu -rD -IP -fp -cw -yU -dZ -WR -GU -bP -XN -hd -JQ -wI -Xt -UF -Rm -Lz -RR -bj -bD -Cx -JE -JE -sa -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(88,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -ni -ni -Gr -ac -lS -Fs -eD -xR -NK -qJ -yy -bx -LY -LY -LY -LY -LY -LY -Rp -Rp -LY -Rp -Rp -Rp -LY -LY -yC -TZ -XR -XR -XR -XR -XR -XR -iy -vP -Wu -JF -JF -JF -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -Ct -yp -Sc -Dx -Dx -Dx -be -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -Dx -JQ -JQ -rj -ox -cT -NV -sj -Oo -LG -uq -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(89,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -ag -ni -Gr -Yy -Il -dt -Io -jt -fG -Gr -tN -PW -jw -ai -cr -fB -yy -Bw -sV -sV -bM -Ss -Ss -Ss -Ss -yF -Em -BR -LT -mL -kr -GF -Lq -UX -Lm -ul -Oh -Dv -Dv -Dv -Dv -Dv -Dv -Uv -Dv -lT -Dv -il -OR -CY -Lf -Qz -Dv -Dv -bB -kq -Dx -fM -uY -hq -HD -Dx -XQ -JV -KS -Dx -XQ -Pk -KS -Dx -Cn -RN -ku -Dx -ZM -FO -Qy -pj -Qy -wB -DG -PB -LG -bD -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(90,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -gH -ni -ni -Gr -pl -Gr -Gr -Gr -Gr -Gr -VK -AI -yy -yy -bx -yy -yy -xq -yy -yy -tP -yy -yy -yy -yy -AW -Cg -yr -XR -UZ -BQ -Ud -zt -XR -Fl -Cg -nL -oe -SM -Wu -aw -mB -oe -Lu -oe -HV -oe -oe -Lu -oe -oe -KY -oe -oe -QU -PR -Dx -zT -ZA -vV -uz -Dx -Ad -RN -RN -Oq -Ad -RN -RN -lb -Wi -bL -sH -Dx -xj -We -XT -XT -XT -kC -uT -lW -bj -RF -vF -uq -RF -dk -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(91,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -yG -YV -YV -wX -ni -ni -ni -ni -ni -ge -aW -wG -wG -aW -ge -ge -wG -ge -ge -wG -ge -ge -ge -wG -wG -FE -Ka -oz -oz -oz -oz -oz -oz -gP -FE -Wu -uQ -uQ -Wu -Wu -Wu -Wu -Ww -Wu -Wu -Wu -Wu -Ww -Wu -Wu -Wu -Wu -uQ -uQ -Wu -ym -Yj -ZA -vV -Ez -Dx -jx -ln -OY -Dx -Bm -kI -Ai -Dx -Qm -Yc -zI -CS -Gl -az -KN -Yw -FA -IR -DG -PB -LG -bD -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(92,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Hc -RF -bD -bD -uq -uq -uq -uq -bD -bD -Sy -ag -uq -gH -RF -bD -bD -uq -uq -uq -uq -uq -uq -bD -bD -RF -vF -RF -uq -uq -uq -ea -tj -EG -bD -bD -uq -uq -uq -bD -bD -RF -vF -RF -uq -uq -uq -vF -RF -RF -bD -bD -uq -uq -uq -fg -dF -xt -vN -sX -Dx -KK -gg -Ff -UV -bK -gg -rT -cj -bK -gg -KB -iC -XT -St -XT -XT -XT -kC -sj -Oo -LG -uq -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(93,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Sy -Xw -yE -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Ci -JE -JE -JE -JE -EG -IV -uq -uq -uq -uq -uq -uq -uq -uq -uq -JO -JE -JE -JE -JE -EG -RF -uq -uq -uq -uq -uq -bD -fg -la -ZA -TG -Hq -Tp -pk -eR -zv -Gb -Fq -Af -eR -Gb -eR -eR -hZ -iC -PJ -sj -gk -Wm -BE -As -Jw -bb -bj -bD -vF -uq -RF -vF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(94,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -bD -ym -ym -hO -YW -bc -Dx -lK -gg -yf -dg -jk -gg -rT -NX -jk -gg -Er -iC -DH -pQ -pQ -DH -DH -MR -Wc -DH -pQ -RF -hE -JE -JE -EG -RF -uq -uq -et -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(95,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -bD -bD -ym -ym -eY -Hr -Dx -wv -Ut -ZT -Dx -Ex -ju -Lt -Dx -IO -Vl -or -iC -AR -QD -QD -EP -FX -Ro -hr -qx -pQ -bD -vF -bD -RF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(96,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -RF -RF -RF -RF -uq -uq -ym -Vg -el -Dx -aL -RN -RN -Ts -aL -RN -RN -LQ -tA -bL -wj -iC -rd -iv -iv -iv -pL -Nq -Yz -YC -RV -uq -vF -uq -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(97,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -RF -RF -RF -RF -RF -ea -JE -JE -JE -AM -JE -JE -oi -ym -Dx -nb -JV -KS -Dx -nb -fv -KS -Dx -Cn -RN -Eq -iC -BX -Gq -BX -mX -xQ -Ob -Sq -my -pQ -uq -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(98,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -pz -JE -JE -JE -JE -JE -JE -JE -EG -RF -RF -RF -vX -FP -bD -bD -ym -ym -xo -xo -jb -ym -xo -xo -kN -ym -xo -xo -SR -Vg -pQ -kV -kV -pQ -pQ -kV -Ry -pQ -pQ -bD -vF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(99,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -bD -bD -RF -RF -RF -RF -uq -uq -uq -ea -tT -sa -RF -bD -bD -bD -bD -vX -JE -sa -RF -vF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(100,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -pz -JE -JE -JE -JE -JE -EG -RF -IV -uq -uq -uq -uq -uq -uq -pz -XA -JE -cb -RF -RF -RF -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(101,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -RF -vX -JE -JE -JE -JE -FP -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(102,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(103,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(104,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(105,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(106,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(107,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(108,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(109,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(110,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(111,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(112,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(113,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(114,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(115,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -lg -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(116,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(117,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(118,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(119,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(120,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(121,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -Zd -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(122,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(123,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(124,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(125,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(126,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(127,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(128,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(129,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(130,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(131,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(132,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(133,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(134,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(135,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(136,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(137,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(138,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(139,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -"} -(140,1,1) = {" -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq -uq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqNJuquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququqZduququququququququququququququqZduququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqbDAhbDuqbDAhbDuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqnngHgHgHgHgHUlgHgHgHpngHgHgHgHgHSyuquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqfPyEVeVefwfwfwVejrjrjrbkDFDFDFbkbkaguHuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququqnngHgHgHgHgHUqEhVedRdTtoIMyeeBhlHkCMtHLwiDkTbkaSaggHDlgHgHgHSyuququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququqMPyEEhEhEhEhEhsvEhakqsqPtMYpyewYsxicCMsAdhvZmnwMaSaSQYCDQYaSaSagrouquququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququqnnyEEhEhMcMcMcMcGMvxXLqYprqYBYyeflIXIfCMqOTEJXTEyBXBZDVIgbBMvcaSniagSyuququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququqnngHyEEhEhvxvxvxvxvxrFvxDSyeGmyeDSDSWGehWGQkQkCMZjCMQkXBpZEDwxzxBTXBniniaggHSyuququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququqZduquququququququququququququququququququqnngHyELgLgEhvxuyQPrHaFtsyMVJFDZwVxPjEeqSlURvLcwTwTzCRvqGdBXBqIrhEiUSdVXBeFniQwniaggHSyuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqgcUlWLWLWLVMaqpcIDIypKGPGRTMykLaLaPhsuUIbXOnUKxUfFxUxLYmPOGWZGZGZGBsZGZGZGeFQiRwnininiyGHcuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFLgLgLgFmOytCvxttzENGIJhCzNvxRCZnZnRCrXBaQuQuTHTHTHQuQubpRJZGweoOoIRUqZZGGrGrtpGrGrniYVRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDTWESDgWrfkAkvxwhHuFadJtgeAYKFjCIFCZPRvwTNeiOtiQghQtFNewTYOZGVWedWDVGoQZGeeeTYxacYyGrYVbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDtLZeZetKjoAkvxthmZAXdJfqubvxMbfIbmXhRvwTNejlAwvsabThNewTeGAoLLSvLAwsRehFPoBGdilSIlplwXbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqtLMkKIWrkoAkvxHzdDPvdJhucMvxXZfICERCMBwTNexdeHFHmjcENewTDEZGjcLHBJBidmZGHZaueXFsdtGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMfZfkOrAkvxvxJRIiVNOJtgtnvxsrxAvgfafTbCQuQuQuQunqQuQuQQzeZGaevobqIKYXZGnvftqBeDIoGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMEyGeqFAkvxuapEkslpJYrOrOvxcgMbolRCRGyRxmcyiokSgWLNaaNjeQZGsLvobqIKVFZGfnActUxRjtGrniuquququququququququququququqZduquququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMsdcNAVAkvxvxzpTelJbICwZYvxNifyoaUgPSwTwToBwTwTgojvwTwTqeZGZbINGpmFIsZGaBxNPaNKfGGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDAkAkAkLIAktCvxvxvxvxvxvxvxvxzDzDzDzDLeQCQCQCQCQCurQCQCFeTmZvZvZvZvcYZvZvGrGrGrqJGrGrnibDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDiNmUxPaUixKfkBphogspiiUPTSwfhcNciZUeIHvAlBGTCQtSVczqIqFemwBdBkFiXdOEGiFesJCrsDyytNVKgebDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqnnSAOGjspThjCfzBBfBfwaBfBfBfBfBfFpXkhTJNhTGDyaahhTxaheHNMebEYaHAfdQXPyJMMSbxbxbxbxPWAIaWSyuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqnnyExyxyFoAYMjAYAYYvYvYvYvYvYvYvYvVVODmuQCqpmumumuBtQCmuTgFeBSxIFhYZFhxIZFFeLYLYLYLYjwyywGagSyuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqNDuqxyOxZKAYRjsUNBYvyVRdFwgESgZsZyVVZRZIQCSISFNNSFkGQCgyVrFeQVmgCznhFZpYxGFeYAUsKqLYaiyywGuqXwuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaggHasNWisppadTUNBeSxhrYvEHwPgchSQVVQGHsQCjyHFfUaYjyQCQGHsFecmnVNkBOxXezBvFeTVUhEULYcrbxaWgHyEuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFVucBZKppDwAmUHeSkkYHvpYvYvYvYvVVRXzbwZmOmOmOmOmOBAXCEAFeFeFeFeOQOQOQOQOQiErrpDLYfByygeRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDVucBZKppPXfWUHeSSQtXxvYvMmmAxEjfiXIFhUzczcHazczcnWzczcKEQnszpxFTWJVZfXFTFTrpFTLYyyyygebDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDxyFVkhAYqNfWUHYvYvRcYvYvRQzWzWzWmTGAzWzWzWdfzWzWzWGAzWzWzWaohSwzJSEgiqjKzojLeILYBwxqwGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVudSZKppPXfWeqgmqQHvwABUHxxZxZhGKuKuYMJJYMYMYMJJYMKuKuDpxZxZtRFTXjEgiqloNFANCORpsVyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVukxZKppujEYyZUnVLOCXfAJejKVMAWBKuKtLDJJunVSsoJJOpRuKuDiMAKVvBizFLTabAxVxVmeUzRpsVyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqxyZzEvAYwbNzLhrNHKuLgiBUJnKVZtDYKuCaSeJJkEMEjPJJfhXbKuVDZtKVlFdKiqiqzjoKebjCVpLYbMtPwGuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVuBbZKppUHUHUHDIUHUHUHPbZVKVgjZEKuvQXEJJRBQxOwJJJCEIKuEVTJKVjYFTCkiqLMiKKpiqSxRpSsyygeuququququququququququqZduququququququququququqlguququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVucBZKppUHlhYYrNCXktwVPbpyEOKuKuKunDKjJJhHgLgLJJAKWYKuKuKuKylMwzAHiqFbXXkwiqaGRpSsyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVucBZKppjBcWPmvDmkKvsBPbgrhLhYcacchXhXLJAvzyCvvHzyovcxxnaHAFJbwziqiqBxjqKpiqiqRpSsyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququqZduquququququququququququququqbDxycBZKAYfVWpzYyoMubFNhBUOurbKuUYllnDnDnDgxEndbnDnDWYnDMTKuZpzaFTmoxBCjygEbEbdxLYSsyywGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDxyDjnZAYAYAYAYfcAYAYBUBUlshLhYnDnDnDuMNRydhzWTNRDLFttbtbrQlysbFTFTLYLYHjLYLYLYLYyFAWwGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFTdgYGvRfvGHgokeCxKTdqojJewYTKuKuYMYMYMKuYMYMYMKuYMYMYMKuKueieNHLkMFEWCiAIGACCmyCEmCgFERFuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqgcaptdaVkYbHywGQsQeEISUbuAqmAGWFLVuDRkRkRkczwyambnmEOOOOOOQcLoOOqjvrlcCsIkCCIkUuIpTZBRyrKavFCiuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqnnyExWSCXmSCVbzwVbgYcFTdTwVwmsPtENYTrwkUkUNfkUwiAQIrAQAQsgAQEQeieivhVfFECgyTblEtblXRLTXRozRFJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWrJrsSCJddyVbhhcFTdIAugCZSLENatEpERERwSERbibibrbibicURZQjquAQWyvLFEhIyTbllxfjXRmLUZozuqJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWjVhbSClmJjVbkmnzTdHiobmsobPtKLMtERrWSHzgbiSiKGHXbiqLyieieieiSjePFEUMxTblkcjhXRkrBQozuqJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWzHsPSCXoTqVbQBIxTdDqnShkJeShofEKERlCjDajbigKsnGubiUriWbdSzDCJbUfFEXvZublPZrCXRGFUdozuqJEuquququququququququququququqZduquququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKRFxWSlVBSCHIRhVbzicFTdaNbOYFYFWnYFYFERdvPIWlbiLXkLegbinfnfcJnfnfSjLEFEwPyTblodbZXRLqztozeaEGuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqmCgHYdSClqSCusQrVbgYFRTdhpzMYFVvSYHtYiERERIZIZbiwEwEbibiuvOeNoWanfmSxxFElYyTblrAblXRUXXRoztjIVuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFTdgYWgWhNtaPlrHYXsTdQfGXYFTcmzYrKObUEZITITITITITRIHHzrrcKJQMnfvtidFECgyTCgpiCgiyLmFlgPEGuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDTdgYcFgYgYGVGNGNGNgGYSFvYFeKSUMLCobUqXxexexexexeuwHHTFpJAyeZnfSjyxFEbzeMgzTQvPvPulCgFEbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPZXrKPMPMRtPMPMPMPMrgOvYFYFYFYFYFYFqXxexexexexeuwnfnfnfnfnfnfSjMCWuWuWuKlWuWuWuOhnLWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququqZduquququququququququququququququququququququqEHnmCBPMKAnomvPHRqmMrgbwjaYFJsJsJsYFqXxexexexexeuwnfOAOAOAnfNQpgouTvIwcoZlTkHOJFDvoeuQuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqEHnmCBPMLjEopNBzNriFLCkjKFKFKFKFKFKFqXxexexexexeuwfrfrfrfrfrfrMDYtMvzlzloDUjdjJFDvSMuQuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqNPNPCBPMNCnobvnoFzmMrgWKKFliTLAeqKMNqXxexexexexeuwjzfuJHQeIzfrnXeieieieiaEsmsmJFDvWuWuuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPFICBPMbJlQmcoTrZmMJAnCKFTNArLitGMNNTEfEfEfEfEfMhjzjAhKVyDcfrJhaXaDaDaDaDaDaDCtDvawWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPRaCBPMmMmMmMmMmMmMwuutKFpmKMWWxHvuvuATATICPAPAICICFKbtCbSPfrAZmQaDwKmNEswcJUCtDvmBWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFNPbVRLXcvdvMCAwJLsIYKdWKKFKFKgKFKFvuBrAqQdICdaWkRMICfrfrTxfrfrnXWjYLBnscigoocPCtDvoeWuRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqsyyzekMlIbVPIYIYIYIULRIYiawWukkUXxuSXUvuAPWEVHICdciTDeICcZeWChAQhNdGWjryZrcSBKcDnuCtUvLuWwvFJOuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqibuquququqncRFNPNLToIgKiKzMOfboCFuSaoUobobMqobbgvuYsABQaICzRMQoAICGKeiDzeieinXWjdWxshVBKcDyICtDvoeWuRFJEuquququqpzuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJuquququqncuqNPyNbQXcIYIYIYkQkyIYxCswHWBISBYTiIvuvugfvuICICqwICICBLeiimlDaEnXWjaDzGLKNMMJafCtlTHVWuuqJEuquququqJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqncuqNPldDrXcvdPURikQQSIYhRJvTTWflvcOHlueuerPQFfNImieuCnQmmseaQclfzOtcHaDIhIQZascalCtDvoeWuuqJEuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqncuqNPwQaOXcIYIYIYkQSGIYkecKFkJtZUcdYTYToFYTYTxceieijneieiWsknwnVRnXWUDsruQqgUQZcRCtiloeWuuqJEuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqhDyzekRgIbvmUmUmeLkQiRIYcLqyoEoEoEoEoEoEoEoEhJhJhJhJhJhJhJhJhJhJhJONtwaDavsqSrBossCtORLuWwvFEGuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFRFuquqRFRFNPnmToXcXPZkSXKoRKIYWzcGoEhPxiFQFBargCoEiGzkhJsfBVfmhJSDCRRbhJWqWjaDaDaDXOaDaDCtCYoeWuRFRFuquqRFRFJEuququququququququququququququqZduquququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFRFuququqRFNPtBXzqENHNHitNHNHNHresGnxbTVaVaVttZOgoEJkbfZxgTREOjsIgZBjIchJDJWjXrMrvYfRZcbWCtLfoeWuRFuququqRFRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqSdDDRFuququqbDNPnmToqEinPFzPEwEwNHMIHPoEYoYoYonOGGcfoEpXpvhJVqQIPQhJhJhJhJhJhWWjNbfoAOjQscrVCtQzKYWubDuququqRFRFJEuquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququqGauquququququququququququququququququqRFkJRFRFuquqbDNPnmToqExSgIpSCuMZNHnJbsoEoEoEoErLoEoEoEhJuVhJlZzfuZEBuiBjIchJVzMHNbYbvYSfZcEWCtDvoeWubDuquqRFRFeaEGuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFRFuququqEHnmToqEjdcuUycuOMNHuGDkFGASMfeOmhNwslFGEuoHhJGnwRCJhJsKXiRbhJgdxxaDaDaDfJaDaDCtDvoeuQuququqRFRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFRFbDuquqEHnmToqEylSVSVSVkKNHbulfTXdqqnFrKRFrRrmRbGPphJhJhJhJhJhJhJhJhJKHxFiMRlnHSbfsuXypbBQUuQuquqbDRFRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFbDbDbDuqrakAkfqEMsNHMsNHMsNHZOWSFGFGFGYRnwopFdFGepmJNvqhLrKWHRTYqhananzQklLFwgQRTfAbGoSckqPRWuuqbDbDbDRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququoKsuqbDrarararavTJPqEaxNHDyNHaxNHIWtJLWGCFGFGFGFNFGFGCGdwYfBFRHQhQhAuqhlRCLXuCVaMaMaMtqaMaMDxDxDxymfgfgymbDuqAMvXuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqgakJuqraraUBynILILnPqENHNHNHNHNHNHqvtJeVHCCGMXVCVsfLxgCGNgJxqhJqQpaRZqqhpUeVXukvaMoSXpDPdskdDxfMzTYjdFlaymymuqJEFPuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqbDSdYPYPKmjpqqwFwFjOVhvkmfmlctnFAjiJtJpaocCGoYgDdHHyTKCGecOcqhddvWZigFqhOHpaXujgMgoLPljIDxDxDxuYZAZAxtZAdzymymJEbDuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqbDraraZSfErlaAwFpbJWVhjWoRSZriVdlzETSJCGCGCGCGCGoWfHoMCGikQAqhqhqhqhqhqhqDqDTOXJMgguSTDWeogXbehqvVvVvNTGYWeYVgoibDuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqrararararaRYqqwFJlGdVhvKOFOFApUcAjQvYICGKcGZCUCGvbhsevCGiBJxqDlXefRPcsqaOUqDjHDKMgoLPlFUDxaZDxHDuzEzsXHqbcHrelymymuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqsWxMQbpIzdRYsFwFTIOmVhwtwtDVnjmKAjdPoyRnohciMKRTpAirDAqWQJMMVADftvyuLUerdrDaiLyWaMUNFMJThxglDxDxDxDxDxTpDxDxDxDxymuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqKkqdZotxSWFFqqwFYEBNVhVhVhAjAjAjAjhgshCGcpPVqRCGhviphvCGOdQOqDznOlEMPzwormqDnGXJaMaMaMuUZZZZDxXQAdjxKKpklKwvaLnbxouquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDrararararaXgqqwFwFpOwFPdfOvjgnrkDmhgNlCGCGCGCGCGCGCGCGCGtataqDqDqDqDqDqDqDqDXuHpnItIxzhMhmNuDxJVRNlnggeRggUtRNJVxobDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDViOzYnxlwULnYkvTpfUwXqXqvfvUOZOZGhnTnYnTmDXeiSyOZBcAckmrgqIesMltYNbRdXbhytdnqTRAnIJKWoUEZWrDDxKSRNOYFfzvyfZTRNKSjbbDuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququqZduquququququququququququququququququqeaGjWxvTrfPGvnpPNInBtcySmafOuuBlBlBlcIfSSOrGXYjThghghgosUkmIhghghghghgKXOkhtXFOaDdnIuRjGnEcvIPDxDxOqDxUVGbdgDxTsDxymRFuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqSNEGraiUumumULumqqUaUaUapCpCpCpCpCpCpCsCxbuWdldldldldldldlpHdlgQgQgQgQgQgQgQgQWRWRgMWRWROXUAUDfpDxXQAdBmbKFqjkExaLnbxoRFpzuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFraiUumlIEXumUQRsgVJgpCucVoZNteCTtuyjPNuWdlNSQKsRZCNmwpleVEPsxDdOcQWPHBdodYWRMidpsYGcBZzUTjcwDxPkRNkIggAfggjuRNfvxoRFJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFraiUumQljmumTbUaBWnepCKeTrtYtYaytujRDOuWsSzzpVpVYQonpVBeECPspwsZgQPsPsgQLvWRMyJcLPyvQEBulGyUDxKSRNAirTeRrTLtRNKSkNRFJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqraiUumKDngumMnUaexfQpCpCaJtYAtempCDtceuWpRxfxfxfxfpRpRXaYhgQuPtzfKPPgpPsKbqAqAqAqAqAyqBBtOdZDxDxlbDxcjGbNXDxLQDxymuqJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqViiUumKPcCJpPLUaPunlpCAatWGBvweulOBCzsuWrnoJaTqVMFrIpRZJTBYGuIxumVdQHngQKbqAzXFYzXqAWRpsWRWRDxCnWiQmbKeRjkIOtACnxouqJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqraiUumumumumDQUaUaMVpCpCZQtYtYADpCPrDOuWdCMGMGMGMGSSNsjFwpgQdQDodQdQWAPsKbqAjjWXyYqAXndeFcGUDxRNbLYcggeRggVlbLRNxouqJEuquququququququququququququququququququqZduququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqsavXraKZInifififXMEcEcgtpCndZQtYtYURtuYBBHuWdEvCvCdLvCDnpRKCwpPsWthAvJPsPsgQHEqAnthByQqATnQHiwbPDxkusHzIKBhZErorwjEqSReaEGuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqRFJEravTwmWMWMWMWMWMWMWMpCNxsOzKeJxktucVPwuWvqZgvikHZgvapRSuNZPshiuJffqbVTPnqUqAFWpMduhalHfxvvXNDxDxDxCSiCiCiCiCiCiCVgtTRFuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqhwGLuFtEAgWMClRzUpHSRzqlpCpCpCpCpCpCpCPrDOuWpRxfxfxfxfpRpRHbstgQgQPsPsgQgQgQgQqAkzGEXGqANdmttfhdJQZMxjGlXTPJDHARrdBXpQsaIVuquququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqRFViJoLyWMwqRzRzRzRzTPvyXHCKByPEJzzLUTiQBDaIwwwwzOmYZfDNlPwNYJqMwOXWWQWdlAlVqAOVcXesqApFOIJQJQJQFOWeazStsjpQQDivGqkVRFuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDViBPwmWMmPUoTCTCNACWmWTRjZTDjZLOSEMdKUuWUGdIdIdIbSmGmGXlLxmbdIdIdIdIdIdIyLqAqAqAqAqAWZbNJQwIrjQyXTKNXTgkpQQDivBXkVbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququqZduququququququququququququqbDraCcwmWMLpkgzZoZAnFxRSWHDOuxPCeyvzQtPCuWiYOTuhuhuhuhOTIBCPKrnKxJxJxJxJnKqgoXXSkaSkoXnNtDJQXtoxpjXTYwXTWmDHEPivmXpQbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDragwrBWMwkkgyPZhAnfeRSmHufrMPCeyWHQtPCXVuNybihbaomihybIBcnKrGSVYxOqHVYdUoGoXkpWvvIoXCpzSJQUFcTQyXTFAXTBEDHFXpLxQpQbDuququququququququququqZduququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDraxwwmWMsTkgzZrtAnqkRSWHDOQtPCeyWHfDlwXVuNOTOLLlLlKwOTIBCPKrnKzVyHyHVXnKoGoXtrlNyDptALLkTlRmNVwBkCIRkCAsMRRoNqObkVbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqRFravTNpXDgSjiOBOBsNaCRSWHpdQtmdeyWHQtPCXVuNOTUWfifiiHIujNCPUUMaVmpepeeUnKoGoXUxEkIEoXcqmiJQdMsjDGuTDGsjJwWchrYzSqRyvXuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqpzRFraGyOzWMSnkORzRzRzFyRSHfveHGtmeyghhoTyuWuNOThybYbYycOToGCPuNnKgOHdHdwCdUoGoXpupqYuoXYedNJQRROoPBlWPBOobbDHqxYCmypQJEpzuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFrararanknkHenynynynknkLZuBuBLZNYuBuBuBLZuNybTibYbYKQyboGCPuNGSJDHdHdYqdUoGkPDbDbkPkPFnGIbjbjLGLGbjLGLGbjpQpQRVpQpQsaXAuquququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqRFJERFbDbDRFRFbDJEbDuqbDbDRFbDuquqbDJEbDuqbDEJuNOTOTLlLlOTOToGcnuNnKnKyHyHnKnKoGEJbDuqRFRFJEuqbDbDuqbDRFbDuqbDRFbDuquqbDRFJERFuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqeaGLvFvFvFvFvFhEenvFvFvFvFvFhEvFvFvFoqvFvFvXEJAxboOTOTOTOTbooGCPuNVQnKnKnKnKVQKTEJeavFvFvFenvFvFCxvFvFvFvFvFvFhEvFvFvFvFvFcbvXuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFRFuququqbDJEuquququququqJEbDuquququqbDJEEJnAyKyKyKyKyKyKsiJIdAPYPYPYPYPYPYUJEJJEbDuquququqbDJEuquququququqJEbDuququqRFRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFRFuquqRFRFJERFRFRFRFRFRFJERFRFuquququqJEEJEJVnVnVnVnVnVnVnVnVnVnVnVnVnVnVnEJEJJEuquququqRFRFJERFRFRFRFRFRFJERFRFuquqRFRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFuququqRFRFsavFvFvFbyvFvFEGRFRFuquququqWbvFvFvFvFvFvFvFvFvXuqRFRFbDbDuqbDbDRFRFFPuquququqRFRFsavFvFdkvFvFvFEGRFRFuququqRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJEuququququqRFRFRFRFRFRFRFRFRFRFuquququququququququququququqsaIVRFuquququququququququququququqRFRFRFRFRFRFRFRFRFRFuququququqJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqFPuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqFPuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququqetuququququququququququququququququququququqyXuquququququququququququququququququququququququququqetuquququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq "} diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index 95df34bba21..00de3e2131b 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -1,43490 +1,2651 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"ab" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftstarboard) -"ac" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"ad" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"ae" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"af" = ( -/obj/item/bee_pack, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/weapon/tool/crowbar, -/obj/item/bee_smoker, -/obj/item/beehive_assembly, -/obj/structure/closet/crate/hydroponics{ - desc = "All you need to start your own honey farm."; - name = "beekeeping crate" - }, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/beehive_assembly, -/obj/item/bee_pack, -/obj/item/bee_pack, -/obj/item/bee_pack, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ag" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"ah" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "CO2 Filter"; - tag_north = 2; - tag_south = 1; - tag_west = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"ai" = ( -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"aj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "Hydroponics/Kitchen Access"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hydroponics) -"ak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"al" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/green, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"am" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"an" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"ao" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"ap" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"aq" = ( -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"ar" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"as" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"at" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"au" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"av" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/mob/living/simple_mob/animal/goat{ - name = "Ted" - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"aw" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/symbol/sa{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"ax" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"ay" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"az" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"aA" = ( -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/fore) -"aB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"aC" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"aD" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#e6ab22"; - fill_color = "#877242"; - name = "Combustion Workshop"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/combustionworkshop) -"aE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"aF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"aG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"aJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_mob/animal/passive/cow, -/turf/simulated/floor/grass, -/area/hydroponics) -"aK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"aL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"aM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"aN" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/locker) -"aO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"aQ" = ( -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"aR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"aS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "botanylockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"aU" = ( -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/aftport) -"aV" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"aW" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"aX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"aY" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"aZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ba" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"bb" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bc" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bd" = ( -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"be" = ( -/obj/machinery/computer/station_alert, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"bf" = ( -/turf/simulated/open, -/area/stellardelight/deck2/triage) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/port) -"bh" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/hatch/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"bi" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"bj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "\improper HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/engine_room) -"bk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"bl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"bm" = ( -/obj/structure/sign/directions/science{ - pixel_x = 32 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = 12 - }, -/obj/structure/sign/directions/stairs_down{ - pixel_x = 32; - pixel_y = 18 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/aftport) -"bn" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "32-1" - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/triage) -"bo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"bp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"bq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"br" = ( -/obj/structure/sign/directions/science{ - pixel_x = -32 - }, -/obj/structure/sign/directions/dorms{ - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - name = "\improper Shuttle Bay"; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - pixel_x = -32; - pixel_y = 12 - }, -/obj/structure/sign/directions/stairs_down{ - pixel_x = -32; - pixel_y = 18 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/aftstarboard) -"bs" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"bt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "botanylockdown"; - name = "Window Lockdown"; - pixel_x = -25 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bu" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/masks, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"bv" = ( -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/aftstarboard) -"bw" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"bx" = ( -/obj/structure/sign/double/barsign, -/turf/simulated/wall/bay/steel, -/area/crew_quarters/bar) -"by" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"bz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/camera/network/engine{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/engineering/engine_room) -"bA" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"bB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"bC" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/starboardescape) -"bD" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"bE" = ( -/obj/machinery/door/blast/angled, -/turf/simulated/floor, -/area/quartermaster/storage) -"bF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/storage) -"bG" = ( -/obj/structure/cable/yellow{ - icon_state = "32-8" - }, -/obj/structure/sign/department/miner_dock{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/storage) -"bH" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"bI" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/portescape) -"bJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"bK" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/sleeper{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/sleeper_console{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/body_scanner{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/scanner_console, -/obj/item/weapon/circuitboard/grinder{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/bioprinter{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/chem_master{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"bL" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"bM" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/mob/living/simple_mob/animal/passive/opossum/poppy, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"bN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"bO" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/mob/living/simple_mob/otie/red/chubby/cocoa, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"bP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/alarm/angled, -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"bQ" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"bR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "maintenance access"; - req_one_access = list(24); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos/monitoring) -"bS" = ( -/obj/machinery/biogenerator, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bT" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"bU" = ( -/obj/structure/filingcabinet, -/obj/machinery/light, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"bV" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/bar_guide, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"bW" = ( -/obj/effect/floor_decal/milspec/cargo, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"bX" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"bY" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftport) -"bZ" = ( -/obj/machinery/computer/atmoscontrol, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 6 - }, -/obj/machinery/requests_console/preset/engineering{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"ca" = ( -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"cb" = ( -/obj/structure/table/fancyblack, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"cc" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Engine - Core"; - charge = 2e+006; - input_attempt = 1; - input_level = 200000; - name = "Engine"; - output_level = 250000 - }, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"cd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/engineering/storage) -"ce" = ( -/obj/machinery/vending/wardrobe/cargodrobe, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"cf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"cg" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/requests_console/preset/bridge{ - pixel_y = 30 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"ch" = ( -/turf/simulated/wall/bay/r_wall/green, -/area/crew_quarters/kitchen) -"ci" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"cj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"ck" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"cl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/monitoring) -"cm" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/engineering/storage) -"cn" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"co" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"cp" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/power/thermoregulator, -/turf/simulated/floor/plating, -/area/engineering/storage) -"cq" = ( -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "burn_chamber"; - output = 63 - }, -/obj/machinery/camera/network/engine, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"cr" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"cs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"cu" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"cv" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"cw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"cx" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"cy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Void"; - sortType = "Void" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"cz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/sign/department/cargo{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"cA" = ( -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"cB" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"cC" = ( -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"cD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"cE" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"cF" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"cG" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"cH" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - dir = 8; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"cI" = ( -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/storage/art) -"cJ" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"cK" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"cL" = ( -/obj/structure/cable/cyan{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"cM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"cN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "engine_airlock"; - pixel_y = 24; - req_one_access = list(10,11); - tag_airpump = "engine_airpump"; - tag_chamber_sensor = "engine_sensor"; - tag_exterior_door = "engine_exterior"; - tag_interior_door = "engine_interior" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "engine_airpump" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/engineering/engine_room) -"cO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"cP" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"cQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - req_access = list(25); - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/barbackroom) -"cR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"cS" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"cT" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"cU" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"cV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"cW" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/button/remote/blast_door{ - id = "kitchenlockdown"; - name = "Window Lockdown"; - pixel_x = 2; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"cX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "qmwindows"; - name = "Privacy Shutters" - }, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/quartermaster/qm) -"cY" = ( -/obj/machinery/light, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"cZ" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/weapon/folder/blue_captain{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/table/darkglass, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/requests_console/preset/captain{ - pixel_x = -30 - }, -/obj/item/weapon/melee/chainofcommand, -/obj/item/weapon/folder/blue_captain{ - pixel_x = -6 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"da" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"db" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper{ - info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; - name = "grid checker info" - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/simulated/floor/plating, -/area/engineering/storage) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"de" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"df" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/power/grid_checker, -/turf/simulated/floor/plating, -/area/engineering/storage) -"dg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"dh" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"di" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/poster{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"dj" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"dk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"dl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/engineering/storage) -"dm" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_x = -32; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"dn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/disposal/wall, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"do" = ( -/turf/simulated/wall/bay/brown, -/area/quartermaster/storage) -"dp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"dr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"ds" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"dt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"du" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"dv" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"dw" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"dx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"dy" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"dz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"dA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/workshop) -"dB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"dC" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/portaft) -"dD" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"dE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"dF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"dG" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/closet/walllocker_double/north{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"dH" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/obj/machinery/camera/network/engine{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"dI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"dJ" = ( -/obj/machinery/status_display/supply_display{ - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"dK" = ( -/obj/machinery/computer/transhuman/designer{ - dir = 8 - }, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"dL" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftport) -"dM" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"dN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"dO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"dP" = ( -/turf/simulated/floor/grass, -/area/hydroponics) -"dQ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"dR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"dS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"dT" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"dU" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"dV" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/o2production) -"dW" = ( -/obj/structure/closet/secure_closet/engineering_electrical/double{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"dX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"dY" = ( -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"dZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"ea" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"eb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "d2_portmaint_airpump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "d2_portmaint_airlock"; - pixel_y = 24; - req_one_access = list(13); - tag_airpump = "d2_portmaint_airpump"; - tag_chamber_sensor = "d2_portmaint_sensor"; - tag_exterior_door = "d2_portmaint_exterior"; - tag_interior_door = "d2_portmaint_interior" - }, -/obj/machinery/airlock_sensor{ - dir = 1; - id_tag = "d2_portmaint_sensor"; - pixel_y = -24; - req_access = list(13) - }, -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"ec" = ( -/obj/effect/floor_decal/milspec/color/blue/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"ed" = ( -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"ee" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"ef" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer W"; - name = "Medbay Doors Control"; - pixel_x = -6; - pixel_y = 32 - }, -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"eg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/fuelstorage) -"eh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"ei" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"ej" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ek" = ( -/obj/structure/sign/directions/recreation{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"el" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/engineering/storage) -"em" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"en" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/aftstarboard) -"eo" = ( -/obj/structure/closet/secure_closet/engineering_welding/double, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"ep" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"eq" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/storage) -"er" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"es" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Sorting Office"; - sortType = "Sorting Office" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"et" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"eu" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ev" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/shoes/black, -/obj/item/device/communicator, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"ew" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "bridgelockdown"; - name = "Bridge Lockdown"; - pixel_y = 2 - }, -/obj/effect/floor_decal/milspec/color/blue/corner, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"ex" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ey" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "atmoswindowlockdown" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"ez" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"eA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardfore) -"eB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"eC" = ( -/turf/simulated/wall/bay/steel, -/area/storage/primary) -"eD" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/sign/directions/stairs_up{ - pixel_x = 32 - }, -/obj/structure/sign/directions/stairs_down{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"eE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"eF" = ( -/obj/structure/table/reinforced, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"eG" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"eH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"eI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"eJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"eK" = ( -/obj/structure/table/steel, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"eL" = ( -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"eM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"eN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"eO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"eP" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"eQ" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/requests_console/preset/engineering{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"eR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"eS" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/med_data/laptop, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"eT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"eU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"eV" = ( -/obj/structure/sign/directions/recreation{ - dir = 8; - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"eW" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"eX" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"eY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"eZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"fa" = ( -/obj/machinery/door/window/westright{ - dir = 1; - req_one_access = list(35,28) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/grass, -/area/hydroponics) -"fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"fc" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "starboard_escape_pod"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/starboardescape) -"fd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"fe" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboardescape) -"ff" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"fg" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"fh" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"fi" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"fj" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"fk" = ( -/obj/machinery/vending/engivend, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"fl" = ( -/turf/simulated/wall/bay/steel, -/area/crew_quarters/locker) -"fm" = ( -/obj/machinery/vending/wardrobe/engidrobe, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"fn" = ( -/obj/structure/sign/directions/evac{ - dir = 6; - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"fo" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/device/perfect_tele{ - name = "manager's translocator" - }, -/obj/structure/table/darkglass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"fp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"fq" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"fr" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"fs" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"ft" = ( -/obj/machinery/vitals_monitor, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"fu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"fv" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"fw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"fx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"fy" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/closet/crate/medical{ - desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; - name = "NanoTrasen Emergency Supply Crate" - }, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"fA" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"fB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"fG" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"fI" = ( -/obj/effect/floor_decal/milspec/color/white/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"fJ" = ( -/turf/simulated/open, -/area/stellardelight/deck2/aftstarboard) -"fK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"fL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vermin, -/obj/machinery/station_slot_machine, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"fN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "\improper HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/engine_room) -"fO" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"fP" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"fQ" = ( -/obj/structure/lattice, -/obj/structure/cable/orange{ - icon_state = "32-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/atmos) -"fR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"fT" = ( -/obj/structure/table/reinforced, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/structure/closet/walllocker_double/north{ - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/fiftyspawner/wood, -/obj/item/stack/material/glass/phoronrglass{ - amount = 20 - }, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/plastic, -/obj/item/stack/material/plasteel{ - amount = 30 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"fU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"fV" = ( -/turf/simulated/floor, -/area/bridge) -"fW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"fX" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/portescape) -"fY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"fZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/storage) -"ga" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"gb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/smartfridge/sheets/persistent_lossy, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"gd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"ge" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"gf" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"gg" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer W"; - name = "Medbay Doors Control"; - pixel_x = -6; - pixel_y = 32 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"gh" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/robotics{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/mecha_control, -/obj/item/weapon/circuitboard/aifixer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"gi" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"gj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"gk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"gl" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"gm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - frequency = 1380; - id_tag = "port_escape_berth"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"gn" = ( -/obj/structure/displaycase, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"go" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Air to Ports" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"gq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/status_display/supply_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"gr" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"gs" = ( -/obj/machinery/atmospherics/unary/vent_pump/engine{ - external_pressure_bound = 100; - external_pressure_bound_default = 0; - frequency = 1438; - icon_state = "map_vent_in"; - id_tag = "cooling_out"; - initialize_directions = 4; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"gu" = ( -/obj/machinery/firealarm/angled, -/obj/item/device/defib_kit/loaded, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"gv" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "32-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/starboardfore) -"gw" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"gx" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/westright{ - req_one_access = list(35,28) - }, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"gy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"gz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/east{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"gA" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/fore) -"gB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"gC" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"gE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"gF" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"gG" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/wall{ - dir = 4; - pixel_x = -24; - plane = -34 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"gH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"gJ" = ( -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"gK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"gL" = ( -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"gM" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"gN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"gO" = ( -/obj/structure/table/standard, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/packageWrap, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"gP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"gQ" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"gR" = ( -/obj/structure/closet/firecloset, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"gS" = ( -/obj/structure/dispenser, -/turf/simulated/floor/plating, -/area/engineering/storage) -"gT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"gU" = ( -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"gV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"gW" = ( -/obj/machinery/power/tesla_coil, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"gX" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"gY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"ha" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"hb" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"hc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"hd" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"he" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"hf" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/bay/r_wall/green, -/area/hydroponics) -"hg" = ( -/obj/structure/shuttle/window, -/obj/structure/grille, -/turf/simulated/floor, -/area/stellardelight/deck2/portescape) -"hh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"hi" = ( -/obj/structure/closet/walllocker_double/medical/north, -/obj/item/weapon/storage/box/body_record_disk, -/obj/item/device/retail_scanner/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"hj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"hk" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"hl" = ( -/turf/simulated/wall/bay/green, -/area/crew_quarters/kitchen) -"hm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"hn" = ( -/turf/simulated/wall/bay/white, -/area/medical/cryo) -"ho" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"hp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"hq" = ( -/obj/structure/sign/department/ass, -/turf/simulated/wall/bay/brown, -/area/storage/primary) -"hr" = ( -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"hs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "Engineering EVA Storage"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#913013" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/workshop) -"ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"hu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"hw" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"hx" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"hy" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"hz" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/item/stack/cable_coil/yellow, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"hA" = ( -/obj/structure/closet/walllocker_double/south{ - dir = 2; - pixel_y = 30 - }, -/obj/item/weapon/storage/pill_bottle/dice_nerd, -/obj/item/weapon/storage/pill_bottle/dice, -/obj/item/weapon/storage/dicecup, -/obj/item/weapon/deck/cah, -/obj/item/weapon/deck/cah/black, -/obj/item/weapon/deck/cards, -/obj/item/weapon/deck/cards/casino, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"hC" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"hD" = ( -/obj/structure/bed/chair/sofa/corp/left{ - dir = 4 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"hF" = ( -/obj/machinery/vending/wallmed1{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"hH" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"hI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"hJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"hK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"hL" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/white, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"hM" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"hN" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2/O2 Filter"; - tag_east = 4; - tag_north = 2; - tag_south = 3; - tag_west = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"hO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"hP" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/disposal/wall/cleaner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"hQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"hR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"hS" = ( -/obj/effect/floor_decal/milspec/cargo, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"hT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Resleeving"; - sort_tag = "Resleeving" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"hU" = ( -/obj/structure/disposalpipe/tagger/partial{ - dir = 8; - name = "partial tagger - Sorting Office"; - sort_tag = "Sorting Office" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"hV" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"hW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"hX" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"hY" = ( -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start/bartender, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"hZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"ib" = ( -/obj/machinery/power/grounding_rod, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"ic" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"ie" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"if" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ig" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ih" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ii" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ij" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/table/bench/steel, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"ik" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/bodyscanner{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"il" = ( -/obj/machinery/vending/assist, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"im" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"in" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"io" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/intern, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"ip" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - id = "psychshutter"; - name = "Privacy Shutter" - }, -/obj/structure/low_wall/bay/reinforced/white, -/turf/simulated/floor, -/area/medical/psych) -"iq" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"ir" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/bar) -"is" = ( -/obj/structure/cable/cyan{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"it" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"iu" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"iv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"iw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"ix" = ( -/obj/structure/bed/chair/sofa/corp{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"iy" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"iz" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"iA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/storage) -"iB" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/requests_console/preset/cargo{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"iC" = ( -/obj/structure/sink/kitchen{ - pixel_y = 20 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"iD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"iE" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32 - }, -/obj/structure/sign/directions/stairs_up{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftstarboard) -"iF" = ( -/obj/machinery/door/window/brigdoor/northleft{ - dir = 4; - name = "Kitchen"; - req_access = list(28) - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"iG" = ( -/obj/structure/cable, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Power - Main"; - charge = 2e+007; - cur_coils = 4; - input_attempt = 1; - input_level = 500000; - name = "Main"; - output_level = 1e+006 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"iH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"iI" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"iJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"iK" = ( -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/manipulator, -/obj/structure/table/rack/steel, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/circuitboard/autolathe, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"iL" = ( -/obj/structure/grille, -/obj/structure/shuttle/window, -/obj/effect/shuttle_landmark{ - base_area = /area/stellardelight/deck2/exterior; - base_turf = /turf/simulated/floor/airless; - docking_controller = "starboard_escape_berth"; - landmark_tag = "starboard_ship_berth"; - name = "Stellar Delight Escape Pod Starboard" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboardescape) -"iM" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/structure/closet/walllocker_double/north, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"iN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "Hydroponics/Kitchen Access"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/kitchen) -"iO" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"iP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/requests_console/preset/medical{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"iQ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardfore) -"iR" = ( -/obj/machinery/power/tesla_coil, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"iS" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"iT" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"iU" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"iV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"iW" = ( -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - dir = 8; - id = "MedbayFoyer W"; - name = "Medbay Doors Control"; - pixel_x = 25 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"iX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#9c9c9c"; - name = "Bar"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"iY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"iZ" = ( -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"ja" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"jc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"jd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"jf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/injector_maker{ - pixel_y = 21 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"jg" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"ji" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jj" = ( -/obj/structure/easel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"jk" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"jm" = ( -/obj/structure/table/reinforced, -/obj/item/device/gps/engineering{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/device/gps/engineering{ - pixel_y = 3 - }, -/obj/item/device/gps/engineering{ - pixel_x = -3 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"jn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"jo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/green, -/turf/simulated/floor, -/area/hydroponics) -"jp" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"jq" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"jr" = ( -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"js" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"jt" = ( -/obj/machinery/vending/nifsoft_shop, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"jv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"jw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "glass airlock" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"jx" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"jy" = ( -/obj/structure/sign/directions/cargo{ - pixel_x = -32; - pixel_y = -35 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -29 - }, -/obj/effect/floor_decal/milspec/color/blue/corner{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -41 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"jA" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/machinery/door/window/northleft{ - name = "Atmospherics Hardsuits"; - req_access = list(24) - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/suit/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/item/clothing/head/helmet/space/void/atmos, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"jB" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"jC" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"jE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"jF" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jG" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_y = 5 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"jI" = ( -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"jJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jK" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"jL" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"jM" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/hydroponics) -"jN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"jO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "\improper HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/engineering/engine_room) -"jP" = ( -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"jQ" = ( -/turf/simulated/floor/reinforced, -/area/quartermaster/storage) -"jS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"jT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"jU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "bridgelockdown" - }, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/bridge) -"jV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"jW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"jX" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"jY" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"jZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"ka" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "Particle Accelerator"; - req_access = list(10); - stripe_color = "#913013" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_room) -"kb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/triage) -"kc" = ( -/obj/machinery/computer/power_monitor, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"kd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ke" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"kf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"kg" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"kh" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"ki" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"kj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"kk" = ( -/obj/machinery/vending/blood, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"kl" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"km" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"kn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ko" = ( -/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med, -/obj/structure/table/reinforced, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"kp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"kq" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/weapon/stamp/cargo, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"kr" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ks" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/mech_recharger{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/circuitboard/cell_charger{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/recharger{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/recharge_station{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/arcade/battle, -/obj/item/weapon/circuitboard/arcade/clawmachine{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/arcade/orion_trail{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/jukebox{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"kt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/aftport) -"ku" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"kv" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"kx" = ( -/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"ky" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"kz" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1; - name = "cold loop pump" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"kA" = ( -/obj/structure/table/reinforced, -/obj/random/toolbox, -/obj/item/device/geiger, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"kB" = ( -/obj/structure/table/standard, -/obj/item/clothing/under/pizzaguy, -/obj/item/clothing/under/pizzaguy, -/obj/item/clothing/under/pizzaguy, -/obj/item/clothing/head/pizzaguy, -/obj/item/clothing/head/pizzaguy, -/obj/item/clothing/head/pizzaguy, -/obj/machinery/status_display/supply_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"kC" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"kD" = ( -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#323d80"; - name = "Bridge"; - req_access = list(19); - req_one_access = list(19); - stripe_color = "#f7d35c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/briefingroom) -"kE" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/recreation_area) -"kF" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"kG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"kH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"kI" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"kJ" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"kK" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Bar"; - sortType = "Bar" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"kL" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"kM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"kN" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"kO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"kP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"kQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"kR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/green, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "botanylockdown" - }, -/turf/simulated/floor, -/area/hydroponics) -"kS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"kT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#e6ab22"; - fill_color = "#877242"; - name = "Tech Storage"; - req_access = list(23); - stripe_color = "#913013" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_eva) -"kV" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"kW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"kX" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"kY" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"kZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"la" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"lc" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"ld" = ( -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine{ - department = "Medical" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"le" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#a6753d"; - fill_color = "#75736f"; - name = "Quartermaster"; - req_access = list(41); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/quartermaster/qm) -"lf" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"lg" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/clothing/glasses/omnihud/all, -/obj/item/weapon/disk/nuclear, -/obj/item/weapon/paper/dockingcodes/sd, -/obj/item/device/retail_scanner/command, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"lh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "maintenance access"; - req_one_access = list(24); - stripe_color = "#e6ab22" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos/storage) -"li" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"lj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"lk" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/machinery/door/window/southright{ - dir = 1; - name = "Engineering Hardsuits"; - req_one_access = list(11) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"ll" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"lm" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"ln" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"lo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"lq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "\improper RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"lr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"ls" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"lt" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"lu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"lv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"lw" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/powermonitor{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/stationalert_engineering{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/atmos_alert{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/rcon_console, -/obj/item/weapon/circuitboard/atmoscontrol{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/drone_control{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"lx" = ( -/obj/machinery/power/tesla_coil, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"ly" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"lz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start/chef, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"lA" = ( -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/obj/machinery/light/small, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"lB" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"lC" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"lD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"lF" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"lG" = ( -/obj/structure/bed/chair/sofa/corp/right{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"lI" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/westleft{ - req_one_access = list(35,28) - }, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"lJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - door_color = "#9c9c9c"; - name = "Commons"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/recreation_area) -"lK" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"lL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"lM" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/turf/space, -/area/space) -"lN" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"lO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"lP" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"lQ" = ( -/obj/structure/sign/directions/chapel{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions{ - desc = "A direction sign, pointing out the way to the shuttle bay."; - dir = 1; - name = "\improper Shuttle Bay"; - pixel_x = 32; - pixel_y = -12 - }, -/obj/structure/sign/directions/stairs_down{ - dir = 1; - pixel_x = 32; - pixel_y = 12 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"lR" = ( -/obj/machinery/vending/wardrobe/virodrobe, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"lS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"lT" = ( -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/structure/sign/department/bar{ - pixel_y = 32; - plane = -34 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"lU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"lV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "engine_interior"; - locked = 1; - name = "Engine Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "engine_airlock"; - name = "interior access button"; - pixel_y = 32; - req_access = list(10,11) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_room) -"lW" = ( -/obj/machinery/medical_kiosk{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"lX" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Jetpack Storage"; - req_one_access = list(11,24) - }, -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"lY" = ( -/obj/structure/sign/directions/library{ - dir = 1; - pixel_x = -32 - }, -/obj/structure/sign/directions/dorms{ - dir = 1; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_x = -32; - pixel_y = -12 - }, -/obj/structure/sign/directions/stairs_down{ - dir = 1; - pixel_x = -32; - pixel_y = 12 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"lZ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"ma" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"mb" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/obj/machinery/station_map{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"md" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/loadout_misc, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"me" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"mf" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"mg" = ( -/obj/random/vendordrink, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"mh" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"mi" = ( -/obj/structure/sign/department/bridge{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"mj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"mk" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"ml" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"mm" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"mn" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"mo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"mq" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/fuelstorage) -"mr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/engineering/engine_room) -"ms" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"mt" = ( -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"mu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#e6ab22"; - fill_color = "#877242"; - name = "Combustion Workshop"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos/monitoring) -"mv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"mw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"mx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"mz" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"mA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"mB" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"mC" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - icon_state = "emitter1"; - state = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"mD" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"mE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"mF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"mG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/item/clothing/shoes/black, -/obj/machinery/light, -/obj/item/device/communicator, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"mH" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/blue, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"mI" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/atmos) -"mJ" = ( -/obj/structure/table/woodentable, -/obj/random/paicard, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"mK" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "Operating Theatre 2"; - req_access = list(45); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/surgery2) -"mL" = ( -/obj/structure/flora/pottedplant/small, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/recreation_area) -"mM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"mN" = ( -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/machinery/station_map{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"mO" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/engineering_monitoring) -"mP" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"mQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"mR" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"mS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark{ - name = "verminstart" - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"mT" = ( -/turf/simulated/wall/bay/steel, -/area/storage/art) -"mU" = ( -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"mV" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"mW" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"mX" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/red{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/weapon/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"mY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"mZ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"na" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"nb" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"nd" = ( -/turf/simulated/wall/bay/white, -/area/medical/surgery2) -"nf" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"ng" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"nh" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/closet/walllocker_double/west{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ni" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_room) -"nj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"nm" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"no" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"np" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engineering Subgrid"; - name_tag = "Engineering Subgrid" - }, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"nq" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_eva) -"nr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/storage) -"ns" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Engineering" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"nt" = ( -/turf/simulated/wall/bay/brown, -/area/crew_quarters/recreation_area) -"nu" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#323d80"; - fill_color = "#c9892e"; - id_tag = "captaindoor"; - name = "Captain's Office"; - req_access = list(20); - stripe_color = "#f7d35c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/captain) -"nv" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"nw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"nx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"ny" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/structure/sign/atmos/co2{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"nz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"nA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"nB" = ( -/obj/random/vendorfood, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"nC" = ( -/obj/machinery/appliance/cooker/grill, -/obj/machinery/requests_console{ - department = "Service"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"nD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"nE" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"nF" = ( -/obj/structure/table/standard, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"nG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"nH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/medical/north, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"nI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"nJ" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"nK" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/bridge) -"nL" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"nM" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"nN" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"nO" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/engine_eva) -"nP" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"nQ" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Service"; - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"nR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"nS" = ( -/obj/effect/floor_decal/milspec/color/green/corner{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"nT" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"nU" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled_shutter{ - dir = 4; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"nV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"nW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"nX" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"nZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"oa" = ( -/turf/simulated/wall/bay/brown, -/area/maintenance/stellardelight/substation/engineering) -"ob" = ( -/obj/effect/shuttle_landmark/premade/sd/deck2/starboard, -/turf/space, -/area/space) -"oc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"od" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"oe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"of" = ( -/obj/structure/sign/directions/evac{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"og" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"oh" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"oi" = ( -/obj/structure/sign/department/bridge{ - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"oj" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"ok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"ol" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"om" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"on" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"oo" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"op" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"oq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"or" = ( -/obj/structure/closet/walllocker_double/east, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/tape_roll, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/multitool, -/obj/fiftyspawner/steel, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"os" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/blue, -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/central) -"ot" = ( -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"ou" = ( -/obj/machinery/computer/supplycomp/control{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"ov" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/combustionworkshop) -"ow" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/storage/tech) -"ox" = ( -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"oy" = ( -/obj/machinery/door/blast/angled{ - dir = 4; - id = "burnchamberlockvent" - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"oz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"oA" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"oB" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"oC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"oD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - req_access = list(28); - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/kitchen) -"oE" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/o2production) -"oF" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"oG" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"oH" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"oI" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#e6ab22"; - name = "Engineering Hard Storage"; - req_access = list(11); - stripe_color = "#913013" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engineering_monitoring) -"oJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/bar) -"oK" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"oL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"oM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - name = "Art Storage" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/art) -"oO" = ( -/obj/machinery/chem_master/condimaster, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"oP" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"oQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"oR" = ( -/turf/simulated/floor/plating, -/area/engineering/storage) -"oS" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/entertainer, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"oT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"oU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"oV" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"oX" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"oY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"oZ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 32 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/start/commandsecretary, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"pa" = ( -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"pb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"pc" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"pd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"pe" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"pf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#ffffff"; - name = "Gas Storage"; - req_one_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/cryo) -"pg" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/item/weapon/storage/belt/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"ph" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"pj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"pk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Port Solar Array"; - name_tag = "Port Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"pl" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Cargo" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"pm" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"pn" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"po" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"pp" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"pq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"pr" = ( -/obj/machinery/light/small, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"pu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"pv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "glass airlock" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/aftport) -"pw" = ( -/obj/structure/sign/pods, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/port) -"px" = ( -/obj/machinery/power/emitter, -/turf/simulated/floor/plating, -/area/engineering/storage) -"py" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"pz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start/chef, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"pA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"pB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"pC" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"pD" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"pG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"pH" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"pI" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"pJ" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"pK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - locked = 1; - name = "maintenance access"; - req_one_access = list(19); - stripe_color = "#e6ab22" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos/monitoring) -"pL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"pM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"pN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pO" = ( -/obj/machinery/atmospherics/binary/algae_farm/filled{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"pP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/storage/art) -"pQ" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/starboardescape) -"pR" = ( -/obj/structure/closet/gmcloset{ - name = "formal wardrobe" - }, -/obj/item/glass_jar, -/obj/item/device/retail_scanner/civilian, -/obj/item/device/retail_scanner/civilian, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/packageWrap, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"pS" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"pT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/monitoring) -"pU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"pV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"pW" = ( -/obj/machinery/media/jukebox, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"pX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"pZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/station_map{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"qa" = ( -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"qb" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"qd" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "2-4" - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"qe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"qf" = ( -/turf/simulated/wall/bay/r_wall/white, -/area/medical/surgery2) -"qg" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"qh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"qi" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"qj" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_y = -6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"qk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"ql" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"qm" = ( -/obj/machinery/vending/medical, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"qn" = ( -/obj/structure/filingcabinet/medical{ - desc = "A large cabinet with hard copy medical records."; - name = "Medical Records" - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-4" - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"qo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"qp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/grass, -/area/hydroponics) -"qq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"qr" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/storage) -"qs" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/obj/item/weapon/storage/fancy/crayons, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled, -/area/storage/art) -"qt" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"qu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"qv" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"qw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"qx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"qy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"qz" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"qA" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/skills{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/med_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/secure_data{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/security, -/obj/item/weapon/circuitboard/security/engineering{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/security/mining{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/stationalert_security{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"qC" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"qD" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"qF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"qG" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"qH" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"qI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"qJ" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"qL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"qM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"qN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"qO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"qP" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"qQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/smartfridge/chemistry, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"qS" = ( -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"qT" = ( -/obj/structure/lattice, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/structure/sign/directions/stairs_up{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftport) -"qV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"qW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/dispenser{ - phorontanks = 0 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"qX" = ( -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/item/device/flash, -/obj/item/device/flash, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5 - }, -/obj/item/device/integrated_circuit_printer, -/obj/structure/table/steel, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"qY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"qZ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/obj/structure/sign/directions/medical/morgue{ - pixel_x = -32 - }, -/obj/structure/sign/directions/medical/resleeving{ - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/medical/virology{ - pixel_x = -32; - pixel_y = -12 - }, -/obj/structure/sign/directions/stairs_down{ - pixel_x = -32; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"ra" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"rb" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/o2production) -"rc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"rd" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"re" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"rf" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/book/manual/engineering_particle_accelerator, -/obj/item/weapon/book/manual/tesla_engine, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"rg" = ( -/obj/structure/bed/chair/sofa/corp/corner{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"rh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"ri" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"rj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"rk" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"rl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"rm" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"rn" = ( -/obj/machinery/appliance/cooker/fryer, -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"rp" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"rq" = ( -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"rr" = ( -/obj/structure/closet/walllocker_double/south{ - color = "#8da4a6"; - pixel_x = -5 - }, -/obj/structure/table/standard, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "kitchen"; - name = "Kitchen shutters"; - pixel_x = 9; - pixel_y = -25 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -1; - pixel_y = -42 - }, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/carton/flour, -/obj/item/weapon/reagent_containers/food/condiment/spacespice, -/obj/item/weapon/reagent_containers/food/condiment/spacespice, -/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, -/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "kitchenhallway"; - name = "Kitchen shutters"; - pixel_x = 9; - pixel_y = -36 - }, -/obj/random/donkpocketbox, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"rs" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"rt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ru" = ( -/obj/structure/bed/chair/bay/comfy/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"rv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"rw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "Engineering Workshop"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#913013" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/workshop) -"rx" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/storage/primary) -"ry" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/jetpack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/space/void/captain, -/obj/item/clothing/head/helmet/space/void/captain, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Captain's Storage"; - req_access = list(20) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/card/id/gold/captain/spare{ - name = "\improper Captain's spare ID" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"rz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"rB" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"rC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"rD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboardescape) -"rE" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/paicard, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"rF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"rG" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/landmark/start/bartender, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"rH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"rI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"rK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"rM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"rN" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/captain) -"rO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/storage/belt/utility, -/obj/item/stack/material/sandstone{ - amount = 5 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 9 - }, -/obj/machinery/requests_console{ - department = "Service"; - pixel_y = 26 - }, -/obj/item/device/retail_scanner/civilian, -/turf/simulated/floor/tiled, -/area/hydroponics) -"rP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/grass, -/area/hydroponics) -"rQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"rR" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portaft) -"rT" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/storage/tech) -"rV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/bar) -"rW" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/atmos) -"rX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#9c9c9c"; - name = "Laundry"; - stripe_color = "#89bd66" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/locker) -"rY" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = -32; - pixel_y = 35 - }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = -32; - pixel_y = 41 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = 23 - }, -/obj/structure/sign/directions/cargo{ - dir = 10; - pixel_x = -32; - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"rZ" = ( -/obj/structure/sign/pods, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/starboard) -"sa" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"sb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"sc" = ( -/obj/structure/bed/chair/sofa/corp{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"sd" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"se" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"sg" = ( -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"sh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass, -/area/hydroponics) -"si" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/portfore) -"sj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"sk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#a6753d"; - name = "Cargo Office"; - req_access = list(31); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/quartermaster/storage) -"sl" = ( -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"sm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - id_tag = "engine_sensor"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1379; - id_tag = "engine_airpump" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/engineering/engine_room) -"sn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"so" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"sp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/red, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"sq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/white, -/turf/simulated/floor, -/area/medical/chemistry) -"sr" = ( -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"su" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = -10 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"sv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"sw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/engine{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"sx" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/atmos) -"sy" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"sz" = ( -/obj/machinery/computer/atmoscontrol, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"sA" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"sB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"sC" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"sD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/locker) -"sE" = ( -/obj/machinery/honey_extractor, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"sF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"sG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/bay/brown, -/area/quartermaster/storage) -"sH" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"sI" = ( -/obj/structure/sign/deck2{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"sJ" = ( -/obj/machinery/vending/wardrobe/medidrobe, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"sK" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"sL" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"sM" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"sN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/storage/primary) -"sO" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"sP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"sQ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"sR" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"sS" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/milspec/color/blue, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/central) -"sT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"sU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/obj/structure/sign/atmos/o2{ - pixel_x = 32; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"sV" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"sW" = ( -/obj/effect/catwalk_plated, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"sX" = ( -/obj/structure/dogbed, -/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"sY" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "\improper RADIOACTIVE AREA"; - pixel_y = 32 - }, -/obj/machinery/camera/network/engine, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"sZ" = ( -/obj/structure/closet/crate{ - icon_state = "crate"; - name = "Grenade Crate" - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/weapon/tool/screwdriver, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"ta" = ( -/turf/simulated/wall/bay/brown, -/area/engineering/workshop) -"tb" = ( -/obj/structure/bed/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"tc" = ( -/obj/structure/lattice, -/turf/space, -/area/stellardelight/deck2/exterior) -"td" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"te" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"tf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "chemistry"; - layer = 3.1; - name = "Chemistry Shutters" - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"tg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "\improper RADIOACTIVE AREA" - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/engine_room) -"th" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"ti" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"tj" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"tk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"tl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"tm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"tn" = ( -/obj/structure/table/standard, -/obj/item/device/camera{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/device/camera{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"to" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"tp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"ts" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"tt" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "qmwindows"; - name = "Privacy Shutters"; - pixel_y = 15 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"tu" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"tv" = ( -/obj/structure/bed/psych, -/obj/structure/sign/painting/library_secure{ - pixel_y = -30 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"tw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Starboard Solar Array"; - name_tag = "Starboard Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"ty" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"tz" = ( -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"tA" = ( -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"tB" = ( -/obj/machinery/firealarm/angled, -/obj/structure/frame, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"tC" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"tD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/vending/tool, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"tE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"tF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"tI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"tJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"tK" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"tL" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/port) -"tM" = ( -/obj/structure/table/rack, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"tN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"tP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"tQ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"tT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"tU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"tV" = ( -/obj/item/weapon/storage/box/nifsofts_medical{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/weapon/storage/box/nifsofts_medical, -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"tW" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"tX" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"tZ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"ua" = ( -/obj/effect/floor_decal/milspec/color/blue/corner, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -29 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = 32; - pixel_y = -35 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -41 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ub" = ( -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"uc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"ud" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"ue" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"uf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ug" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "privacyshutters"; - name = "Privacy Shutter" - }, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/stellardelight/deck2/briefingroom) -"uh" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"ui" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/turf/space, -/area/space) -"uj" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"uk" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/o2production) -"ul" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"um" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"un" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"uo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Engineering Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/engineering) -"up" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/milspec/color/orange/corner, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"uq" = ( -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = 32; - pixel_y = 35 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = 32; - pixel_y = 28 - }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = 32; - pixel_y = 41 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 22 - }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = 32; - pixel_y = 47 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"ur" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"us" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/recharge_station, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"ut" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"uu" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/combustionworkshop) -"uv" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"uw" = ( -/obj/structure/particle_accelerator/power_box{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"ux" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"uy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"uz" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"uA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"uB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"uC" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"uD" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"uE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"uF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/halls, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"uG" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"uI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"uJ" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Look's like it's set to the info station... I wonder what else is on?"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"uK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"uL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"uM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - locked = 1; - name = "maintenance access"; - req_one_access = list(19); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_eva) -"uN" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"uO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"uP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"uQ" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"uR" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"uT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"uU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"uW" = ( -/obj/machinery/appliance/mixer/candy, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"uX" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"uY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"uZ" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "bar"; - name = "Bar Shutter Control"; - pixel_x = 24 - }, -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/item/weapon/reagent_containers/food/drinks/shaker{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 26; - pixel_y = -9 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "barlockdown"; - name = "Window Lockdown"; - pixel_x = 24; - pixel_y = 10 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"va" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"vb" = ( -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"vc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"vd" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"ve" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"vf" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"vg" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"vh" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"vi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"vj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"vk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"vm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/north{ - color = "#8da4a6" - }, -/obj/item/weapon/circuitboard/tesla_coil, -/obj/item/weapon/circuitboard/tesla_coil, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"vo" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/weapon/cell/device, -/obj/item/weapon/cell/device, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"vp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch/engineering{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"vq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"vt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"vu" = ( -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"vw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"vx" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"vy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"vz" = ( -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"vA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"vB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"vC" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"vD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"vF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"vG" = ( -/obj/structure/closet/walllocker_double/medical/north, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/weapon/storage/belt/medical, -/obj/item/weapon/storage/belt/medical, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/random/tetheraid, -/obj/random/tetheraid, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"vH" = ( -/obj/effect/floor_decal/milspec/color/white/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"vI" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"vJ" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/atmos) -"vK" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"vL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"vM" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"vN" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"vO" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"vP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"vQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"vR" = ( -/obj/machinery/light, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"vS" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"vU" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"vV" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "burnchamberlockdown" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"vW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"vX" = ( -/obj/machinery/vending/fitness, -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"vY" = ( -/obj/item/device/radio/headset/headset_med, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/storage/fancy/vials, -/obj/item/weapon/storage/box/pillbottles, -/obj/item/weapon/storage/box/pillbottles, -/obj/structure/closet/wardrobe/chemistry_white, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"wa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"wb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"wd" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"we" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"wf" = ( -/obj/structure/bed/chair/sofa/corp/corner{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"wg" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"wh" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Scan Records" - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"wi" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"wk" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"wl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"wm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"wn" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/portescape) -"wo" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"wp" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/combustionworkshop) -"wq" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"wr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"ws" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"wt" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"wu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"wv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"ww" = ( -/obj/structure/table/glass, -/obj/random/medical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"wy" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"wz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"wA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"wB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/port) -"wC" = ( -/obj/machinery/recharger, -/obj/item/weapon/storage/box/syringegun, -/obj/item/weapon/gun/launcher/syringe, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"wD" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"wE" = ( -/obj/structure/disposalpipe/sortjunction/untagged/flipped{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"wF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"wG" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 30 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"wH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"wI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"wJ" = ( -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"wK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"wL" = ( -/obj/machinery/appliance/mixer/cereal, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"wM" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"wN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"wO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/aftstarboard) -"wP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"wR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"wS" = ( -/obj/structure/bed/chair, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"wT" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/techfloor/grid, -/area/stellardelight/deck2/triage) -"wV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"wW" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/starboard) -"wX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"wY" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck2/aftport) -"wZ" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"xa" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"xb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"xc" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"xd" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/stellardelight/deck2/briefingroom) -"xe" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"xg" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"xh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"xi" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2O Filter"; - tag_east = 2; - tag_south = 1; - tag_west = 7 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"xj" = ( -/obj/machinery/vending/wallmed1{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"xk" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"xl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/structure/sign/atmos_air{ - pixel_x = 32; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"xm" = ( -/obj/machinery/alarm/angled, -/obj/machinery/recharge_station, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"xn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark{ - name = "vinestart" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"xo" = ( -/obj/machinery/computer/supplycomp/control, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"xp" = ( -/turf/simulated/wall/bay/white, -/area/medical/psych) -"xq" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"xr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"xt" = ( -/obj/machinery/pipedispenser/disposal, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"xu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"xv" = ( -/obj/structure/table/darkglass, -/obj/machinery/computer/skills{ - pixel_x = 9 - }, -/obj/item/weapon/paper_bin{ - pixel_x = -7; - pixel_y = -2 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"xw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"xx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"xy" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"xz" = ( -/obj/structure/particle_accelerator/end_cap{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"xA" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"xB" = ( -/obj/machinery/computer/station_alert/all, -/obj/structure/panic_button{ - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/orange/half, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"xC" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"xD" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"xE" = ( -/obj/structure/bed/chair/sofa/corp/left{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"xG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"xH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "Mental Health"; - req_access = list(64); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/psych) -"xI" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/accessory, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"xJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/biochemistry/full, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"xK" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"xL" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"xM" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"xN" = ( -/mob/living/simple_mob/animal/passive/mouse/brown/feivel, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"xO" = ( -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"xP" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"xQ" = ( -/obj/structure/sign/redcross, -/turf/simulated/wall/bay/white, -/area/medical/reception) -"xR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 8 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"xS" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/east{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"xT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"xU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"xV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"xW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/structure/sign/atmos/phoron{ - pixel_x = -32; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"xX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"xY" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"xZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"ya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"yc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"yd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/aftport) -"ye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"yf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"yg" = ( -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"yh" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"yi" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "maintenance access"; - req_access = list(11,24); - req_one_access = null; - stripe_color = "#e6ab22" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engineering_monitoring) -"yj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/engine_room) -"yk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"yl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/storage) -"ym" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/sign/department/atmos{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"yn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"yo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"yp" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/portescape) -"yq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"yr" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"ys" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"yu" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"yv" = ( -/obj/effect/landmark/start/botanist, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"yw" = ( -/obj/structure/table/reinforced, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"yx" = ( -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"yy" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"yz" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"yA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_eva) -"yB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"yC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"yD" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"yE" = ( -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"yF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"yG" = ( -/obj/structure/bed/chair/sofa/corp/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"yH" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"yI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"yJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "bridgelockdown" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#323d80"; - name = "Bridge"; - req_access = list(19); - req_one_access = list(19); - stripe_color = "#f7d35c" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/bridge) -"yK" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"yM" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"yN" = ( -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - locked = 1; - name = "Burn Chamber"; - req_one_access = list(24); - stripe_color = "#e6ab22" - }, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "burnchamberlockdown" - }, -/turf/simulated/floor/reinforced, -/area/stellardelight/deck2/combustionworkshop) -"yP" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"yQ" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"yR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"yS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"yT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/status_display/supply_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"yU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"yV" = ( -/obj/item/device/sleevemate, -/obj/item/device/denecrotizer/medical, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/weapon/gun/energy/mouseray/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"yW" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck2/aftstarboard) -"yX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Animal Pen"; - req_one_access = list(35,28) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hydroponics) -"yY" = ( -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"yZ" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"za" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/engine_room) -"zb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"zc" = ( -/obj/structure/sign/department/chem{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"zd" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"zf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"zh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"zi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"zj" = ( -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"zk" = ( -/obj/machinery/light/small, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"zl" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"zm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"zo" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"zp" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"zq" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"zr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"zs" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"zt" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"zu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"zv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"zw" = ( -/obj/structure/bed/chair/backed_red{ - dir = 1 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"zy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"zz" = ( -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"zC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"zD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"zG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"zH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"zI" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "d2_portmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1379; - master_tag = "d2_portmaint_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck2/portsolars) -"zJ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"zK" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"zL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 1 - }, -/obj/machinery/firealarm/angled, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/medical/cryo) -"zM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"zN" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"zO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"zP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"zQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Medbay Storage"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/cmostore) -"zR" = ( -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"zS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"zT" = ( -/obj/machinery/shieldgen, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/plating, -/area/engineering/storage) -"zU" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/wall/bay/white, -/area/medical/surgery) -"zV" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"zW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/random/trash_pile, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"zX" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"zY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"zZ" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Aa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"Ab" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Ad" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"Ae" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/uniform, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"Af" = ( -/obj/structure/table/reinforced, -/obj/item/device/retail_scanner/engineering, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Ag" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Ah" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboardescape) -"Ai" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Aj" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Ak" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/knife/butch, -/obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Al" = ( -/obj/structure/table/fancyblack, -/obj/item/weapon/paper_bin{ - pixel_y = 5 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"Am" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"An" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Ao" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Ap" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Ar" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"As" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Scrubber to Waste" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"At" = ( -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"Au" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/space, -/area/space) -"Av" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Aw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/directions/engineering/atmospherics{ - dir = 8; - pixel_x = -32; - pixel_y = -12 - }, -/obj/structure/sign/directions/cargo{ - dir = 10; - pixel_x = -32 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftstarboard) -"Ax" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/vending/wallmed1/public{ - pixel_x = 29 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Ay" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Az" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/quartermaster/storage) -"AA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"AB" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"AC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"AD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"AE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"AF" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"AG" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"AI" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"AK" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"AL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/engineering/atmospherics{ - dir = 10; - pixel_x = 32; - pixel_y = -12 - }, -/obj/structure/sign/directions/cargo{ - dir = 6; - pixel_x = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftport) -"AM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/storage/art) -"AN" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"AO" = ( -/obj/structure/table/darkglass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/button/remote/airlock{ - id = "captaindoor"; - pixel_x = -15; - pixel_y = 2 - }, -/obj/item/weapon/stamp/captain{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/weapon/coin/phoron{ - desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; - name = "limited edition phoron coin"; - pixel_x = 11; - pixel_y = -3 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"AP" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"AR" = ( -/obj/machinery/light, -/turf/simulated/floor/grass, -/area/hydroponics) -"AS" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/algae_farm{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/unary_atmos/heater, -/obj/item/weapon/circuitboard/unary_atmos/cooler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"AT" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"AU" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"AV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"AW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"AX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"AY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"AZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ba" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Bb" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Bc" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Bd" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Be" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Bf" = ( -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = 32; - pixel_y = 15 - }, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Bg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftstarboard) -"Bh" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Bi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"Bj" = ( -/obj/machinery/smartfridge/produce/persistent_lossy, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/crew_quarters/kitchen) -"Bk" = ( -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"Bl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - door_color = "#ffffff"; - name = "Operating Theatre 1"; - req_access = list(45); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/surgery) -"Bm" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Bn" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Bo" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark/start/chef, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Bp" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"Bq" = ( -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"Br" = ( -/obj/structure/shuttle/window, -/obj/structure/grille, -/obj/effect/shuttle_landmark{ - base_area = /area/stellardelight/deck2/exterior; - base_turf = /turf/simulated/floor/airless; - docking_controller = "port_escape_berth"; - landmark_tag = "port_ship_berth"; - name = "Stellar Delight Escape Pod Port" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/portescape) -"Bs" = ( -/obj/machinery/field_generator{ - anchored = 1; - state = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Bt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Bu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Bv" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Bw" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/port) -"Bx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"BA" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/fore) -"BB" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"BC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"BD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#9c9c9c"; - fill_color = null; - name = "Commons"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/recreation_area) -"BE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"BF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"BG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"BH" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"BI" = ( -/obj/structure/table/standard, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"BJ" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"BK" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"BL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"BM" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 6 - }, -/obj/machinery/camera/network/cargo, -/obj/item/device/retail_scanner/cargo, -/obj/item/weapon/stamp/accepted, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"BN" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/engineering) -"BO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"BP" = ( -/obj/effect/floor_decal/milspec/color/blue/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"BQ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"BR" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"BS" = ( -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/light_switch{ - pixel_x = 9; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"BT" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/atmos/storage) -"BU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"BV" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"BW" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"BX" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"BY" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"BZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Ca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Cb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"Cc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Cd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Ce" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass/common{ - dir = 8; - name = "Escape Pod" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"Cf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Cg" = ( -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"Ch" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Ci" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Cj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Ck" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Cl" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"Cm" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Co" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Cp" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Cq" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Cr" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Ct" = ( -/obj/machinery/light, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Cu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Cv" = ( -/obj/machinery/gear_painter, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Cx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Cy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Cz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"CA" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"CB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"CC" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"CD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"CE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"CF" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"CG" = ( -/obj/machinery/computer/ship/helm, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"CH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"CI" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"CJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"CK" = ( -/obj/structure/table/fancyblack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/weapon/toy/desk/stellardelight{ - pixel_x = -11; - pixel_y = -8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"CL" = ( -/obj/structure/table/reinforced, -/obj/random/maintenance/clean, -/obj/random/powercell, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"CM" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"CO" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"CP" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"CQ" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"CR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"CS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/cargo, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"CT" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"CU" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"CV" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/clothing, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"CW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"CY" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"CZ" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Da" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Dc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Dd" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/symbol/sa{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"De" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Df" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Dg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Dh" = ( -/obj/machinery/computer/med_data, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/milspec/color/white/half, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Di" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Dj" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Dk" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - door_color = "#ffffff"; - id_tag = "MedbayFoyer W"; - name = "Medbay Foyer"; - req_access = list(5); - req_one_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/triage) -"Dl" = ( -/obj/structure/bed/chair/bay/comfy/brown, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"Dm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Dn" = ( -/turf/simulated/floor/wood, -/area/medical/psych) -"Do" = ( -/obj/machinery/seed_storage/garden, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Dr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"Ds" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Dt" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Du" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/undies_wardrobe, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"Dv" = ( -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Dw" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_eva) -"Dx" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/weapon/clipboard, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"Dy" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Dz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Chemistry"; - req_access = list(33); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/chemistry) -"DA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftport) -"DB" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"DC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"DD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/freezer{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"DE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"DF" = ( -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"DG" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"DH" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"DI" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"DJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/medical/cryo) -"DL" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"DM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"DN" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"DO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"DP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"DQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Atmospherics"; - sortType = "Atmospherics" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"DR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"DS" = ( -/obj/structure/bed/chair/bay/comfy/brown, -/obj/effect/landmark/start/clown, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"DT" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"DV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/department/cargo{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"DW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"DX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"DY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"DZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ea" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "d2_starmaint_airpump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "d2_starmaint_airlock"; - pixel_y = 24; - req_one_access = list(13); - tag_airpump = "d2_starmaint_airpump"; - tag_chamber_sensor = "d2_starmaint_sensor"; - tag_exterior_door = "d2_starmaint_exterior"; - tag_interior_door = "d2_starmaint_interior" - }, -/obj/machinery/airlock_sensor{ - dir = 1; - id_tag = "d2_starmaint_sensor"; - pixel_y = -24; - req_access = list(13) - }, -/obj/machinery/light/small, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Ec" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Ed" = ( -/obj/machinery/light, -/obj/structure/table/reinforced, -/obj/item/weapon/packageWrap, -/obj/item/weapon/hand_labeler, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/tape_roll, -/obj/item/weapon/clipboard, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Ee" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Ef" = ( -/turf/simulated/open, -/area/stellardelight/deck2/aftport) -"Eg" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"Eh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ei" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Ej" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/sign/directions/stairs_down{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/stairs_up{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Ek" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"El" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Em" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"En" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Eo" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Ep" = ( -/obj/structure/bed/chair/bay/comfy/brown, -/obj/effect/landmark/start/mime, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"Eq" = ( -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Er" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Es" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Et" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"Eu" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/quartermaster/storage; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "cargo_bay"; - landmark_tag = "supply_station"; - name = "Ship Cargo Bay" - }, -/turf/simulated/floor/reinforced, -/area/quartermaster/storage) -"Ev" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Ew" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass/common{ - dir = 8; - name = "Escape Pod" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"Ex" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#ffffff"; - name = "Gas Storage"; - req_one_access = list(5,24); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/cryo) -"Ey" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/storage/primary) -"Ez" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/gun/projectile/shotgun/doublebarrel, -/obj/item/weapon/paper{ - info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; - name = "Shotgun permit" - }, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"EA" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"EC" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_y = 4 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"ED" = ( -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office" - }, -/obj/structure/table/darkglass, -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"EE" = ( -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"EF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/o2production) -"EG" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"EH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"EI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"EJ" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"EK" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"EL" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"EM" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"EN" = ( -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 6 - }, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"EO" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/curtain/black, -/obj/effect/landmark/start/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"EP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"EQ" = ( -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"ER" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#e6ab22"; - name = "Engineering Hard Storage"; - req_access = list(11); - stripe_color = "#913013" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/storage) -"ES" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ET" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/conveyor{ - id = "cargoload" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"EU" = ( -/obj/structure/table/glass, -/obj/random/medical{ - pixel_x = -4; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"EV" = ( -/obj/item/weapon/stool/padded{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"EW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"EX" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"EZ" = ( -/obj/machinery/vending/tool, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"Fa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Fb" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Fc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Fd" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"Fe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Ff" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Fg" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Fh" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Fi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - pixel_y = 24; - req_one_access = null; - tag_door = null - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Fk" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"Fl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Fm" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Fn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"Fo" = ( -/obj/machinery/power/solar_control{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Fp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Bridge" - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/closet/walllocker_double/north{ - color = "#8da4a6"; - dir = 4; - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/paper/dockingcodes/sd, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Fq" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Fr" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"Fs" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Ft" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Fv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Fw" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/light/floortube{ - pixel_y = -6 - }, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"Fx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/button/ignition{ - id = "castfireball"; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "burnchamberlockdown"; - name = "Window Lockdown"; - pixel_x = -9; - pixel_y = 31 - }, -/obj/machinery/button/remote/blast_door{ - id = "burnchamberlockvent"; - name = "Chamber Vent"; - pixel_x = -1; - pixel_y = 37 - }, -/obj/machinery/computer/general_air_control/supermatter_core{ - input_tag = "cooling_in"; - name = "Engine Cooling Control"; - output_tag = "cooling_out"; - sensors = list("burn_chamber" = "Burn Chamber"); - throwpass = 1 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Fy" = ( -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Fz" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"FA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/nifsoft_shop, -/obj/machinery/item_bank{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"FB" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"FC" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"FD" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1441; - id = "atmos_out"; - use_power = 1 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"FE" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"FF" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"FG" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"FH" = ( -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"FI" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"FJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#9c9c9c"; - name = "Bar"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"FK" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"FL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"FM" = ( -/obj/item/weapon/stool/padded{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"FN" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/grinder{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/circuitboard/grill{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/fryer{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/oven{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/microwave, -/obj/item/weapon/circuitboard/cerealmaker{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/candymachine{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/biogenerator{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"FP" = ( -/obj/machinery/light, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"FQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"FR" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/overwear, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"FS" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"FT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"FU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"FV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"FW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/floortube{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"FX" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"FY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"FZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Ga" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Gb" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"Gc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Gd" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Ge" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Gf" = ( -/turf/simulated/wall/bay/orange, -/area/maintenance/stellardelight/substation/engineering) -"Gg" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"Gh" = ( -/obj/machinery/atmospherics/binary/pump{ - name = "CO2 to O2 Generators" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Gi" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Gj" = ( -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Gk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/east{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Gl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Gn" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Go" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Gp" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Gq" = ( -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/portfore) -"Gr" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"Gs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/aftport) -"Gt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"Gu" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Gv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Gw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Gx" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Gy" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled_shutter{ - id = "kitchenhallway"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Gz" = ( -/obj/machinery/computer/general_air_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank") - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"GA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"GB" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"GD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "O2 Production"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/o2production) -"GE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"GF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"GG" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"GH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"GI" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/emblem/stellardelight/center, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"GJ" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/atmos) -"GK" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"GL" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"GM" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"GN" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/starboardescape) -"GO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"GP" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"GQ" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/closet/firecloset, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"GR" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"GS" = ( -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 10 - }, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"GT" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"GU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"GV" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"GW" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_y = 5 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"GX" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"GY" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"GZ" = ( -/obj/machinery/computer/security/engineering{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -6 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Ha" = ( -/obj/machinery/icecream_vat, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"Hb" = ( -/obj/item/modular_computer/console/preset/command, -/obj/machinery/camera/network/command, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Hc" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Hd" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/starboard) -"He" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/engine{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Hf" = ( -/obj/machinery/power/emitter{ - anchored = 1; - icon_state = "emitter1"; - state = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Hg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/central) -"Hh" = ( -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Hi" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Hj" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Hk" = ( -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Hl" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Hm" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/atmos/monitoring) -"Ho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Hp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/device/megaphone, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"Hq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Engineering Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/engineering) -"Hr" = ( -/turf/simulated/wall/bay/white, -/area/medical/surgery) -"Hs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Ht" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Hu" = ( -/obj/structure/table/standard, -/obj/structure/disposalpipe/tagger{ - dir = 8; - name = "package tagger - Trash"; - sort_tag = "Trash" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Hv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "\improper HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/engineering/engine_room) -"Hw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Hx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"Hy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Hz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"HA" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"HB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/medical/psych) -"HC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"HD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"HE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"HF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"HG" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"HH" = ( -/obj/machinery/light, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"HI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/green, -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"HJ" = ( -/turf/simulated/wall/bay/steel, -/area/crew_quarters/kitchen) -"HK" = ( -/turf/simulated/wall/bay/orange, -/area/engineering/locker_room) -"HL" = ( -/obj/structure/bed/chair/bay/comfy/captain{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"HM" = ( -/obj/structure/table/reinforced, -/obj/structure/sign/poster{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"HN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"HO" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"HP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - name = "Primary Tool Storage" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/primary) -"HQ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/bar) -"HR" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"HS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"HT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"HV" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"HW" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/locker) -"HX" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"HY" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/emblem/stellardelight{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"HZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Ia" = ( -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/clothing/accessory/stethoscope, -/obj/item/weapon/storage/box/syringes{ - pixel_y = 9 - }, -/obj/item/weapon/storage/box/syringes{ - pixel_y = 9 - }, -/obj/random/medical, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 14; - pixel_y = 10 - }, -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Ib" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Id" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Ie" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"If" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 8 - }, -/obj/structure/window/phoronreinforced{ - dir = 1 - }, -/obj/structure/window/phoronreinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "burnchamberlockdown" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Ig" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ih" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Ii" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ij" = ( -/obj/item/weapon/computer_hardware/battery_module, -/obj/item/weapon/computer_hardware/battery_module, -/obj/item/weapon/computer_hardware/battery_module/nano, -/obj/item/weapon/computer_hardware/hard_drive, -/obj/item/weapon/computer_hardware/hard_drive, -/obj/item/weapon/computer_hardware/hard_drive/micro, -/obj/item/weapon/computer_hardware/network_card, -/obj/item/weapon/computer_hardware/network_card, -/obj/item/weapon/computer_hardware/network_card/wired, -/obj/item/weapon/computer_hardware/processor_unit, -/obj/item/weapon/computer_hardware/processor_unit, -/obj/item/weapon/computer_hardware/processor_unit/small, -/obj/item/weapon/computer_hardware/tesla_link, -/obj/item/weapon/computer_hardware/nano_printer, -/obj/item/weapon/computer_hardware/hard_drive/portable, -/obj/item/weapon/computer_hardware/hard_drive/portable, -/obj/item/device/multitool, -/obj/item/clothing/gloves/yellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Ik" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/random/vendordrink, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm/angled, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Il" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Im" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"In" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Io" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/device/retail_scanner/command, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Ip" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftport) -"Iq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Ir" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"Is" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"It" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"Iu" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Iv" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Iw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Ix" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "\improper RADIOACTIVE AREA"; - pixel_y = -32 - }, -/obj/machinery/camera/network/engine{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Iy" = ( -/obj/structure/table/reinforced, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/structure/closet/walllocker_double/west, -/obj/item/device/t_scanner, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Iz" = ( -/obj/item/stack/cable_coil/yellow, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"IA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/red, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"IB" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"IC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"ID" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"IE" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/glass/reinforced, -/area/crew_quarters/recreation_area) -"IF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"IG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"IH" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"II" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#e6ab22"; - name = "Engineering Glass"; - req_access = list(10); - stripe_color = "#913013" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/locker_room) -"IJ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"IK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"IL" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/keycard_auth{ - pixel_y = 2 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"IN" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Air to Distro" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"IO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"IQ" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/southright{ - dir = 1; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"IR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/cargo{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"IT" = ( -/obj/machinery/vending/wardrobe/chemdrobe, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"IU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/o2production) -"IV" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"IW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"IX" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"IY" = ( -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"IZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Ja" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/circuitboard/partslathe, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Jb" = ( -/obj/machinery/shield_capacitor, -/turf/simulated/floor/plating, -/area/engineering/storage) -"Jd" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Je" = ( -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_y = 25 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Jf" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/starboardaft) -"Jg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Jh" = ( -/turf/space, -/area/space) -"Ji" = ( -/obj/machinery/computer/arcade/orion_trail, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Jj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_eva) -"Jl" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Jm" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Jn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Jo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/fuelstorage) -"Jp" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"Jq" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/fore) -"Jr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Js" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Jt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Jv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Jw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Jx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "\improper RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Jy" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"JB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/art) -"JC" = ( -/obj/structure/sign/department/cargo{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"JD" = ( -/obj/machinery/computer/power_monitor{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"JE" = ( -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"JF" = ( -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = -32; - pixel_y = 15 - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"JG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"JH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"JI" = ( -/obj/effect/floor_decal/milspec/color/green/half, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"JJ" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"JK" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"JL" = ( -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"JM" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"JN" = ( -/obj/effect/floor_decal/milspec/cargo, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"JP" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"JQ" = ( -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"JR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#9c9c9c"; - fill_color = null; - name = "Commons"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/recreation_area) -"JS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"JT" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"JV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"JW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"JX" = ( -/obj/machinery/shield_gen, -/turf/simulated/floor/plating, -/area/engineering/storage) -"JY" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/storage/art) -"JZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "qmwindows"; - name = "Privacy Shutters" - }, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/quartermaster/qm) -"Ka" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Kb" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"Kc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Kd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Ke" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/primary) -"Kf" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Kg" = ( -/obj/structure/table/glass, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Kh" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ki" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Kj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/vending/event, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Kk" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Kl" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck2/triage) -"Km" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Kn" = ( -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Ko" = ( -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Kp" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Kq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/atmosdrobe, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Kr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_eva) -"Ks" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Kt" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 9 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 2 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -12 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Ku" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Kv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Kw" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Kx" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/head/that{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/tool/screwdriver, -/obj/item/weapon/reagent_containers/food/drinks/shaker{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/weapon/flame/lighter/zippo{ - pixel_x = 2 - }, -/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/item/weapon/reagent_containers/food/drinks/metaglass, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"Ky" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Kz" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "d2_starmaint_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1379; - master_tag = "d2_starmaint_airlock"; - name = "interior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck2/starboardsolars) -"KA" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"KB" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"KC" = ( -/obj/structure/closet/walllocker_double{ - pixel_y = 28 - }, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/paint_palette, -/obj/item/paint_palette, -/obj/item/paint_brush, -/obj/item/paint_brush, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled, -/area/storage/art) -"KD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"KE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"KG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"KH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"KI" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/power/emitter, -/turf/simulated/floor/plating, -/area/engineering/storage) -"KJ" = ( -/obj/effect/catwalk_plated, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"KK" = ( -/turf/simulated/wall/bay/r_wall/green, -/area/hydroponics) -"KL" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portfore) -"KM" = ( -/obj/machinery/the_singularitygen/tesla{ - anchored = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"KN" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"KP" = ( -/obj/structure/cable/cyan{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"KQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"KR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"KS" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#ffffff"; - name = "Medbay Foyer"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/triage) -"KT" = ( -/obj/machinery/vending/medical, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"KU" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/poster{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"KV" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"KW" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"KX" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"KY" = ( -/obj/structure/table/reinforced, -/obj/machinery/alarm/angled, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"La" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Lb" = ( -/obj/structure/table/wooden_reinforced, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) -"Lc" = ( -/obj/structure/table/reinforced, -/obj/item/device/floor_painter, -/obj/item/device/t_scanner, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Ld" = ( -/obj/item/modular_computer/console/preset/medical{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/white/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Le" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Lf" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Lg" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Lh" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Li" = ( -/obj/machinery/floodlight, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Ll" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Lm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ln" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/packageWrap, -/obj/item/device/mass_spectrometer/adv, -/obj/item/device/mass_spectrometer/adv, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Lp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"Lq" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Look's like it's set to the info station... I wonder what else is on?"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Lr" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Ls" = ( -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Lt" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/nifsofts_engineering, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Lu" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Cargo Ordering"; - req_access = list(50) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/storage) -"Lv" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Lw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_eva) -"Lx" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Ly" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"Lz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"LB" = ( -/obj/machinery/power/solar_control{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"LC" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"LD" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/electrical, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"LE" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/quartermaster/storage) -"LF" = ( -/obj/structure/table/standard, -/obj/item/weapon/packageWrap, -/obj/fiftyspawner/cardboard, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"LG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"LH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"LI" = ( -/turf/simulated/wall/bay/orange, -/area/engineering/engineering_monitoring) -"LK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"LL" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "Bar"; - req_access = list(25) - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"LM" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/portescape) -"LN" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/effect/landmark/start/bartender, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"LO" = ( -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"LP" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 6 - }, -/obj/machinery/camera/network/civilian, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/weapon/material/ashtray/glass, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"LQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"LR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"LS" = ( -/mob/living/simple_mob/animal/passive/chicken, -/turf/simulated/floor/grass, -/area/hydroponics) -"LT" = ( -/obj/machinery/disposal/wall{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"LU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Distro Loop Drain" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"LV" = ( -/obj/structure/table/glass, -/obj/structure/sign/department/operational{ - pixel_x = 32 - }, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"LW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"LX" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/conveyor_switch/oneway{ - id = "cargounload" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"LY" = ( -/turf/simulated/wall/bay/brown, -/area/engineering/engine_eva) -"LZ" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Ma" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/item/stack/cable_coil/random, -/obj/item/weapon/hand_labeler, -/obj/item/stack/cable_coil/random, -/obj/item/device/floor_painter, -/obj/machinery/camera/network/civilian, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"Mb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Mc" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Md" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Me" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Mf" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "Phoron Filter"; - tag_north = 2; - tag_south = 1; - tag_west = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Mg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"Mh" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/rdserver{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/protolathe{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/destructive_analyzer{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/rdconsole, -/obj/item/weapon/circuitboard/autolathe{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/mechfab{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/prosthetics{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Mi" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Mj" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Mk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Ml" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/aftstarboard) -"Mm" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Mn" = ( -/obj/machinery/beehive, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Mo" = ( -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Mp" = ( -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Mq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Mr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/storage) -"Ms" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Mt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/machinery/keycard_auth{ - pixel_x = 32 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"Mu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/obj/structure/sign/atmos/n2{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Mv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Mw" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/radio/intercom{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/blue/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Mx" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"My" = ( -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/contraband, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Mz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "Secure Tech Storage"; - req_access = list(19,23) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/tech) -"MA" = ( -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/port) -"MB" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/storage) -"MC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 8 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"MD" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"ME" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"MF" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"MG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"MH" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"MJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"MK" = ( -/obj/structure/bed/chair/backed_red{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"MM" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/obj/machinery/light/floortube{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"MN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"MP" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - name = "Direct Injector" - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"MQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"MR" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"MS" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"MT" = ( -/obj/machinery/power/grounding_rod, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"MU" = ( -/turf/simulated/wall/bay/green, -/area/hydroponics) -"MV" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"MW" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/crew{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/card, -/obj/item/weapon/circuitboard/communications{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"MX" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"MY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Medical"; - sortType = "Medical" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"MZ" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Na" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Nb" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Nc" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Nd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Ne" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck2/starboardfore) -"Nf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "qmwindows"; - name = "Privacy Shutters" - }, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/quartermaster/qm) -"Ng" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled_shutter{ - id = "kitchenhallway"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Nh" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Nj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Nk" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Nl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Nm" = ( -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Nn" = ( -/obj/machinery/computer/ship/engines, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"No" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Np" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Nq" = ( -/obj/machinery/suit_cycler/engineering, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Nr" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Ns" = ( -/turf/simulated/floor/tiled, -/area/storage/art) -"Nt" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.6 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/machinery/door/window/northleft{ - name = "Engineering Hardsuits"; - req_access = list(11) - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Nu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "psychshutter"; - name = "Shutter Control"; - pixel_x = -15; - pixel_y = -28 - }, -/obj/effect/landmark/start/psych, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) -"Nv" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Nw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Kitchen/Botany"; - sortType = "Kitchen/Botany" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Nx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Ny" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Nz" = ( -/obj/machinery/computer/atmos_alert, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"NA" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "d2_starmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 4; - frequency = 1379; - master_tag = "d2_starmaint_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck2/starboardsolars) -"NB" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"NC" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"ND" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"NE" = ( -/obj/structure/reagent_dispensers/foam, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"NF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"NG" = ( -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = 35 - }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = 32; - pixel_y = 41 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_x = 32; - pixel_y = 23 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = 32; - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"NH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"NJ" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"NK" = ( -/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"NL" = ( -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"NM" = ( -/obj/structure/closet/crate, -/obj/item/weapon/circuitboard/smes, -/obj/item/weapon/circuitboard/smes, -/obj/item/weapon/smes_coil, -/obj/item/weapon/smes_coil, -/obj/item/weapon/smes_coil/super_capacity, -/obj/item/weapon/smes_coil/super_capacity, -/obj/item/weapon/smes_coil/super_io, -/obj/item/weapon/smes_coil/super_io, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"NN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/brown, -/turf/simulated/floor, -/area/quartermaster/storage) -"NO" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 27 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"NP" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"NQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#ffffff"; - name = "Medbay Foyer"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/triage) -"NS" = ( -/obj/structure/table/rack/steel, -/obj/item/instrument/violin, -/obj/item/instrument/piano_synth, -/obj/item/instrument/recorder, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/recreation_area) -"NU" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"NW" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/aftstarboard) -"NX" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"NY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"NZ" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Oa" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Quartermaster-Office" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"Ob" = ( -/obj/structure/table/gamblingtable, -/obj/random/coin/sometimes, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"Od" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/fuelstorage) -"Og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"Oh" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"Oi" = ( -/obj/machinery/firealarm/angled, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Oj" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Ok" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"Ol" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/medical, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Om" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"On" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id = "bar"; - layer = 3.3; - name = "Bar Shutters" - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Oo" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/engineering, -/obj/random/maintenance, -/obj/item/weapon/disk/nifsoft/compliance, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Op" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Oq" = ( -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"Or" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Os" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"Ot" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Ou" = ( -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Ov" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Ow" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"Ox" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 27 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Oz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"OA" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/landmark{ - name = "verminstart" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"OC" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"OD" = ( -/obj/machinery/camera/network/command{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"OE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"OF" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/engine_room) -"OG" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/wall/bay/white, -/area/medical/surgery2) -"OH" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"OI" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"OJ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"OK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"OL" = ( -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"OM" = ( -/obj/structure/foodcart, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"ON" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"OO" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/beakers{ - name = "box of measuring cups"; - pixel_x = 2; - pixel_y = 3; - starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"OP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"OQ" = ( -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"OR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"OS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"OT" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/requests_console/preset/atmos{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"OU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"OV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"OW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"OX" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"OY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"OZ" = ( -/obj/structure/closet/toolcloset, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Pb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Pc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Pd" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"Pe" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Pf" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -6 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/starboard) -"Pg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/weapon/book/manual/cook_guide, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Ph" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Pi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Pj" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Pk" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"Pl" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/flora/pottedplant/smallcactus{ - pixel_y = 14 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"Pm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Pn" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled_shutter{ - dir = 4; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Po" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"Pp" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/space, -/area/space) -"Pq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Pr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Ps" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/disposal/wall, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Pt" = ( -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Pu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Pv" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#ffffff"; - name = "Medbay Storage"; - req_access = list(5); - stripe_color = "#5a96bb" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/medical/cmostore) -"Pw" = ( -/obj/machinery/sparker{ - id = "castfireball"; - pixel_x = 20 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"Px" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "d2_portmaint_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 4; - frequency = 1379; - master_tag = "d2_portmaint_airlock"; - name = "interior access button"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck2/portsolars) -"Py" = ( -/obj/machinery/alarm/angled, -/obj/machinery/vending/nifsoft_shop, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Pz" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/medical/cryo) -"PA" = ( -/obj/structure/sign/deck2{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"PB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/fuelstorage) -"PC" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"PD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"PE" = ( -/turf/simulated/wall/bay/white, -/area/medical/reception) -"PF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"PG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/port) -"PH" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"PI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"PJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/atmostech, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"PK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals_central5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"PL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/obj/structure/sign/department/mail{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"PM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"PO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"PP" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/stellardelight/deck2/briefingroom) -"PQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardsolars) -"PR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/bar) -"PS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"PT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/table/rack, -/obj/random/maintenance/cargo, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/random/snack, -/obj/random/coin/sometimes, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"PU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"PV" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"PW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"PY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/medical/cryo) -"PZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Qa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Qc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Qd" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Qe" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Qf" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Qg" = ( -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"Qh" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Qi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Qj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Qk" = ( -/obj/machinery/computer/rcon{ - dir = 1 - }, -/obj/machinery/light/floortube{ - pixel_y = -6 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Ql" = ( -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/scanning_module, -/obj/item/weapon/stock_parts/scanning_module, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/device/pipe_painter, -/obj/item/weapon/pipe_dispenser, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/steel, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Qm" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Qn" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/milspec/color/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Qo" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Qp" = ( -/obj/structure/table/glass, -/obj/item/weapon/backup_implanter{ - pixel_y = 9 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 2 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -5 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = -12 - }, -/obj/structure/sign/department/operational{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"Qq" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Qr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Qt" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"Qu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"Qv" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"Qw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Qx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Qy" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"Qz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "Particle Accelerator"; - req_access = list(10); - stripe_color = "#913013" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_room) -"QA" = ( -/obj/structure/closet/crate/solar, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/storage) -"QB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "psychshutter"; - name = "Privacy Shutter" - }, -/obj/structure/low_wall/bay/reinforced/white, -/turf/simulated/floor, -/area/medical/psych) -"QC" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"QD" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"QE" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"QG" = ( -/obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"QH" = ( -/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"QI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"QJ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"QK" = ( -/obj/machinery/atmospherics/omni/mixer{ - name = "Air Mixer"; - tag_east = 1; - tag_east_con = 0.79; - tag_north = 1; - tag_north_con = 0.21; - tag_south = 2; - tag_south_con = null; - tag_west_con = null - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"QM" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/black/corner, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"QN" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -27 - }, -/obj/item/bodybag/cryobag{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"QO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"QP" = ( -/turf/simulated/wall/bay/white, -/area/medical/cmostore) -"QQ" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"QR" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"QS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"QT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - name = "Engineering Reception Desk"; - req_access = list(10) - }, -/obj/item/weapon/folder/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/engineering_monitoring) -"QU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/orange, -/turf/simulated/floor, -/area/engineering/engineering_monitoring) -"QV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - dir = 8; - door_color = "#9c9c9c"; - name = "Commons"; - stripe_color = "#89bd66" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/recreation_area) -"QW" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"QX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"QY" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"QZ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Ra" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/storage/tech) -"Rb" = ( -/obj/machinery/power/tesla_coil, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Rc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Chemistry"; - req_one_access = list(33) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "chemistry"; - layer = 3.1; - name = "Chemistry Shutters" - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"Rd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "bridgelockdown" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#323d80"; - name = "Bridge"; - req_access = list(19); - req_one_access = list(19); - stripe_color = "#f7d35c" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/bridge) -"Re" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "Engineering Monitoring Room"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#913013" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engineering_monitoring) -"Rf" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/book/manual/sd_guide, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Rh" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Ri" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Rj" = ( -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Rk" = ( -/obj/structure/sign/department/eng{ - pixel_x = 32 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Rl" = ( -/obj/machinery/atmospherics/portables_connector/fuel, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"Rm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Rn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"Ro" = ( -/obj/machinery/vending/wardrobe/hydrobe, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Rp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"Rq" = ( -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Rr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Rs" = ( -/obj/machinery/power/emitter{ - anchored = 1; - icon_state = "emitter1"; - state = 1 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Ru" = ( -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/starboard) -"Rv" = ( -/obj/structure/sign/poster{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Rw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#e6ab22"; - name = "O2 Production"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/o2production) -"Rx" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ry" = ( -/obj/machinery/particle_accelerator/control_box, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"Rz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"RA" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"RD" = ( -/obj/structure/sign/directions/kitchen{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"RE" = ( -/obj/structure/stairs/spawner/north, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"RF" = ( -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"RG" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"RH" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"RI" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start/chemist, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"RJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"RK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"RL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"RM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery) -"RN" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"RO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"RP" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"RQ" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"RR" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"RS" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"RT" = ( -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"RU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"RV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"RW" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"RX" = ( -/obj/structure/table/standard, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/device/camera_film{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"RY" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/engine_room) -"Sb" = ( -/turf/simulated/floor/tiled/eris/dark/danger, -/area/engineering/engine_room) -"Sc" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - name = "Tanks To Engines" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"Sd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Se" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"Sf" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Sg" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Sh" = ( -/obj/machinery/disposal/wall{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Sj" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Sk" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Sm" = ( -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Sn" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"So" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 32 - }, -/obj/machinery/requests_console/preset/bridge{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/landmark/start/commandsecretary, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Sp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Sq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/qm, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"Sr" = ( -/obj/effect/floor_decal/milspec/color/green/corner{ - dir = 8 - }, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Ss" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"St" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"Su" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"Sv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Sw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "engine_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_access = list(10,11) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "engine_exterior"; - locked = 1; - name = "Engine Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/engine_room) -"Sx" = ( -/turf/simulated/wall/bay/steel, -/area/crew_quarters/bar) -"Sy" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "Hydroponics"; - req_one_access = list(35,28); - stripe_color = "#00ab03" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/hydroponics) -"Sz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "atmoswindowlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/o2production) -"SA" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/engineering) -"SD" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"SE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portfore) -"SF" = ( -/obj/machinery/computer/arcade/clawmachine, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"SG" = ( -/obj/structure/table/rack/steel, -/obj/item/device/slime_scanner, -/obj/item/device/sleevemate, -/obj/item/device/robotanalyzer, -/obj/item/device/reagent_scanner, -/obj/item/device/healthanalyzer, -/obj/item/device/geiger, -/obj/item/device/analyzer/plant_analyzer, -/obj/item/device/analyzer, -/obj/item/device/t_scanner, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"SH" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "privacyshutters"; - name = "Shutter Control"; - pixel_x = 25 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"SI" = ( -/obj/item/weapon/stool/padded{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"SK" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/engineering/atmos/monitoring) -"SL" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"SM" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"SN" = ( -/obj/structure/closet/wardrobe/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"SO" = ( -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"SP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"SQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"SR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"SS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ST" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"SU" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"SV" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - name = "Bridge"; - sortType = "Bridge" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"SW" = ( -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"SX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"SY" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 26; - pixel_y = -11 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"SZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Ta" = ( -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Tc" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Td" = ( -/obj/structure/sign/directions/evac{ - dir = 10; - pixel_x = 32 - }, -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/corner, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Te" = ( -/obj/machinery/power/smes/buildable/offmap_spawn/empty{ - RCon_tag = "Solar Array - Port" - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Tf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Tg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/obj/structure/cable/blue{ - icon_state = "16-0" - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Th" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light/floortube{ - dir = 1; - pixel_y = 6 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"Ti" = ( -/obj/structure/closet/emcloset, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Tj" = ( -/obj/machinery/vending/loadout/costume, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Tk" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Tl" = ( -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Tm" = ( -/obj/structure/table/rack, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Tn" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"To" = ( -/turf/simulated/wall/bay/orange, -/area/engineering/workshop) -"Tp" = ( -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"Tq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Waste to Filter" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Tr" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Ts" = ( -/turf/simulated/shuttle/wall, -/area/stellardelight/deck2/starboardescape) -"Tt" = ( -/obj/effect/shuttle_landmark/premade/sd/deck2/port, -/turf/space, -/area/space) -"Tu" = ( -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 8; - name = "Tank Refuel" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"Tv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"Tw" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/portsolars) -"Tx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"TA" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"TB" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box, -/obj/item/weapon/tape_roll{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tape_roll, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"TC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"TD" = ( -/obj/structure/table/steel, -/obj/item/weapon/module/power_control, -/obj/item/weapon/airlock_electronics, -/obj/item/weapon/module/power_control, -/obj/item/weapon/airlock_electronics, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"TF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"TG" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm/angled, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"TH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"TI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"TJ" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"TK" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/weapon/stamp/cargo, -/obj/item/weapon/storage/backpack/dufflebag, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"TL" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/obj/machinery/bodyscanner{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"TM" = ( -/obj/effect/floor_decal/milspec/color/black/corner, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"TN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"TO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"TP" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/effect/floor_decal/milspec/color/white/corner, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"TQ" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/starboardescape) -"TR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"TS" = ( -/obj/structure/flora/pottedplant/tall, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"TU" = ( -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/turf/simulated/floor/airless, -/area/crew_quarters/bar) -"TV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardfore) -"TW" = ( -/obj/structure/sign/department/atmos{ - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 10 - }, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"TX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"TY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"TZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Ua" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Ub" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Uc" = ( -/turf/simulated/floor, -/area/stellardelight/deck2/aftstarboard) -"Ud" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/southright{ - dir = 1; - req_access = list(5) - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Ue" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Uf" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ug" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Uh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ui" = ( -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Uj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Uk" = ( -/obj/machinery/pipedispenser, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Ul" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Um" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Un" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Ports to Waste" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Uo" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Up" = ( -/obj/structure/cable/orange{ - icon_state = "2-8" - }, -/obj/structure/cable/orange{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Uq" = ( -/obj/machinery/vending/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Ur" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Us" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/cable/orange{ - icon_state = "1-4" - }, -/obj/structure/cable/orange{ - icon_state = "2-4" - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Ut" = ( -/turf/simulated/floor/glass/reinforced, -/area/crew_quarters/recreation_area) -"Uu" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - id = "privacyshutters"; - name = "Privacy Shutter" - }, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/stellardelight/deck2/briefingroom) -"Uv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"Ux" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"Uy" = ( -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"Uz" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 2; - name = "Engineering"; - sortType = "Engineering" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"UA" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"UB" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Engineering"; - output_attempt = 0 - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/structure/cable/orange, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"UC" = ( -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"UD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"UE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"UF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"UG" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/stellardelight/deck2/fuelstorage) -"UH" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"UI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/combustionworkshop) -"UJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"UK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start/engineer, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"UL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"UM" = ( -/obj/effect/floor_decal/emblem/stellardelight, -/obj/effect/floor_decal/milspec/color/blue/half, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"UN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"UO" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"UQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"UR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/port) -"US" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = -32 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"UT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"UU" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"UV" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/circuitboard/body_designer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/resleeving_control{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/transhuman_clonepod{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/transhuman_synthprinter{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"UX" = ( -/obj/structure/table/gamblingtable, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"UY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"UZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Vb" = ( -/turf/simulated/wall/bay/white, -/area/stellardelight/deck2/triage) -"Vc" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Vd" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/kitchen) -"Ve" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"Vf" = ( -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Vg" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/briefingroom) -"Vh" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - name = "Bar Backroom"; - req_access = list(25); - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"Vi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Vj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - door_color = "#a6753d"; - name = "Cargo Office"; - req_access = list(31); - stripe_color = "#3b2b1a" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/quartermaster/storage) -"Vk" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"Vl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Trash"; - sortType = "Trash" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Vm" = ( -/turf/simulated/floor/airless, -/area/stellardelight/deck2/fuelstorage) -"Vo" = ( -/turf/simulated/wall/bay/r_wall/orange, -/area/engineering/workshop) -"Vp" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/module/power_control, -/obj/item/weapon/cell{ - maxcharge = 2000 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Vq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Vr" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"Vt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Vu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Vv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/obj/machinery/light/floortube{ - pixel_y = -6 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3; - pixel_y = 13 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -1; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Vw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"Vx" = ( -/obj/machinery/power/grounding_rod, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Vy" = ( -/obj/machinery/disposal/wall{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Vz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/turf/simulated/floor/grass, -/area/hydroponics) -"VA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"VB" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1438; - id = "cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck2/combustionworkshop) -"VC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"VD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portfore) -"VE" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"VF" = ( -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - name = "Briefing Room"; - req_access = list(19); - req_one_access = list(19); - stripe_color = "#f7d35c" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/briefingroom) -"VG" = ( -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"VH" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"VI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"VJ" = ( -/turf/simulated/floor/airless, -/area/engineering/engine_eva) -"VK" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"VL" = ( -/obj/structure/closet/chefcloset, -/obj/item/glass_jar, -/obj/item/device/retail_scanner/civilian, -/obj/item/weapon/soap/nanotrasen, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/packageWrap, -/obj/item/weapon/tool/wrench, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"VM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"VN" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck2/central) -"VO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"VP" = ( -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/port) -"VS" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = -9; - pixel_y = 10 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"VT" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/portescape) -"VU" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/machinery/vending/loadout/gadget, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/locker) -"VV" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"VW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/green{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"VX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance/cargo, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/vacuum{ - pixel_x = 32 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"VY" = ( -/obj/machinery/computer/timeclock/premade/north, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"VZ" = ( -/obj/effect/floor_decal/milspec/color/white/half, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Wa" = ( -/obj/structure/kitchenspike, -/turf/simulated/floor/tiled/freezer/cold, -/area/crew_quarters/kitchen) -"Wb" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"Wc" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/computer/stockexchange{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"We" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"Wf" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"Wg" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Wh" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Wi" = ( -/obj/machinery/computer/crew, -/obj/effect/floor_decal/milspec/color/white/half, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Wj" = ( -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"Wk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Wl" = ( -/obj/machinery/vending/assist, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"Wm" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Wn" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"Wo" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"Wp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"Wq" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck2/fore) -"Wr" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/central) -"Ws" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"Wu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Wv" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Ww" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Wx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Wy" = ( -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Wz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/white, -/turf/simulated/floor, -/area/medical/reception) -"WA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#e6ab22"; - fill_color = "#877242"; - name = "Atmospherics"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/engineering/atmos/monitoring) -"WB" = ( -/obj/structure/table/glass, -/mob/living/simple_mob/animal/passive/cat/jones, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"WC" = ( -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"WE" = ( -/obj/machinery/firealarm/angled{ - dir = 4 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"WF" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = 35 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = -32; - pixel_y = 29 - }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = -32; - pixel_y = 41 - }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = -32; - pixel_y = 47 - }, -/obj/structure/sign/directions/engineering/atmospherics{ - dir = 10; - pixel_x = -32; - pixel_y = 23 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"WG" = ( -/obj/structure/railing/grey, -/turf/simulated/open, -/area/quartermaster/storage) -"WH" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"WI" = ( -/obj/structure/bed/chair/backed_red{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"WJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"WK" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"WL" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/effect/floor_decal/milspec/color/blue/half{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"WM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"WN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/grass, -/area/hydroponics) -"WO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"WP" = ( -/turf/simulated/shuttle/wall, -/area/stellardelight/deck2/portescape) -"WQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"WR" = ( -/obj/structure/table/wooden_reinforced, -/obj/random/paicard, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"WS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"WT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"WU" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#e6ab22"; - fill_color = "#877242"; - name = "Fuel Storage"; - req_access = list(24); - stripe_color = "#2ebfbd" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/fuelstorage) -"WV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"WW" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/cable/orange{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"WX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/captain, -/turf/simulated/floor/carpet/blucarpet, -/area/crew_quarters/captain) -"WY" = ( -/obj/structure/table/glass, -/obj/random/medical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/machinery/injector_maker{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"WZ" = ( -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/locker) -"Xa" = ( -/turf/simulated/wall/bay/r_wall/white, -/area/medical/chemistry) -"Xb" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Xc" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/turf/simulated/floor/airless, -/area/crew_quarters/bar) -"Xd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"Xe" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Xf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/tool/crowbar, -/obj/item/clothing/gloves/black, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/workshop) -"Xg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Xh" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery2) -"Xi" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Xj" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"Xk" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/kitchen) -"Xl" = ( -/obj/machinery/firealarm/angled, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Xm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Xo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/engineering/engine_room) -"Xp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"Xq" = ( -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"Xr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"Xs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"Xt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"Xu" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"Xv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"Xx" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/recreation_area) -"Xy" = ( -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"Xz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"XB" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/transhuman_resleever{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/circuit_imprinter{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/aiupload{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/borgupload{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/storage/tech) -"XC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"XD" = ( -/obj/structure/easel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"XE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"XF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/adv{ - name = "human repair kit"; - pixel_x = -9; - pixel_y = 9 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"XG" = ( -/obj/machinery/atmospherics/binary/algae_farm/filled{ - dir = 1 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"XH" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Engineering Substation Bypass" - }, -/turf/simulated/floor/plating, -/area/maintenance/stellardelight/substation/engineering) -"XI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"XJ" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"XK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"XL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - dir = 4; - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/aftstarboard) -"XM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 8; - frequency = 1380; - id_tag = "starboard_escape_berth"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/eris/white/danger, -/area/stellardelight/deck2/starboard) -"XN" = ( -/obj/machinery/computer/supplycomp{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/quartermaster/storage) -"XO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"XP" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"XQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"XR" = ( -/obj/machinery/suit_cycler/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"XS" = ( -/obj/effect/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/machinery/computer/security/engineering, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"XT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"XU" = ( -/obj/item/weapon/stool/padded{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"XV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"XW" = ( -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/orange, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/atmos) -"XX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/standard, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/turf/simulated/floor/wood, -/area/quartermaster/qm) -"XY" = ( -/obj/effect/landmark/start/medical, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"XZ" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/anomaly_spectroscopy, -/obj/item/weapon/book/manual/anomaly_testing, -/obj/item/weapon/book/manual/materials_chemistry_analysis, -/obj/item/weapon/book/manual/resleeving, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/medical/psych) -"Ya" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Air to Distro" - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"Yb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Yc" = ( -/obj/structure/musician/piano{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Yd" = ( -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Ye" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Yf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/barbackroom) -"Yg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/bay/brown, -/area/quartermaster/storage) -"Yh" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portaft) -"Yi" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck2/barbackroom) -"Yj" = ( -/obj/structure/table/standard, -/obj/item/device/retail_scanner/civilian, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Yk" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"Yl" = ( -/obj/machinery/firealarm/angled, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"Ym" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"Yn" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 4; - id = "chemistry"; - name = "Chemistry Shutters"; - pixel_x = -24; - pixel_y = -30; - req_access = list(5) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Yo" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/atmos/monitoring) -"Yp" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Yq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/engineering/engine_room) -"Yr" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/storage) -"Ys" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/full, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/chemistry) -"Yu" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/angled_shutter{ - dir = 4; - id = "kitchen"; - layer = 3.3; - name = "Kitchen Shutters" - }, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"Yv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/structure/sign/atmos/n2o{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/storage) -"Yw" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"Yx" = ( -/obj/structure/sign/deck2{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"Yy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Yz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"YA" = ( -/obj/structure/grille, -/obj/structure/shuttle/window, -/turf/simulated/floor, -/area/stellardelight/deck2/starboardescape) -"YB" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck2/starboardaft) -"YC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start/chef, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"YD" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"YE" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos/monitoring) -"YF" = ( -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"YG" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"YH" = ( -/obj/machinery/beehive, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"YI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/reception) -"YJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hydroponics) -"YK" = ( -/obj/effect/floor_decal/milspec/color/green/half{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/sign/poster{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"YL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"YM" = ( -/obj/structure/table/woodentable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck2/barbackroom) -"YN" = ( -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) -"YO" = ( -/obj/structure/table/gamblingtable, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/recreation_area) -"YP" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"YQ" = ( -/obj/random/vendorfood, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"YR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engineering_monitoring) -"YS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"YT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"YU" = ( -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"YV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"YW" = ( -/obj/random/vendordrink, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"YX" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/starboard) -"YY" = ( -/turf/simulated/wall/bay/brown, -/area/quartermaster/qm) -"YZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/ladder/up, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardfore) -"Za" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardaft) -"Zb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 8; - fill_color = "#ffffff"; - name = "Kitchen Cold Room"; - req_access = list(28) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/kitchen) -"Zc" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - frequency = 1380; - id_tag = "port_escape_pod"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/stellardelight/deck2/portescape) -"Zd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/workshop) -"Ze" = ( -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"Zf" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-4" - }, -/obj/structure/table/reinforced, -/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/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/locker_room) -"Zh" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/engineering/engine_eva) -"Zi" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/item/bodybag/cryobag{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/weapon/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/weapon/storage/box/lights/mixed{ - pixel_y = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Zj" = ( -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Zk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"Zl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "kitchenlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/kitchen) -"Zm" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Zo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/black/corner{ - dir = 1 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 4 - }, -/obj/effect/floor_decal/milspec/color/silver/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Zp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Zq" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"Zr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"Zs" = ( -/turf/simulated/floor, -/area/stellardelight/deck2/combustionworkshop) -"Zt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/tank/phoron/full{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fuelstorage) -"Zu" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/art) -"Zv" = ( -/obj/structure/closet/walllocker_double/medical/north, -/obj/item/weapon/storage/box/rxglasses{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/weapon/storage/box/rxglasses, -/obj/item/device/glasses_kit, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Zw" = ( -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/medical/cmostore) -"Zx" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 10 - }, -/turf/simulated/floor/tiled/eris/dark/monofloor, -/area/bridge) -"Zy" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/kitchen) -"ZA" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/firealarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/storage/primary) -"ZB" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/closet/walllocker_double/south{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"ZC" = ( -/obj/item/weapon/stool/padded{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/brown_platform, -/area/crew_quarters/bar) -"ZD" = ( -/obj/structure/table/reinforced, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white/bluecorner, -/area/stellardelight/deck2/triage) -"ZE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/fuelstorage) -"ZF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftport) -"ZG" = ( -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck2/exterior) -"ZH" = ( -/obj/machinery/computer/guestpass{ - dir = 8; - pixel_x = 25 - }, -/obj/effect/floor_decal/milspec/color/orange/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/aftstarboard) -"ZI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"ZJ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/portsolars) -"ZK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/stellardelight/deck2/triage) -"ZL" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/cafe, -/area/crew_quarters/kitchen) -"ZM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/fore) -"ZN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "0-8" - }, -/obj/machinery/vending/engivend, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck2/o2production) -"ZO" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, -/obj/machinery/light/small, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"ZP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/engineering/engine_room) -"ZQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck2/port) -"ZR" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/door/window/westright{ - name = "Engineering Reception Desk"; - req_access = list(10) - }, -/obj/item/weapon/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/engineering/engineering_monitoring) -"ZS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/structure/cable/orange{ - icon_state = "1-2" - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ZT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cable/orange{ - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "atmoswindowlockdown"; - name = "Window Lockdown"; - pixel_y = 56 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos/monitoring) -"ZU" = ( -/obj/machinery/computer/ship/sensors, -/obj/effect/floor_decal/milspec/color/green/half, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/bridge) -"ZV" = ( -/turf/simulated/floor, -/area/stellardelight/deck2/aftport) -"ZW" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/camera/network/civilian{ - dir = 5 - }, -/obj/effect/floor_decal/milspec/color/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ZX" = ( -/obj/machinery/power/smes/buildable/offmap_spawn/empty{ - RCon_tag = "Solar Array - Starboard" - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck2/starboardsolars) -"ZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/conveyor{ - id = "cargoload" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/steel/cargo, -/area/quartermaster/storage) -"ZZ" = ( -/obj/structure/bed/chair/sofa/corp/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/crew_quarters/recreation_area) +"aa" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"ab" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"ac" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ad" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"ae" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"af" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"ag" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"ah" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "CO2 Filter"; tag_north = 2; tag_south = 1; tag_west = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ai" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"aj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"ak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"al" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"am" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"an" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ao" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ap" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"aq" = (/obj/effect/landmark/start/atmostech,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"ar" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"as" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"at" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"au" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"av" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/animal/goat{name = "Ted"},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"aw" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ax" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"az" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aA" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"aB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aC" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aD" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/combustionworkshop) +"aE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"aF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"aG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"aH" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"aJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics) +"aK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"aM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"aN" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/locker) +"aO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aP" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aQ" = (/obj/structure/grille,/turf/simulated/floor/airless,/area/engineering/engine_room) +"aR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"aS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/item/weapon/stool/padded{dir = 4},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) +"aT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"aU" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) +"aV" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"aW" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"aY" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"aZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ba" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"bb" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"bc" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bd" = (/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"be" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"bf" = (/turf/simulated/open,/area/stellardelight/deck2/triage) +"bg" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"bh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"bi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"bj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"bk" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"bl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"bm" = (/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/dorms{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) +"bn" = (/obj/structure/railing/grey{dir = 8},/obj/structure/cable/white{icon_state = "32-1"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) +"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"bp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bq" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"br" = (/obj/structure/sign/directions/science{pixel_x = -32},/obj/structure/sign/directions/dorms{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) +"bs" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "botanylockdown"; name = "Window Lockdown"; pixel_x = -25},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"bu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"bv" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) +"bw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bx" = (/obj/structure/sign/double/barsign,/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) +"by" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"bA" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"bC" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"bD" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bE" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/quartermaster/storage) +"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"bG" = (/obj/structure/cable/yellow{icon_state = "32-8"},/obj/structure/sign/department/miner_dock{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) +"bH" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bI" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"bJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"bK" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/sleeper{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/sleeper_console{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/body_scanner{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/scanner_console,/obj/item/weapon/circuitboard/grinder{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/bioprinter{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/chem_master{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"bL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"bM" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/opossum/poppy,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"bN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"bO" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/mob/living/simple_mob/otie/red/chubby/cocoa,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"bQ" = (/obj/structure/closet/secure_closet/quartermaster,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) +"bR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"bS" = (/obj/machinery/biogenerator,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bT" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"bU" = (/obj/structure/filingcabinet,/obj/machinery/light,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) +"bV" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/bar_guide,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"bW" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"bX" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"bY" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"bZ" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/requests_console/preset/engineering{pixel_y = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ca" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cb" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"cc" = (/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 200000; name = "Engine"; output_level = 250000},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"cd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/engineering/storage) +"ce" = (/obj/machinery/vending/wardrobe/cargodrobe,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"cg" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/requests_console/preset/bridge{pixel_y = 30},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"ch" = (/turf/simulated/wall/bay/r_wall/green,/area/crew_quarters/kitchen) +"ci" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ck" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"cl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"cm" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/storage) +"cn" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"co" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/power/thermoregulator,/turf/simulated/floor/plating,/area/engineering/storage) +"cq" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "burn_chamber"; output = 63},/obj/machinery/camera/network/engine,/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"cr" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"cs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"cu" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"cv" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"cw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"cx" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Void"; sortType = "Void"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/department/cargo{pixel_x = 32},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cA" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"cB" = (/obj/structure/closet/crate/bin,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"cC" = (/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cE" = (/obj/machinery/atmospherics/pipe/tank/oxygen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"cF" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"cG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"cH" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; dir = 8; pixel_x = 28},/turf/simulated/floor/wood,/area/quartermaster/qm) +"cI" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/structure/sign/painting/public{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/storage/art) +"cJ" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"cK" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cL" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"cM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"cN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "engine_airlock"; pixel_y = 24; req_one_access = list(10,11); tag_airpump = "engine_airpump"; tag_chamber_sensor = "engine_sensor"; tag_exterior_door = "engine_exterior"; tag_interior_door = "engine_interior"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"cO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"cP" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(25); stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/barbackroom) +"cR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"cS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"cT" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"cU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{dir = 1; id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark{name = "morphspawn"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"cW" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/button/remote/blast_door{id = "kitchenlockdown"; name = "Window Lockdown"; pixel_x = 2; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"cX" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"cY" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cZ" = (/obj/item/device/flashlight/lamp/green{pixel_x = 7; pixel_y = 16},/obj/item/weapon/folder/blue_captain{pixel_x = -6; pixel_y = 7},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/requests_console/preset/captain{pixel_x = -30},/obj/item/weapon/melee/chainofcommand,/obj/item/weapon/folder/blue_captain{pixel_x = -6},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"da" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"db" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/engineering/storage) +"dc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"dd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"de" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"df" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/power/grid_checker,/turf/simulated/floor/plating,/area/engineering/storage) +"dg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"dh" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"di" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/poster{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"dj" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"dk" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"dl" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/engineering/storage) +"dm" = (/obj/item/device/radio/intercom{dir = 1; pixel_x = -32; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"do" = (/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"dp" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"dr" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ds" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"du" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) +"dv" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"dw" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"dx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"dy" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"dz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"dA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/workshop) +"dB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"dC" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck2/portaft) +"dD" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"dE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"dF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/grass,/area/hydroponics) +"dG" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"dH" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/machinery/camera/network/engine{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"dI" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"dJ" = (/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/wood,/area/quartermaster/qm) +"dK" = (/obj/machinery/computer/transhuman/designer{dir = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"dL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"dM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"dN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"dO" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"dP" = (/turf/simulated/floor/grass,/area/hydroponics) +"dQ" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"dR" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"dT" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"dU" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"dV" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"dW" = (/obj/structure/closet/secure_closet/engineering_electrical/double{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"dX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"dY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"ea" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d2_portmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_portmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_portmaint_airpump"; tag_chamber_sensor = "d2_portmaint_sensor"; tag_exterior_door = "d2_portmaint_exterior"; tag_interior_door = "d2_portmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_portmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ec" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ed" = (/turf/simulated/floor/wood,/area/quartermaster/qm) +"ee" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ef" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"ei" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ej" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"ek" = (/obj/structure/sign/directions/recreation{dir = 4; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"el" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/engineering/storage) +"em" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"en" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) +"eo" = (/obj/structure/closet/secure_closet/engineering_welding/double,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ep" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"eq" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"er" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"es" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"et" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"eu" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ev" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"ew" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{id = "bridgelockdown"; name = "Bridge Lockdown"; pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/corner,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"ex" = (/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"ez" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"eA" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"eB" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eC" = (/turf/simulated/wall/bay/steel,/area/storage/primary) +"eD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/directions/stairs_up{pixel_x = 32},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eE" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"eF" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"eG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"eH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"eI" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"eJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"eK" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"eL" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"eM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eP" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eQ" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/requests_console/preset/engineering{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"eR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"eS" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"eT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"eV" = (/obj/structure/sign/directions/recreation{dir = 8; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"eW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"eX" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"eY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"eZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fa" = (/obj/machinery/door/window/westright{dir = 1; req_one_access = list(35,28)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) +"fb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/medical/psych) +"fc" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "starboard_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"fe" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"ff" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"fg" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"fh" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"fi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"fj" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"fk" = (/obj/machinery/vending/engivend,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fl" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/locker) +"fm" = (/obj/machinery/vending/wardrobe/engidrobe,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fn" = (/obj/structure/sign/directions/evac{dir = 6; pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"fo" = (/obj/machinery/recharger{pixel_y = 4},/obj/item/device/perfect_tele{name = "manager's translocator"},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"fp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"fq" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"fr" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"fs" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ft" = (/obj/machinery/vitals_monitor,/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"fu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fv" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"fx" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fy" = (/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/closet/crate/medical{desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; name = "NanoTrasen Emergency Supply Crate"},/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"fA" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"fB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"fC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"fD" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"fE" = (/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/dicecup,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards/casino,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"fG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"fH" = (/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4},/obj/item/paint_palette,/obj/item/paint_palette,/obj/item/paint_brush,/obj/item/paint_brush,/obj/effect/landmark/vines,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled,/area/storage/art) +"fI" = (/obj/effect/floor_decal/milspec/color/white/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fJ" = (/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) +"fK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/obj/machinery/station_slot_machine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/radio,/obj/item/device/radio,/obj/structure/closet/walllocker_double/command/east,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"fN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"fO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"fP" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fQ" = (/obj/structure/lattice,/obj/structure/cable/orange{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/atmos) +"fR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"fS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/sd_guide,/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"fT" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/wood,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/item/stack/material/plasteel{amount = 30},/obj/structure/closet/walllocker_double/engineering/east{name = "material sheets"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"fU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fV" = (/turf/simulated/floor,/area/bridge) +"fW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"fX" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"fY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"fZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) +"ga" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/smartfridge/sheets/persistent_lossy,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"gc" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/tesla_engine,/obj/structure/closet/walllocker_double/engineering/west,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"gd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ge" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"gf" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gg" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"gh" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/mecha_control,/obj/item/weapon/circuitboard/aifixer{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"gi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"gj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"gk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"gl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"gm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "port_escape_berth"; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"gn" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"go" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Ports"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"gp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"gq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gr" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"gs" = (/obj/machinery/atmospherics/unary/vent_pump/engine{external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"gt" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/cargo/east,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"gu" = (/obj/machinery/firealarm/angled,/obj/item/device/defib_kit/loaded,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"gv" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) +"gw" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gx" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"gy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"gA" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"gB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"gD" = (/obj/structure/table/reinforced,/obj/random/powercell,/obj/random/tech_supply,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"gE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"gF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"gG" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled,/area/hydroponics) +"gH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"gI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/weapon/circuitboard/tesla_coil,/obj/item/weapon/circuitboard/tesla_coil,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"gJ" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"gK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gL" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"gM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"gN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gO" = (/obj/structure/table/standard,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"gQ" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"gR" = (/obj/structure/closet/firecloset,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"gS" = (/obj/structure/dispenser,/turf/simulated/floor/plating,/area/engineering/storage) +"gT" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"gU" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"gV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"gW" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"gX" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"gY" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"ha" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"hb" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"hd" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"he" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"hf" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) +"hg" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"hh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"hi" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/body_record_disk,/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"hj" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"hk" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hl" = (/turf/simulated/wall/bay/green,/area/crew_quarters/kitchen) +"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"hn" = (/turf/simulated/wall/bay/white,/area/medical/cryo) +"ho" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"hq" = (/obj/structure/sign/department/ass,/turf/simulated/wall/bay/brown,/area/storage/primary) +"hr" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering EVA Storage"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"hv" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"hw" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"hx" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"hy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"hz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hA" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"hB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"hC" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"hD" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"hE" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"hF" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"hI" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"hK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"hL" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"hM" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hN" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2/O2 Filter"; tag_east = 4; tag_north = 2; tag_south = 3; tag_west = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"hO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"hP" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/disposal/wall/cleaner{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"hQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hR" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"hS" = (/obj/effect/floor_decal/milspec/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"hT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Resleeving"; sort_tag = "Resleeving"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"hU" = (/obj/structure/disposalpipe/tagger/partial{dir = 8; name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hV" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"hW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"hY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"hZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ib" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"ic" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"ie" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"if" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"ig" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ih" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ii" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"ij" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32; pixel_y = -32},/obj/structure/table/bench/steel,/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"ik" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"il" = (/obj/machinery/vending/assist,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"im" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"in" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"io" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 8},/obj/effect/landmark/start/intern,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"ip" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) +"ir" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"is" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"it" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"iu" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"iv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ix" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"iy" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"iz" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"iA" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"iB" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/requests_console/preset/cargo{pixel_y = 30},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"iC" = (/obj/structure/sink/kitchen{pixel_y = 20},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"iD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"iE" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"iF" = (/obj/machinery/door/window/brigdoor/northleft{dir = 4; name = "Kitchen"; req_access = list(28)},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"iG" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Power - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; name = "Main"; output_level = 1e+006},/turf/simulated/floor/plating,/area/engineering/storage) +"iH" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"iI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"iJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"iK" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"iL" = (/obj/structure/grille,/obj/structure/shuttle/window,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "starboard_escape_berth"; landmark_tag = "starboard_ship_berth"; name = "Stellar Delight Escape Pod Starboard"},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"iN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"iO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"iP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/requests_console/preset/medical{pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"iQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"iR" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/engineering/engine_room) +"iS" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"iT" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"iU" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"iW" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 8; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = 25},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"iX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"iY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"iZ" = (/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"ja" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"jc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"jd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"jf" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/injector_maker{pixel_y = 21},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"jg" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ji" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jj" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/storage/art) +"jk" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"jm" = (/obj/structure/table/reinforced,/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"jn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"jo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/turf/simulated/floor,/area/hydroponics) +"jp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"jq" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"jr" = (/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"js" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"jt" = (/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"jw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"jx" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"jy" = (/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = -35},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -29},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"jA" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"jB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"jC" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jD" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"jE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"jF" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jG" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"jI" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; pixel_y = 6},/turf/simulated/floor/wood,/area/medical/psych) +"jJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jK" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"jL" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"jM" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hydroponics) +"jN" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"jO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"jP" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jQ" = (/turf/simulated/floor/reinforced,/area/quartermaster/storage) +"jS" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"jT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"jU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "bridgelockdown"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/bridge) +"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"jW" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"jX" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/medical/psych) +"jY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"jZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ka" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"kb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"kc" = (/obj/machinery/computer/power_monitor,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"kd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ke" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/medical/psych) +"kf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"kg" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"kh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ki" = (/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 32},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"kj" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kk" = (/obj/machinery/vending/blood,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kl" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"km" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ko" = (/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,/obj/structure/table/reinforced,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"kq" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"kr" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ks" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/mech_recharger{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/cell_charger{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/recharger{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/recharge_station{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/arcade/battle,/obj/item/weapon/circuitboard/arcade/clawmachine{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/jukebox{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"kt" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/aftport) +"ku" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"kv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"kx" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ky" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"kz" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "cold loop pump"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"kA" = (/obj/structure/table/reinforced,/obj/random/toolbox,/obj/item/device/geiger,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"kB" = (/obj/structure/table/standard,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"kC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"kD" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) +"kE" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"kF" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"kH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"kI" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"kJ" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"kK" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"kL" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"kM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"kN" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"kO" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kP" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"kQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"kR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/turf/simulated/floor,/area/hydroponics) +"kS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Tech Storage"; req_access = list(23); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) +"kV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kW" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"kX" = (/obj/machinery/vending/dinnerware,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"kY" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"kZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"la" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"lc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) +"ld" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Medical"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#a6753d"; fill_color = "#75736f"; name = "Quartermaster"; req_access = list(41); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/qm) +"lf" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"lg" = (/obj/structure/closet/secure_closet/captains,/obj/item/clothing/glasses/omnihud/all,/obj/item/weapon/disk/nuclear,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/storage) +"li" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"lj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lk" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/southright{dir = 1; name = "Engineering Hardsuits"; req_one_access = list(11)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ll" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"lm" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ln" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"lo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"lq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"lr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ls" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"lt" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"lv" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"lw" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/powermonitor{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rcon_console,/obj/item/weapon/circuitboard/atmoscontrol{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/drone_control{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"lx" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"ly" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"lz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"lA" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/engineering/engine_room) +"lB" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"lC" = (/obj/machinery/computer/communications{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"lD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"lF" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"lG" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"lI" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westleft{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"lJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"lK" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"lL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"lM" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/space,/area/space) +"lN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"lO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"lP" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"lQ" = (/obj/structure/sign/directions/chapel{dir = 1; pixel_x = 32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 1; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lR" = (/obj/machinery/vending/wardrobe/virodrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"lS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lT" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/structure/sign/department/bar{pixel_y = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"lV" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_interior"; locked = 1; name = "Engine Airlock"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "engine_airlock"; name = "interior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"lW" = (/obj/machinery/medical_kiosk{pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"lX" = (/obj/machinery/door/window/southright{dir = 1; name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"lY" = (/obj/structure/sign/directions/library{dir = 1; pixel_x = -32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 1; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lZ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ma" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mb" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"md" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/loadout_misc,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"me" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"mf" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mg" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"mh" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mi" = (/obj/structure/sign/department/bridge{pixel_x = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"mj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"mk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"ml" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"mm" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"mn" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) +"mo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"mq" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) +"mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"ms" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mt" = (/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"mu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"mw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"mx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"mz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"mA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mB" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mC" = (/obj/machinery/power/emitter{anchored = 1; dir = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"mD" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"mE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) +"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"mG" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"mH" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/light{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"mI" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"mJ" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"mK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 2"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery2) +"mL" = (/obj/structure/flora/pottedplant/small,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"mM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"mN" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"mO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engineering_monitoring) +"mP" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/wood,/area/medical/psych) +"mQ" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"mR" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/grass,/area/hydroponics) +"mT" = (/turf/simulated/wall/bay/steel,/area/storage/art) +"mU" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"mV" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"mW" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"mX" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"mY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"mZ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"na" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 8},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"nb" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"nd" = (/turf/simulated/wall/bay/white,/area/medical/surgery2) +"nf" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ng" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) +"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"nm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"no" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"np" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange,/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"nq" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"nr" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"ns" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Engineering"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"nt" = (/turf/simulated/wall/bay/brown,/area/crew_quarters/recreation_area) +"nu" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#c9892e"; id_tag = "captaindoor"; name = "Captain's Office"; req_access = list(20); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/captain) +"nv" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"nw" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ny" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/co2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"nA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"nB" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nC" = (/obj/machinery/appliance/cooker/grill,/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"nD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"nE" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nF" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"nG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"nI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"nJ" = (/obj/structure/cable/white{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"nK" = (/turf/simulated/wall/bay/r_wall/blue,/area/bridge) +"nL" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"nM" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"nN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"nO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_eva) +"nP" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"nQ" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/machinery/requests_console{department = "Service"; dir = 1; pixel_y = -26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"nR" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"nS" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"nT" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"nU" = (/obj/structure/table/steel_reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"nV" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"nW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"nX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"oa" = (/turf/simulated/wall/bay/brown,/area/maintenance/stellardelight/substation/engineering) +"ob" = (/obj/effect/shuttle_landmark/premade/sd/deck2/starboard,/turf/space,/area/space) +"oc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"od" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"oe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"of" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"og" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"oh" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"oi" = (/obj/structure/sign/department/bridge{pixel_x = -32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"oj" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"ok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) +"ol" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"om" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"on" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"oo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"op" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"oq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"os" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/blue,/obj/structure/sign/deck2{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) +"ot" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"ou" = (/obj/machinery/computer/supplycomp/control{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"ov" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"ow" = (/turf/simulated/wall/bay/r_wall/orange,/area/storage/tech) +"ox" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"oy" = (/obj/machinery/door/blast/angled{dir = 4; id = "burnchamberlockvent"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"oz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) +"oA" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oB" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"oC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"oD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(28); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"oE" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) +"oF" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"oG" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"oH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"oI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"oJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"oK" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"oL" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Art Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) +"oO" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"oP" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) +"oQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oR" = (/turf/simulated/floor/plating,/area/engineering/storage) +"oS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 4},/obj/effect/landmark/start/entertainer,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"oT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"oU" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"oV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"oX" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"oY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"oZ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"pa" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pc" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) +"pe" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"pf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) +"pg" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ph" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"pj" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"pk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Port Solar Array"; name_tag = "Port Solar Array"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"pl" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Cargo"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"pn" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/recharge_station,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"po" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"pr" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"pu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) +"pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"pw" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"px" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) +"py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"pz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"pA" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"pB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"pC" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"pD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pH" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pI" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"pJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"pK" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"pL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"pM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"pN" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"pO" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"pP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/storage/art) +"pQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"pR" = (/obj/structure/closet/gmcloset{name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"pS" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"pT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"pU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"pV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"pW" = (/obj/machinery/media/jukebox,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"pX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"qa" = (/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"qb" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"qd" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"qe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"qf" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/surgery2) +"qg" = (/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"qh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"qi" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"qj" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/device/flashlight/lamp/green{pixel_y = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"qk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ql" = (/obj/machinery/atmospherics/pipe/tank/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"qm" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"qn" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"qo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"qp" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) +"qq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qr" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/storage) +"qs" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/storage/art) +"qt" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"qu" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"qv" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/storage) +"qw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"qz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"qA" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/skills{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/med_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/secure_data{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/security,/obj/item/weapon/circuitboard/security/engineering{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/security/mining{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/stationalert_security{pixel_x = 3; pixel_y = -3},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"qC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"qD" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"qF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qG" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"qH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"qI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"qJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"qL" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"qN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"qP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"qQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry) +"qS" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"qT" = (/obj/structure/lattice,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"qV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"qW" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"qX" = (/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/item/device/integrated_circuit_printer,/obj/structure/table/steel,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"qY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"qZ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck2{pixel_x = 32},/obj/structure/sign/directions/medical/morgue{pixel_x = -32},/obj/structure/sign/directions/medical/resleeving{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical/virology{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ra" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"rb" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"rd" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"re" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"rg" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"rh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ri" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rk" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"rl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"rm" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"rn" = (/obj/machinery/appliance/cooker/fryer,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"rp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"rq" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"rr" = (/obj/structure/closet/walllocker_double/south{color = "#8da4a6"; pixel_x = -5},/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchen"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -25},/obj/machinery/light_switch{dir = 1; pixel_x = -1; pixel_y = -42},/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchenhallway"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -36},/obj/random/donkpocketbox,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"rs" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) +"ru" = (/obj/structure/bed/chair/bay/comfy/yellow{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"rv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Workshop"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) +"rx" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/primary) +"ry" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Captain's Storage"; req_access = list(20)},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/card/id/gold/captain/spare{name = "\improper Captain's spare ID"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"rz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"rB" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"rC" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"rD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) +"rE" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/newscaster{pixel_y = 28},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"rF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"rG" = (/obj/structure/bed/chair/comfy,/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"rH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"rM" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"rN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/captain) +"rO" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/belt/utility,/obj/item/stack/material/sandstone{amount = 5},/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled,/area/hydroponics) +"rP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) +"rQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rR" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portaft) +"rT" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/tech) +"rV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"rW" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"rX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#9c9c9c"; name = "Laundry"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) +"rY" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 23},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"rZ" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) +"sa" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"sb" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"sc" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"sd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"se" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sg" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) +"si" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/structure/disposalpipe/down{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) +"sj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"sk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) +"sl" = (/obj/item/weapon/stool/padded{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"sm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/airlock_sensor{id_tag = "engine_sensor"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"sn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"so" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"sp" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"sq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/chemistry) +"sr" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"su" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/floortube{dir = 1; pixel_y = -10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"sw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"sx" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"sy" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"sz" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"sA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"sB" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"sC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) +"sE" = (/obj/machinery/honey_extractor,/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"sF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"sG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"sH" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"sI" = (/obj/structure/sign/deck2{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"sJ" = (/obj/machinery/vending/wardrobe/medidrobe,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"sK" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"sL" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"sM" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"sN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) +"sO" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"sP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"sQ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"sR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sS" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/blue,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) +"sT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"sU" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/o2{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"sV" = (/obj/machinery/firealarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"sW" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/port) +"sX" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"sY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = 32},/obj/machinery/camera/network/engine,/turf/simulated/floor/airless,/area/engineering/engine_room) +"sZ" = (/obj/structure/closet/crate{icon_state = "crate"; name = "Grenade Crate"},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/tool/screwdriver,/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ta" = (/turf/simulated/wall/bay/brown,/area/engineering/workshop) +"tb" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"tc" = (/obj/structure/lattice,/turf/space,/area/stellardelight/deck2/exterior) +"td" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"te" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"tg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) +"th" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"ti" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tj" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tm" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tn" = (/obj/structure/table/standard,/obj/item/device/camera{pixel_x = -2; pixel_y = 9},/obj/item/device/camera{pixel_x = 2; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ts" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"tt" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "qmwindows"; name = "Privacy Shutters"; pixel_y = 15},/turf/simulated/floor/wood,/area/quartermaster/qm) +"tu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"tv" = (/obj/structure/bed/psych,/obj/structure/sign/painting/library_secure{pixel_y = -30},/turf/simulated/floor/wood,/area/medical/psych) +"tw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Starboard Solar Array"; name_tag = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ty" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tz" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tA" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"tB" = (/obj/machinery/firealarm/angled,/obj/structure/frame,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"tC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"tD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"tE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tF" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"tI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"tK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"tL" = (/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"tM" = (/obj/structure/table/rack,/obj/structure/bed/chair/wheelchair{dir = 4},/obj/structure/bed/chair/wheelchair{dir = 4},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"tN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"tT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"tU" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tV" = (/obj/item/weapon/storage/box/nifsofts_medical{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/nifsofts_medical,/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -4; pixel_y = 4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = 7; pixel_y = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"tW" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"tX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"tZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ua" = (/obj/effect/floor_decal/milspec/color/blue/corner,/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -29},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = -35},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ub" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"uc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ud" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"ue" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) +"uh" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/space,/area/space) +"uj" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"uk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"ul" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"um" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"un" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"uo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) +"up" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"uq" = (/obj/structure/sign/directions/medical{dir = 8; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 22},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 47},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ur" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"us" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/recharge_station,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ut" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"uu" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"uv" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"uw" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"ux" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"uy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"uz" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"uA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"uB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"uC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"uD" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"uE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"uF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/halls,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"uG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"uI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"uJ" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"uK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"uL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"uM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) +"uN" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"uO" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"uP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"uQ" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"uR" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"uT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"uU" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"uW" = (/obj/machinery/appliance/mixer/candy,/obj/machinery/light,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"uX" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"uY" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"uZ" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "bar"; name = "Bar Shutter Control"; pixel_x = 24},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -9},/obj/machinery/button/remote/blast_door{dir = 8; id = "barlockdown"; name = "Window Lockdown"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"va" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) +"vb" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"vc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"vd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"ve" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"vf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"vg" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"vh" = (/obj/structure/closet/crate/freezer,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"vi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"vj" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"vk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"vo" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"vp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"vq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"vu" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"vw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vx" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"vy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"vz" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"vA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"vB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"vC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"vD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"vF" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"vG" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/gloves/sterile/nitrile,/obj/item/clothing/gloves/sterile/nitrile,/obj/random/tetheraid,/obj/random/tetheraid,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"vH" = (/obj/effect/floor_decal/milspec/color/white/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"vI" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"vJ" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"vK" = (/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"vL" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"vM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"vN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"vO" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"vP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"vQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"vR" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"vS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"vU" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"vV" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vX" = (/obj/machinery/vending/fitness,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"vY" = (/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"wa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"wd" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"we" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"wf" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"wg" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"wh" = (/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"wi" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"wk" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"wm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"wn" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"wo" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"wp" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/combustionworkshop) +"wq" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"wr" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ws" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) +"wt" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"wu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ww" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"wy" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"wz" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"wA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"wB" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"wC" = (/obj/machinery/recharger,/obj/item/weapon/storage/box/syringegun,/obj/item/weapon/gun/launcher/syringe,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"wD" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"wE" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"wG" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"wH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"wJ" = (/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/tiled,/area/storage/art) +"wK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"wL" = (/obj/machinery/appliance/mixer/cereal,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"wM" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"wN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) +"wP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"wR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"wS" = (/obj/structure/bed/chair,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wT" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck2/triage) +"wV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"wW" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"wX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wY" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftport) +"wZ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xa" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"xb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"xd" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/briefingroom) +"xe" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"xg" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"xh" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"xi" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2O Filter"; tag_east = 2; tag_south = 1; tag_west = 7},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xj" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"xk" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"xl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/structure/sign/atmos_air{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xm" = (/obj/machinery/alarm/angled,/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "vinestart"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"xo" = (/obj/machinery/computer/supplycomp/control,/turf/simulated/floor/wood,/area/quartermaster/qm) +"xp" = (/turf/simulated/wall/bay/white,/area/medical/psych) +"xq" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"xr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xt" = (/obj/machinery/pipedispenser/disposal,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xu" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xv" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{pixel_x = 9},/obj/item/weapon/paper_bin{pixel_x = -7; pixel_y = -2},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"xw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xy" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"xz" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"xA" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"xB" = (/obj/machinery/computer/station_alert/all,/obj/structure/panic_button{pixel_y = 32},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"xC" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xD" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"xE" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"xG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"xH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Mental Health"; req_access = list(64); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/psych) +"xI" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/accessory,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"xJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/biochemistry/full,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"xK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"xL" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"xM" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"xN" = (/mob/living/simple_mob/animal/passive/mouse/brown/feivel,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"xO" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"xP" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"xQ" = (/obj/structure/sign/redcross,/turf/simulated/wall/bay/white,/area/medical/reception) +"xR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"xU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xV" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"xW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/phoron{pixel_x = -32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"xY" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"xZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"ya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/nosmoking_1{pixel_y = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"yc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"ye" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"yg" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"yh" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yi" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_access = list(11,24); req_one_access = null; stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"yj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"yk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"yl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"ym" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/department/atmos{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"yn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"yo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) +"yp" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"yq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"yr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ys" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"yv" = (/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"yw" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"yx" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"yy" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"yA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"yC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yE" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yF" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yG" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"yH" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) +"yK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yM" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"yN" = (/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; locked = 1; name = "Burn Chamber"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor/reinforced,/area/stellardelight/deck2/combustionworkshop) +"yP" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"yQ" = (/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"yR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"yT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"yV" = (/obj/item/device/sleevemate,/obj/item/device/denecrotizer/medical,/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/gun/energy/mouseray/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftstarboard) +"yX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westleft{dir = 4; name = "Animal Pen"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"yY" = (/obj/machinery/camera/network/halls{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"yZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"za" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"zb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"zc" = (/obj/structure/sign/department/chem{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"zd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"zf" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zh" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"zi" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"zj" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"zk" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"zo" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"zp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"zq" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"zr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"zs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zt" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"zu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"zv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"zw" = (/obj/structure/bed/chair/backed_red{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"zy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"zz" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"zD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"zG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"zH" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"zI" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) +"zJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"zK" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"zL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/firealarm/angled,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/medical/cryo) +"zM" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"zN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"zO" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"zQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) +"zR" = (/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"zT" = (/obj/machinery/shieldgen,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/engineering/storage) +"zU" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery) +"zV" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"zW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/trash_pile,/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"zX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"zY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"zZ" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Aa" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"Ab" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Ae" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"Af" = (/obj/structure/table/reinforced,/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ah" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) +"Ai" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Aj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ak" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Al" = (/obj/structure/table/fancyblack,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Am" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"An" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Ao" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Ap" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ar" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"As" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Scrubber to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"At" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Au" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space) +"Av" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Aw" = (/obj/machinery/light{dir = 8},/obj/structure/sign/directions/engineering/atmospherics{dir = 8; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Ax" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/vending/wallmed1/public{pixel_x = 29},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Ay" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Az" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) +"AA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"AB" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"AC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"AE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"AF" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"AG" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"AI" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"AK" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"AL" = (/obj/machinery/light{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 6; pixel_x = 32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"AM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/art) +"AN" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"AO" = (/obj/structure/table/darkglass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/button/remote/airlock{id = "captaindoor"; pixel_x = -15; pixel_y = 2},/obj/item/weapon/stamp/captain{pixel_x = 10; pixel_y = 6},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"; pixel_x = 11; pixel_y = -3},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"AP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"AR" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics) +"AS" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/algae_farm{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"AT" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"AU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"AW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"AX" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"AY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"AZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ba" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Bb" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Bc" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Bd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Be" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Bf" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Bg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Bh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"Bj" = (/obj/machinery/smartfridge/produce/persistent_lossy,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/kitchen) +"Bk" = (/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Bl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 1"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery) +"Bm" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bn" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder{pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bo" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bp" = (/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Bq" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"Br" = (/obj/structure/shuttle/window,/obj/structure/grille,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "port_escape_berth"; landmark_tag = "port_ship_berth"; name = "Stellar Delight Escape Pod Port"},/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"Bs" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Bu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Bv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Bw" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"Bx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"BA" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"BB" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"BC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"BD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"BE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"BF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"BG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"BH" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"BI" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/quartermaster/qm) +"BJ" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"BK" = (/obj/item/weapon/stool/padded,/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"BL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"BM" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/cargo,/obj/item/device/retail_scanner/cargo,/obj/item/weapon/stamp/accepted,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"BN" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) +"BO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"BP" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"BQ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"BR" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"BS" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = 9; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"BT" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/storage) +"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"BV" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"BW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"BX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"BY" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Cb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"Cc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Cd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ce" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Cf" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cg" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"Ch" = (/obj/machinery/atmospherics/pipe/tank/oxygen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Cj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ck" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Cl" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"Cm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Cn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Co" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Cp" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cq" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cr" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Ct" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Cu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Cv" = (/obj/machinery/gear_painter,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Cx" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/engineering,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CA" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"CB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CC" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"CD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"CE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"CF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"CG" = (/obj/machinery/computer/ship/helm,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"CH" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CI" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"CJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"CK" = (/obj/structure/table/fancyblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/toy/desk/stellardelight{pixel_x = -11; pixel_y = -8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"CL" = (/obj/structure/table/reinforced,/obj/random/maintenance/clean,/obj/random/powercell,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"CM" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/orange{icon_state = "1-8"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CO" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"CP" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"CQ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"CR" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CS" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"CT" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"CV" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/clothing,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"CW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"CY" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"CZ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Da" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Dc" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Dd" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"De" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Df" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Dg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Dh" = (/obj/machinery/computer/med_data,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Di" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Dj" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Dk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#ffffff"; id_tag = "MedbayFoyer W"; name = "Medbay Foyer"; req_access = list(5); req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"Dl" = (/obj/structure/bed/chair/bay/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Dm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Dn" = (/turf/simulated/floor/wood,/area/medical/psych) +"Do" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"Dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"Ds" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Dt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Du" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/undies_wardrobe,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"Dv" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Dw" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_eva) +"Dx" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 4},/obj/item/weapon/clipboard,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Dy" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Dz" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Chemistry"; req_access = list(33); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/chemistry) +"DA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"DB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"DC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"DD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/freezer{pixel_y = 24},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"DF" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"DG" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"DH" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"DI" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"DJ" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-8"},/turf/simulated/floor,/area/medical/cryo) +"DL" = (/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"DM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"DN" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"DO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"DP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"DQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"DR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"DS" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"DT" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"DV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/department/cargo{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"DW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"DX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"DY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"DZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ea" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "d2_starmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_starmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_starmaint_airpump"; tag_chamber_sensor = "d2_starmaint_sensor"; tag_exterior_door = "d2_starmaint_exterior"; tag_interior_door = "d2_starmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_starmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Ec" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ed" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tape_roll,/obj/item/weapon/clipboard,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ee" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ef" = (/turf/simulated/open,/area/stellardelight/deck2/aftport) +"Eg" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ei" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Ej" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ek" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"El" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Em" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"En" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Eo" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Ep" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Eq" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Er" = (/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Es" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Et" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Eu" = (/obj/effect/shuttle_landmark{base_area = /area/quartermaster/storage; base_turf = /turf/simulated/floor/reinforced; docking_controller = "cargo_bay"; landmark_tag = "supply_station"; name = "Ship Cargo Bay"},/turf/simulated/floor/reinforced,/area/quartermaster/storage) +"Ev" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ew" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Ex" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5,24); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) +"Ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) +"Ez" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"EA" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"EC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"ED" = (/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/table/darkglass,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"EE" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"EF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) +"EG" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"EJ" = (/obj/machinery/computer/crew{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"EK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EL" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"EM" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"EN" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"EO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/black,/obj/effect/landmark/start/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"EP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"EQ" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"ER" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/storage) +"ES" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) +"ET" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EU" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"EV" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"EW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"EX" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"EZ" = (/obj/machinery/vending/tool,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Fa" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fb" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Fc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Fd" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Fe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Ff" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fg" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Fh" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Fi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; pixel_y = 24; req_one_access = null; tag_door = null},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Fk" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Fl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Fm" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Fn" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"Fo" = (/obj/machinery/power/solar_control{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Fq" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Fr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Fs" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Ft" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Fw" = (/obj/structure/table/gamblingtable,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Fx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/button/ignition{id = "castfireball"; pixel_y = 28},/obj/machinery/light{dir = 4},/obj/machinery/button/remote/blast_door{id = "burnchamberlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 31},/obj/machinery/button/remote/blast_door{id = "burnchamberlockvent"; name = "Chamber Vent"; pixel_x = -1; pixel_y = 37},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; sensors = list("burn_chamber" = "Burn Chamber"); throwpass = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fy" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Fz" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"FA" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/nifsoft_shop,/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"FB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"FC" = (/obj/structure/closet/secure_closet/bar,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"FD" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "atmos_out"; use_power = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"FE" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"FF" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"FG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"FH" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"FI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"FJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"FK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"FM" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"FN" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/grinder{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/grill{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/fryer{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/oven{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/cerealmaker{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/candymachine{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/biogenerator{pixel_x = 3; pixel_y = -3},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"FP" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"FQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"FR" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/overwear,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"FS" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"FT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"FU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"FV" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"FW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/floortube{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"FX" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"FY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"FZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Ga" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Gb" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Gd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ge" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Gf" = (/turf/simulated/wall/bay/orange,/area/maintenance/stellardelight/substation/engineering) +"Gg" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Gh" = (/obj/machinery/atmospherics/binary/pump{name = "CO2 to O2 Generators"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Gi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Gj" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Gl" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Gn" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Go" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Gp" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Gq" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) +"Gr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Gs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"Gt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"Gu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Gv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Gw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Gx" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Gy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Gz" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"GA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"GB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"GD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) +"GE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"GF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"GG" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"GI" = (/obj/effect/landmark{name = "Observer-Start"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight/center,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"GK" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"GL" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"GM" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"GN" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"GO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"GP" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"GQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/closet/firecloset,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"GR" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"GS" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 10},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GT" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"GV" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"GX" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"GY" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GZ" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ha" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Hb" = (/obj/item/modular_computer/console/preset/command,/obj/machinery/camera/network/command,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Hc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Hd" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) +"He" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Hf" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Hg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) +"Hh" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Hi" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Hj" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Hk" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Hl" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Hm" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"Ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Hp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Hq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) +"Hr" = (/turf/simulated/wall/bay/white,/area/medical/surgery) +"Hs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ht" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Hu" = (/obj/structure/table/standard,/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Hv" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"Hw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Hx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/engineering/storage) +"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Hz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"HA" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"HB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/medical/psych) +"HC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"HD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"HE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"HF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"HG" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"HH" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"HI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"HJ" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/kitchen) +"HK" = (/turf/simulated/wall/bay/orange,/area/engineering/locker_room) +"HL" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"HM" = (/obj/structure/table/reinforced,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"HN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"HO" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Primary Tool Storage"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) +"HQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"HR" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"HT" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) +"HV" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"HW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/locker) +"HX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"HY" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/emblem/stellardelight{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Ia" = (/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/random/medical,/obj/item/weapon/storage/box/beakers{pixel_x = 14; pixel_y = 10},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ib" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Id" = (/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ie" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"If" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ig" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ih" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ii" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ij" = (/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module/nano,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive/micro,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card/wired,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit/small,/obj/item/weapon/computer_hardware/tesla_link,/obj/item/weapon/computer_hardware/nano_printer,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/device/multitool,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Ik" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Il" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Im" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"In" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Io" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/device/retail_scanner/command,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Ip" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"Iq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Ir" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Is" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"It" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Iu" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Iv" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Iw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ix" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = -32},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Iz" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"IA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"IB" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"IC" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ID" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IE" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) +"IF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"IG" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"IH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"II" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Glass"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/locker_room) +"IJ" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"IL" = (/obj/structure/table/steel_reinforced,/obj/machinery/keycard_auth{pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"IN" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Distro"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"IO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IQ" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"IR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/cargo{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IT" = (/obj/machinery/vending/wardrobe/chemdrobe,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"IU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) +"IV" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) +"IW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"IX" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"IY" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"IZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ja" = (/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/partslathe,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Jb" = (/obj/machinery/shield_capacitor,/turf/simulated/floor/plating,/area/engineering/storage) +"Jd" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Je" = (/obj/structure/sign/directions/bar{dir = 1; pixel_y = 25},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Jf" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardaft) +"Jg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Jh" = (/turf/space,/area/space) +"Ji" = (/obj/machinery/computer/arcade/orion_trail,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Jj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Jl" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Jm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Jn" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"Jp" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"Jq" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/fore) +"Jr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Js" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Jt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Jv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Jw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Jx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Jy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"JB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) +"JC" = (/obj/structure/sign/department/cargo{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"JD" = (/obj/machinery/computer/power_monitor{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"JE" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"JF" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JG" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"JI" = (/obj/effect/floor_decal/milspec/color/green/half,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"JJ" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"JK" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"JL" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"JM" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"JN" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"JP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"JQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"JR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"JS" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"JT" = (/obj/machinery/reagentgrinder,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"JV" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"JW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JX" = (/obj/machinery/shield_gen,/turf/simulated/floor/plating,/area/engineering/storage) +"JY" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/art) +"JZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"Ka" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Kb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Kc" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"Kd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ke" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) +"Kf" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Kg" = (/obj/structure/table/glass,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Kh" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Kj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/vending/event,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Kk" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Kl" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) +"Km" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Kn" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Ko" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Kp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Kq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/obj/machinery/light{dir = 1},/obj/machinery/vending/wardrobe/atmosdrobe,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Kr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Ks" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Kt" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ku" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Kv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Kw" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Kx" = (/obj/structure/table/woodentable,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/item/weapon/flame/lighter/zippo{pixel_x = 2},/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Ky" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Kz" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) +"KA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"KB" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"KD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"KG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"KH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"KI" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) +"KJ" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"KK" = (/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) +"KL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) +"KM" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"KN" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"KP" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"KQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"KR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"KS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"KT" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"KU" = (/obj/machinery/vending/coffee,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"KV" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"KW" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"KX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"KY" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"La" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Lb" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"Lc" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Ld" = (/obj/item/modular_computer/console/preset/medical{dir = 4},/obj/effect/floor_decal/milspec/color/white/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Le" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Lf" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Lg" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Lh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Li" = (/obj/machinery/floodlight,/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Lm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ln" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Lp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"Lq" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Lr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ls" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Lt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Lu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/northright{dir = 2; name = "Cargo Ordering"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) +"Lv" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Lw" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Lx" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Ly" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Lz" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"LB" = (/obj/machinery/power/solar_control{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"LC" = (/obj/machinery/computer/crew{dir = 8},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"LD" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"LE" = (/turf/simulated/wall/bay/r_wall/steel,/area/quartermaster/storage) +"LF" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/fiftyspawner/cardboard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"LG" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"LH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"LI" = (/turf/simulated/wall/bay/orange,/area/engineering/engineering_monitoring) +"LK" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"LL" = (/obj/machinery/door/window/brigdoor/northleft{name = "Bar"; req_access = list(25)},/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"LM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/portescape) +"LN" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"LO" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hydroponics) +"LP" = (/obj/structure/table/woodentable,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/civilian,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"LR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LS" = (/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics) +"LT" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LU" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Distro Loop Drain"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"LV" = (/obj/structure/table/glass,/obj/structure/sign/department/operational{pixel_x = 32},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"LW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"LX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"LY" = (/turf/simulated/wall/bay/brown,/area/engineering/engine_eva) +"LZ" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ma" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/stack/cable_coil/random,/obj/item/weapon/hand_labeler,/obj/item/stack/cable_coil/random,/obj/item/device/floor_painter,/obj/machinery/camera/network/civilian,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"Mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Mc" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Md" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Me" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Mf" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "Phoron Filter"; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Mh" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/rdserver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/protolathe{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/autolathe{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/mechfab{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/prosthetics{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Mi" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Mj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Mk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ml" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Mm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Mn" = (/obj/machinery/beehive,/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"Mo" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Mp" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) +"Ms" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Mt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/keycard_auth{pixel_x = 32},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Mu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/n2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Mw" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 1},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Mx" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"My" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Mz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/secure{name = "Secure Tech Storage"; req_access = list(19,23)},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/tech) +"MA" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/evac{dir = 8; pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"MB" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"MC" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"MD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ME" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) +"MF" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"MG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"MH" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"MJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"MK" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"MM" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/obj/machinery/light/floortube{pixel_y = -4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"MN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"MP" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Direct Injector"},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"MQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"MR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"MS" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"MT" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"MU" = (/turf/simulated/wall/bay/green,/area/hydroponics) +"MV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"MW" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/card,/obj/item/weapon/circuitboard/communications{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"MX" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"MY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Medical"; sortType = "Medical"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"MZ" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Na" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Nb" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Nc" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Nd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ne" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) +"Nf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"Ng" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Nh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Nj" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Nk" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Nl" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Nm" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Nn" = (/obj/machinery/computer/ship/engines,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"No" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Np" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Nq" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Nr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Ns" = (/turf/simulated/floor/tiled,/area/storage/art) +"Nt" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Nu" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/button/remote/blast_door{dir = 1; id = "psychshutter"; name = "Shutter Control"; pixel_x = -15; pixel_y = -28},/obj/effect/landmark/start/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Nv" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Nw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Kitchen/Botany"; sortType = "Kitchen/Botany"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ny" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Nz" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"NA" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) +"NB" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"NC" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"ND" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"NE" = (/obj/structure/reagent_dispensers/foam,/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"NF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"NG" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = 23},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"NH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"NJ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"NK" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"NM" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/storage) +"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) +"NO" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = 32},/turf/simulated/floor/wood,/area/quartermaster/qm) +"NP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"NS" = (/obj/structure/table/rack/steel,/obj/item/instrument/violin,/obj/item/instrument/piano_synth,/obj/item/instrument/recorder,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"NU" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"NW" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"NX" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"NY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"NZ" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Oa" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Quartermaster-Office"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Ob" = (/obj/structure/table/gamblingtable,/obj/random/coin/sometimes,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Od" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"Og" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Oh" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"Oi" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Oj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"Ol" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Om" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"On" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Oo" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Op" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Oq" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"Or" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Os" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Ot" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Ou" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ov" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ow" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"Ox" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Oz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OA" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"OC" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"OD" = (/obj/machinery/camera/network/command{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"OF" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) +"OG" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery2) +"OH" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"OI" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"OJ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"OK" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"OL" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"OM" = (/obj/structure/foodcart,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"ON" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OO" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers{name = "box of measuring cups"; pixel_x = 2; pixel_y = 3; starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"OP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"OQ" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"OR" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"OS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OT" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/requests_console/preset/atmos{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"OU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"OV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"OW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"OX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"OY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"OZ" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Pc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Pd" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Pe" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Pf" = (/obj/structure/sign/directions/evac{dir = 4; pixel_x = -32},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"Pg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/book/manual/cook_guide,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Ph" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Pi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Pj" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Pk" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"Pl" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/flora/pottedplant/smallcactus{pixel_y = 14},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Pm" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Pn" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Po" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Pp" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"Pq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Pr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ps" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Pt" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Pu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) +"Pw" = (/obj/machinery/sparker{id = "castfireball"; pixel_x = 20},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"Px" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) +"Py" = (/obj/machinery/alarm/angled,/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Pz" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/medical/cryo) +"PA" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"PC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/quartermaster/qm) +"PE" = (/turf/simulated/wall/bay/white,/area/medical/reception) +"PF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"PG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"PH" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"PJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"PK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"PL" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/sign/department/mail{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"PP" = (/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"PQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"PR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"PS" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{dir = 1; id = "cargounload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable/orange{icon_state = "4-8"},/obj/random/snack,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"PU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"PV" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"PW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"PY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/medical/cryo) +"PZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Qa" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Qc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Qd" = (/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Qe" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Qf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Qg" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Qh" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Qi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Qj" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Qk" = (/obj/machinery/computer/rcon{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ql" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/console_screen,/obj/item/device/pipe_painter,/obj/item/weapon/pipe_dispenser,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/steel,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Qm" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Qn" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Qo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"Qp" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/structure/sign/department/operational{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Qq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Qr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Qt" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Qu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Qv" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Qw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Qx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Qy" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Qz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"QA" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"QB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) +"QC" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"QD" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"QE" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"QG" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"QH" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"QI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"QJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -32},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"QK" = (/obj/machinery/atmospherics/omni/mixer{name = "Air Mixer"; tag_east = 1; tag_east_con = 0.79; tag_north = 1; tag_north_con = 0.21; tag_south = 2; tag_south_con = null; tag_west_con = null},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"QN" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -27},/obj/item/bodybag/cryobag{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag{pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"QP" = (/turf/simulated/wall/bay/white,/area/medical/cmostore) +"QQ" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"QR" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"QT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) +"QU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engineering_monitoring) +"QV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"QW" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"QZ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Ra" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/tech) +"Rb" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Rc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"Rd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) +"Re" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Monitoring Room"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"Rf" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/book/manual/sd_guide,/obj/effect/floor_decal/milspec/color/blue/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Rh" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Ri" = (/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Rj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Rk" = (/obj/structure/sign/department/eng{pixel_x = 32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Rl" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Rm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Rn" = (/obj/structure/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Ro" = (/obj/machinery/vending/wardrobe/hydrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Rq" = (/turf/simulated/open,/area/stellardelight/deck2/fore) +"Rr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Rs" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Ru" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"Rv" = (/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) +"Rx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ry" = (/obj/machinery/particle_accelerator/control_box,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Rz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"RA" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"RD" = (/obj/structure/sign/directions/kitchen{dir = 1; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"RE" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"RF" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"RG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RH" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"RI" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"RJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"RL" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"RM" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"RN" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"RO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"RP" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"RQ" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/body_scanconsole{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"RR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"RS" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"RT" = (/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"RV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RW" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/medical/psych) +"RX" = (/obj/structure/table/standard,/obj/item/device/camera_film{pixel_x = 4; pixel_y = 11},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"RY" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) +"Sb" = (/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Sc" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Tanks To Engines"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Se" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/plating,/area/engineering/storage) +"Sf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Sg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Sh" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Sj" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Sk" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Sm" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Sn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"So" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/requests_console/preset/bridge{pixel_x = -30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Sp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Sq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/qm,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Sr" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Ss" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"St" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Su" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Sw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "engine_airlock"; name = "exterior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_exterior"; locked = 1; name = "Engine Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"Sx" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) +"Sy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics"; req_one_access = list(35,28); stripe_color = "#00ab03"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"Sz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) +"SA" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) +"SD" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"SE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) +"SF" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"SG" = (/obj/structure/table/rack/steel,/obj/item/device/slime_scanner,/obj/item/device/sleevemate,/obj/item/device/robotanalyzer,/obj/item/device/reagent_scanner,/obj/item/device/healthanalyzer,/obj/item/device/geiger,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"SH" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "privacyshutters"; name = "Shutter Control"; pixel_x = 25},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"SI" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"SK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/monitoring) +"SL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"SM" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"SN" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"SO" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"SP" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"SQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"SR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ST" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"SU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"SV" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Bridge"; sortType = "Bridge"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"SW" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"SX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"SY" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"SZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ta" = (/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Tc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Td" = (/obj/structure/sign/directions/evac{dir = 10; pixel_x = 32},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Te" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Port"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Tf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Tg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/cable/blue{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Th" = (/obj/machinery/computer/station_alert,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ti" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Tj" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Tk" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Tl" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Tm" = (/obj/structure/table/rack,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Tn" = (/obj/machinery/chem_master,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"To" = (/turf/simulated/wall/bay/orange,/area/engineering/workshop) +"Tp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) +"Tq" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Waste to Filter"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Tr" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ts" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/starboardescape) +"Tt" = (/obj/effect/shuttle_landmark/premade/sd/deck2/port,/turf/space,/area/space) +"Tu" = (/obj/machinery/atmospherics/binary/pump/fuel{dir = 8; name = "Tank Refuel"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Tv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Tw" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"Tx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"TA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"TB" = (/obj/structure/table/standard,/obj/item/weapon/storage/box{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box,/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"TC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"TD" = (/obj/structure/table/steel,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"TF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"TG" = (/obj/structure/table/reinforced,/obj/machinery/firealarm/angled,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"TI" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"TJ" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"TK" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"TL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"TM" = (/obj/effect/floor_decal/milspec/color/black/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"TN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"TO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TP" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/white/corner,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"TQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"TR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"TS" = (/obj/structure/flora/pottedplant/tall,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"TU" = (/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) +"TV" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"TW" = (/obj/structure/sign/department/atmos{pixel_x = -32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"TX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"TZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ua" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Ub" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Uc" = (/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"Ud" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ue" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"Uf" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ug" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Uh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ui" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Uj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Uk" = (/obj/machinery/pipedispenser,/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ul" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Um" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Un" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Ports to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Uo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"Up" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Uq" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ur" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Us" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ut" = (/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) +"Uu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) +"Uv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ux" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Uy" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"Uz" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"UA" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"UB" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Engineering"; output_attempt = 0},/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"UC" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"UE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"UF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"UG" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"UH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"UJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"UK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"UL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"UM" = (/obj/effect/floor_decal/emblem/stellardelight,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UN" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/storage/art) +"UO" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"UQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"US" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"UU" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"UV" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/body_designer{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"UX" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"UZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vb" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck2/triage) +"Vc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Vd" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"Ve" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Vf" = (/turf/simulated/floor/airless,/area/engineering/engine_room) +"Vg" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Vh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Bar Backroom"; req_access = list(25); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) +"Vk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Vl" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Trash"; sortType = "Trash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vm" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) +"Vo" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/workshop) +"Vp" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Vr" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Vt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Vu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3; pixel_y = 13},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -1; pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Vw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Vx" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Vy" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Vz" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/landmark/start/botanist,/turf/simulated/floor/grass,/area/hydroponics) +"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VB" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"VC" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"VD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"VE" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"VF" = (/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; name = "Briefing Room"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) +"VG" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"VH" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"VI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"VJ" = (/turf/simulated/floor/airless,/area/engineering/engine_eva) +"VK" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"VL" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/tool/wrench,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"VN" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) +"VO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"VP" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"VS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 10},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 10},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"VT" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"VU" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"VV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"VY" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"VZ" = (/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Wa" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Wb" = (/obj/structure/lattice,/turf/space,/area/space) +"Wc" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/computer/stockexchange{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"We" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Wf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Wg" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Wh" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Wi" = (/obj/machinery/computer/crew,/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Wj" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Wk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Wl" = (/obj/machinery/vending/assist,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Wm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Wn" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Wo" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"Wq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Wr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Ws" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Wu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Wv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Wx" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Wy" = (/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/reception) +"WA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Atmospherics"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"WB" = (/obj/structure/table/glass,/mob/living/simple_mob/animal/passive/cat/jones,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"WC" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"WE" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"WF" = (/obj/structure/sign/directions/medical{dir = 4; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = 29},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 47},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = -32; pixel_y = 23},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WG" = (/obj/structure/railing/grey,/turf/simulated/open,/area/quartermaster/storage) +"WH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"WI" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"WJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"WK" = (/obj/structure/closet/emcloset,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WL" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"WM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"WN" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"WO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"WP" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/portescape) +"WQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"WR" = (/obj/structure/table/wooden_reinforced,/obj/random/paicard,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"WS" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"WT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"WU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#e6ab22"; fill_color = "#877242"; name = "Fuel Storage"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/fuelstorage) +"WV" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"WX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/captain,/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"WY" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/camera/network/medbay{dir = 8},/obj/machinery/injector_maker{pixel_x = 29},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"WZ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Xa" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/chemistry) +"Xb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Xc" = (/obj/machinery/shipsensors{dir = 1},/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) +"Xd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Xe" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xf" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Xg" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Xh" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Xi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xj" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"Xk" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"Xl" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Xo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Xp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Xq" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Xs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Xt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Xu" = (/obj/machinery/atmospherics/unary/freezer{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Xx" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"Xy" = (/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Xz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"XB" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/circuit_imprinter{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/borgupload{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"XC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"XD" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"XE" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"XF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv{name = "human repair kit"; pixel_x = -9; pixel_y = 9},/obj/item/weapon/storage/firstaid/adv{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 9},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"XG" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"XH" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XJ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"XK" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"XL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) +"XM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "starboard_escape_berth"; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"XN" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"XO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"XP" = (/obj/machinery/status_display{pixel_y = 32},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"XQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"XR" = (/obj/machinery/suit_cycler/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"XS" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/computer/security/engineering,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"XU" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"XV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XW" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/orange,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"XX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/turf/simulated/floor/wood,/area/quartermaster/qm) +"XY" = (/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"XZ" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) +"Ya" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Air to Distro"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Yb" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Yc" = (/obj/structure/musician/piano{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Yd" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Ye" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Yf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/barbackroom) +"Yg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"Yh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Yi" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/barbackroom) +"Yj" = (/obj/structure/table/standard,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yk" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Yl" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Ym" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Yn" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "chemistry"; name = "Chemistry Shutters"; pixel_x = -24; pixel_y = -30; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Yo" = (/obj/machinery/atmospherics/unary/heater{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Yp" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"Yr" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Ys" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Yu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yv" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/n2o{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Yw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"Yx" = (/obj/structure/sign/deck2{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Yy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Yz" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"YA" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"YB" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardaft) +"YC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"YD" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"YE" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"YF" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"YG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"YH" = (/obj/machinery/beehive,/obj/machinery/camera/network/civilian{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"YI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"YJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"YK" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"YL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"YM" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"YN" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"YO" = (/obj/structure/table/gamblingtable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"YP" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"YQ" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"YR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"YS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"YT" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"YU" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"YV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"YW" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"YX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"YY" = (/turf/simulated/wall/bay/brown,/area/quartermaster/qm) +"YZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Za" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Zb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; fill_color = "#ffffff"; name = "Kitchen Cold Room"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"Zc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "port_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"Zd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Ze" = (/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Zf" = (/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/table/reinforced,/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/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Zh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Zi" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/bodybag/cryobag{pixel_x = 1; pixel_y = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = 1},/obj/item/weapon/storage/box/lights/mixed{pixel_y = 4},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -2},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zj" = (/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Zk" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Zl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "kitchenlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/kitchen) +"Zm" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zp" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Zq" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zs" = (/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Zt" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Zu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"Zv" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/rxglasses{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/rxglasses,/obj/item/device/glasses_kit,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zw" = (/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zx" = (/obj/item/modular_computer/console/preset/engineering{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Zy" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"ZA" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ZC" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"ZD" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ZE" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"ZF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ZG" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ZH" = (/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"ZI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ZJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ZK" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"ZL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ZM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"ZO" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/device/radio/intercom{pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"ZP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"ZQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ZR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/door/window/westright{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) +"ZS" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ZT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/button/remote/blast_door{id = "atmoswindowlockdown"; name = "Window Lockdown"; pixel_y = 56},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ZU" = (/obj/machinery/computer/ship/sensors,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"ZV" = (/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"ZW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"ZX" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Starboard"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ZY" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{id = "cargoload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ZZ" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) (1,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(2,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(3,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(4,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(5,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(6,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(7,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(8,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(9,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(10,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(11,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(12,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(13,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(14,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(15,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(16,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(17,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(18,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(19,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(20,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(21,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(22,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(23,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(24,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(25,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Tt -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(26,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(27,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(28,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(29,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(30,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(31,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(32,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(33,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(34,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(35,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(36,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -iU -SO -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -CQ -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(37,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Sk -Le -Le -Le -Le -Le -hI -Dt -Jm -Jm -Jm -Jm -Jm -sR -Jm -Jm -Jm -Jm -Jm -Jm -Us -Jm -nI -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(38,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -uu -oy -ov -ov -ov -Ff -xR -ov -ov -Ff -Ff -ov -ov -Wb -Au -QI -tZ -QI -tZ -QI -eW -QI -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(39,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -Le -Le -Le -wg -Le -Le -Le -Le -Le -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -ov -ub -VB -vV -NH -Zs -QO -kz -dH -zu -IF -vk -UI -ui -Pu -Pu -Pu -Pu -Pu -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(40,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iU -Le -Le -Le -Le -Le -Vc -Le -Fh -Le -kL -NL -NL -NL -NL -NL -NL -Iz -NL -NL -CP -MX -Le -Sj -Jh -Jh -Jh -Jh -Jh -NL -ZG -NL -ov -cq -ub -yN -gZ -aq -Zs -lF -op -Tr -pB -sF -Jd -Kp -Pu -Pu -Pu -Pu -Pu -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(41,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -ZG -yH -yH -yH -yH -yH -yH -NL -yH -yH -yH -yH -yH -ZG -NL -Wb -Wb -Wb -Wb -Wb -NL -NL -ZG -tc -ov -Pw -gs -If -VO -kP -kP -kP -Sg -YT -Ap -AD -ov -Qw -ma -Qw -ma -Qw -ma -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(42,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -ZG -iH -Uh -Uh -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -CP -Le -Le -Le -Le -Le -rW -GJ -GJ -vJ -mI -ov -wp -wp -wp -Fx -zi -BG -Kd -VI -DX -Fa -jE -uk -IU -IU -uk -uk -uk -NL -Pu -wu -Pu -Pu -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(43,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -se -dk -dk -dk -dk -dk -dk -dk -bw -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yy -uK -bH -mZ -Mx -Cq -Cq -Cq -Cq -NL -Cq -Cq -Cq -Cq -Cq -NL -Jh -Jh -Jh -Jh -mI -sx -DB -rs -DB -DB -Hm -Hm -Hm -wp -wp -aD -wp -MQ -vW -Ny -vw -nA -EF -In -hu -BZ -TF -uk -uk -Qw -ms -Qw -ma -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(44,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -jx -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -Le -SO -qG -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -Wb -Wb -Jh -Jh -mI -mI -uR -DB -DB -St -Wo -bR -xr -Gh -nW -RL -DY -Hm -Hm -Hm -Hm -Hm -mu -oE -eU -TH -qO -pO -Pm -uk -uk -ZG -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(45,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Ar -NL -jx -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -SO -Mx -Mx -Mx -NL -Mx -Mx -Mx -Mx -Mx -Wb -Wb -Wb -mI -mI -fQ -th -Wo -XW -Qg -eq -eq -iA -eq -eq -be -ZT -Hm -Em -Am -Et -Am -nR -Rw -od -UY -WJ -pO -HI -Av -dV -mh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(46,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -dk -dk -dk -dk -dk -dk -UT -cT -nP -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -SO -NL -NL -Cf -NL -NL -NL -NL -Jh -Jh -Wb -BT -BT -eq -eq -eq -eq -eq -eq -eq -nE -JS -NK -eq -sz -to -dT -Ag -Fl -sp -hK -Pq -oE -Kq -ge -IA -eG -Ei -js -uk -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(47,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -yK -NL -NL -Jh -Jh -Jh -Jh -NL -jx -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ZG -Wb -ie -zI -ie -Jh -Wb -Wb -Jh -Jh -Jh -BT -cx -ez -QH -eq -ql -ez -mB -eq -nE -JS -NK -eq -XS -kM -ZS -VA -km -Na -Ul -Fv -GD -Ck -Jt -ut -XG -PJ -Kk -rb -mR -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(48,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -jx -Wb -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -ZG -Jh -aa -eb -Fz -Fz -Fz -jL -Wb -Jh -FD -BT -cx -JS -QH -eq -ql -JS -mB -eq -ny -xu -oA -oo -Er -la -la -tz -eu -ig -tN -mx -oE -tD -UY -OK -pO -Qu -fj -Sz -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(49,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -KL -hO -SE -KL -aT -aT -aT -KL -aT -KL -SE -KL -aT -aT -aT -KL -aT -aT -KL -aT -aT -aT -KL -KL -KL -KL -KL -WP -Br -hg -WP -rR -rR -rR -rR -QY -QY -rR -rR -rR -rR -rR -ie -Tw -Fz -Pk -Px -sa -Fo -Te -CO -ux -ux -MC -BT -Yv -xu -oA -oo -xW -xu -oA -mA -kW -eI -WS -Un -Ab -Ab -Ek -QC -uN -gy -SS -Dg -oE -ZN -pY -DE -sT -WM -fq -Sz -QW -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(50,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -KL -KL -Md -Qx -Gv -Gv -Gv -Gv -Gv -Gv -Gv -KD -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Gv -Uv -VD -yz -KL -WP -Zc -fX -WP -rR -rR -RE -um -iz -sn -kg -iz -dC -cV -aV -qC -zv -Xm -eE -pk -Fe -PU -GO -GK -ZJ -My -PW -eq -Wv -xi -oQ -oQ -zM -Mf -oQ -oQ -wA -ah -ue -As -Tq -oU -xN -Zq -VV -et -Ca -Yo -UG -UG -Od -UG -UG -cv -cv -cv -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(51,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Wb -Jh -Jh -hO -Md -Ub -ch -ch -ch -ch -ch -ch -ch -KK -KK -KK -kR -kR -kR -KK -kR -kR -KK -kR -kR -kR -KK -KK -OQ -Ev -KL -WP -yp -bI -WP -rR -EG -Yh -Yh -Yh -AP -FI -Yh -Yh -uL -Yh -Ym -qY -fw -uc -JP -DH -CA -NB -Lf -dO -AU -dx -lh -gM -oe -AX -Dc -he -CR -AX -AX -he -AX -ao -AX -Qr -ag -XK -qN -CM -qw -iJ -Xu -UG -di -Iq -EQ -Zt -qM -Vm -mq -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(52,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -CZ -dk -dk -dk -dk -Vd -Zy -oD -ch -ch -Bk -Wa -vh -Wa -OM -hl -rO -sV -ZW -Wp -LO -rt -Lz -bb -kG -sd -Vz -oz -pd -uA -KK -Gq -Cu -hO -WP -VT -fX -WP -QY -Kb -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -Bw -bh -wB -Bw -Bw -Bw -Bw -bg -bF -Wx -hN -qg -ac -Wx -ez -ac -QK -ff -nG -CH -AW -LU -ja -Eq -VW -Cn -mD -vD -qL -UG -JM -GU -Su -LG -AV -Vm -Vm -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -"} -(53,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Jh -Jh -Xk -Xk -kX -Gi -wL -ch -DD -av -AC -DP -BF -hl -pN -yv -Uo -iZ -ES -ea -Qo -pX -iZ -ej -WN -ok -dP -AR -KK -si -pS -hO -WP -LM -LM -WP -QY -Kb -Bw -YQ -Gc -dX -fr -MD -ox -MD -zp -eL -fr -vU -WV -MD -fR -IC -TZ -cn -TZ -dR -WK -eq -RN -gY -qg -ac -vB -Nl -wI -Ai -RN -tF -IN -Ki -Ya -vF -An -uB -XI -im -vn -qF -UG -Bd -No -zY -yg -AV -cv -cv -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(54,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Jh -Jh -Xk -Xk -Fm -ki -Yp -uW -ch -gQ -cu -VH -LW -Ha -hl -af -dQ -Do -iZ -GM -lf -mz -sA -iZ -ii -WN -ok -LS -Jp -KK -JH -Fc -KL -wn -sW -sW -wn -rR -Rz -Bw -vX -Ec -kI -ti -ti -ti -ti -IB -ti -ti -ti -ti -qI -xe -MY -ti -ti -ti -Es -te -eq -Mu -xu -oA -TA -sU -xu -oA -NX -xl -HX -OH -zd -YE -ly -go -UD -Lk -oq -om -IH -WU -zV -Tu -Js -Sc -PB -NL -NL -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(55,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -se -nP -NL -Wb -Jh -Xk -Xk -rn -oO -CE -IW -VL -hl -hl -hl -hl -Zb -hl -hl -Mn -oj -if -vP -Uy -ap -zb -EA -wP -JI -fa -aJ -rP -rP -hf -Nw -Iw -KL -Bw -BW -BW -Bw -rR -Kb -Bw -mg -pL -CJ -hr -Cj -Cj -Cj -Cj -Cj -Cj -ZQ -Cj -tP -tU -jd -gz -Bf -NG -cO -Bx -eq -CT -JS -BY -eq -cE -JS -Ch -eq -mf -sb -wZ -eq -OT -ty -lt -OY -nZ -Dm -CB -qF -UG -Rl -Sd -ZE -MP -PB -cv -cv -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(56,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -bD -yK -NL -Wb -Wb -Wb -Xk -OA -dm -YC -lz -hZ -lr -iN -YK -gG -bq -YJ -uf -bt -Dq -Is -hh -hH -iY -Yw -iZ -iZ -iZ -Kc -WN -ok -dP -AR -KK -bP -kK -Hz -gm -PG -PG -Cb -Rp -Ws -Bw -Bw -dn -Ms -Mo -xp -xp -QB -QB -QB -xp -Hr -Hr -Hr -Hr -Hr -Hr -Hr -Ec -cO -Bx -eq -CT -kQ -BY -eq -cE -uO -Ch -eq -mf -oL -wZ -eq -Cz -Hs -kn -Zp -dt -Ov -al -qF -UG -ot -MG -Su -ay -wm -Vm -mq -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(57,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -Wb -Wb -Jh -Jh -Xk -nC -Ta -Bn -yf -IW -Yj -Bj -ml -BH -BH -jM -BH -YH -Ro -sE -bc -Ue -SY -zr -bS -aS -aG -RA -qp -dF -sh -mS -KK -mY -qy -UR -Aa -sg -sg -pr -Bw -FS -yP -Bw -Ko -wF -SX -xp -qn -hC -Dx -yo -XZ -Hr -Oj -Ht -Fq -Qy -wd -Hr -Gs -yd -pv -eq -eq -eq -eq -eq -eq -eq -eq -eq -eq -nr -yl -yl -WA -cl -pT -vx -FL -gB -HC -fG -UG -DF -RU -Wj -DR -AV -Vm -Vm -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(58,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Zl -QG -Bm -Ak -Pg -IW -rr -hl -MU -jo -jo -aj -jo -MU -MU -MU -jo -jo -MU -Sy -MU -gx -lI -MU -jo -jo -yX -jo -KK -Bw -Bw -UR -pw -Yk -Ce -pw -Bw -Bw -Bw -Bw -Ec -wF -SX -ip -so -Nu -EC -ws -va -Hr -hw -hV -RM -Om -zt -Hr -jt -gK -eP -yY -fn -HG -bk -Mc -Mc -yD -SQ -nX -SQ -ym -Qn -nw -xx -TW -Hm -BQ -FL -gB -yB -qF -UG -UG -Jo -eg -eg -tk -cv -cv -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(59,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -Di -Jh -Jh -Jh -Zl -gr -Ta -OO -Vv -IW -pI -Gy -Zo -ND -ND -au -ND -Sr -zO -Qe -Qe -Qe -nh -PZ -GY -Qe -Qe -Hk -Qe -Qe -Qe -Qe -nS -Vw -eL -zP -VP -VP -VP -MD -eL -pA -EI -MD -WF -wF -SX -ip -Gr -dh -Fr -ws -tv -Hr -zU -Ee -Bh -iD -ca -Hr -xm -dj -YS -YS -YS -ul -YS -YS -YS -YS -YS -dz -YS -EW -gf -DQ -QR -zR -Hm -wM -FL -eH -cM -XV -Tf -aZ -xU -jV -KQ -ey -Le -Le -gF -Ii -Sj -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(60,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -Di -Wb -Xk -Xk -cW -gj -pz -Bo -cw -Ta -Gy -Gj -jC -XC -XC -XC -XC -XC -XC -XC -ih -ZM -bN -MV -XO -XO -XO -XO -XO -hd -uT -uT -jw -RR -YV -VP -VP -VP -Ve -Ve -Ve -Ve -Ve -Ve -wF -SX -ip -mP -Tp -HB -fb -jI -Hr -dD -sK -Ge -yU -xj -Hr -nB -cj -FX -CD -CD -eD -CD -CD -FX -FX -gw -ci -FX -JC -zf -CD -pq -cz -Hm -vx -bo -Uk -xt -tI -ga -qx -MJ -Gl -FK -qq -Wb -Wb -NL -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(61,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -NL -Xk -iC -Ta -Ta -Ta -GB -zJ -ZL -Ng -gl -aB -TM -HR -of -cP -yh -QM -Xe -qo -ek -mN -kV -Zr -Zr -Zr -Zr -sO -Xi -ua -Rj -Vw -mi -bA -MA -tL -VP -bA -bA -bA -mb -bA -BP -wF -FP -xp -ke -lc -Dn -RW -jX -Hr -Dy -uv -EL -IZ -OC -Hr -Hr -Oi -bY -aU -kt -wY -Ip -ZV -bY -FX -FX -ci -Hl -do -do -do -Vj -do -Hm -Hm -Hm -Hm -Hm -Hm -Hm -Hm -pK -Hm -Hm -SK -LE -LE -LE -LE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(62,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -jx -NL -Xk -iF -Pn -Pn -Pn -Yu -nU -Pn -HJ -RD -KH -zz -nt -nt -nt -nt -nt -kE -QV -nt -nt -nt -DN -xP -Wq -Vr -Wk -Xi -RT -nK -nK -nK -Rd -xd -xd -ug -ug -ug -ug -xd -xd -oH -SD -fv -xp -xp -xH -xp -xp -xp -Hr -Hr -Hr -Hr -Bl -Hr -Hr -Hr -Gx -DA -bm -Ef -wY -dL -qT -AL -sI -FX -zl -Ao -do -ME -bl -hU -do -vC -UO -PC -PL -PC -UO -Pj -sG -pb -Jr -Ur -EH -yT -UZ -yC -LE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(63,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -HQ -HQ -YD -EV -EV -EV -ZC -FM -EV -Sx -po -td -jF -nt -Ji -YN -De -QZ -Ho -aE -QJ -WR -nt -Rq -Rq -Rq -aA -Jq -Xi -RT -nK -fV -nK -zH -xd -mH -Ad -rF -GV -GV -OD -xd -Mj -Da -vH -PE -Qh -bi -Nh -Vb -ZD -HM -FH -bu -Qp -Ih -KV -jK -Vb -QP -QP -QP -QP -QP -QP -QP -QP -QP -ei -Bt -eB -do -bG -Lm -YP -do -Az -NN -qu -re -pc -NN -NN -Yg -Fi -EK -eR -EK -qt -Wf -ID -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(64,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -dk -dM -ir -pn -QS -QS -QS -BJ -Fb -TC -DI -Sx -jr -KH -zz -nt -Mp -dY -cC -iO -mt -Cy -mt -Yc -nt -Rq -Rq -lQ -gA -Jq -Xi -kF -nK -nK -nK -Rd -xd -Pl -OL -cJ -cb -Al -Fk -Uu -Mj -Da -Ib -PE -pM -Xb -hp -Dk -ds -hx -hx -Ay -LZ -bJ -Ll -hx -EU -QP -QN -Zi -tM -ko -Ia -XY -pg -QP -cs -ci -eB -do -WG -Hu -ak -Me -ar -uI -Sn -wk -Cm -Qj -AZ -ht -ye -DZ -DZ -DZ -DZ -DZ -in -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(65,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -YU -Nc -Nc -dU -TC -YU -rV -VG -KH -HO -nt -GL -mt -mt -mt -mt -Cy -mt -SI -nt -nt -nt -nt -nt -PA -Xi -cY -nK -nK -So -lD -xd -xd -xd -cg -CK -cb -Fk -Uu -ll -xZ -xn -PE -dK -me -gH -kb -iW -uh -Ox -fO -Jy -nT -yk -Mb -ww -QP -Uq -Kf -Kf -XF -VS -XY -pg -QP -Rv -ci -eB -do -WG -gb -kx -Rx -Jj -PH -wE -es -Rx -Vi -pD -jQ -jQ -jQ -Eu -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(66,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -wG -MK -YU -Gn -CY -Gn -TC -YU -rV -lT -KH -Ct -nt -WC -mt -mt -mt -mt -jv -ct -Lq -ct -HE -xE -yG -nt -kr -Mi -RT -nK -xB -Zj -Sp -Io -kJ -xd -dZ -er -Gg -PP -xd -dp -Da -VZ -PE -PE -kZ -ya -Vb -Vb -KS -Vb -KT -wz -ZK -Ze -nj -Qi -Pv -lL -cR -ee -cR -yI -XY -pg -QP -Qf -MR -Ua -do -do -do -do -Ti -DM -JN -hS -hS -zj -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(67,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -YU -ic -ls -oF -TC -aY -bx -VG -KH -zz -nt -mt -Bp -oS -oS -oS -Bp -mt -mt -mt -DL -Lb -ix -nt -rH -QX -RT -jU -kc -ru -Xs -Cw -Cw -kD -Mt -it -SH -Vg -xd -AB -Da -VZ -Wz -Lv -RF -YI -Kt -EJ -WQ -Vb -wh -wz -RQ -Ze -Eo -ZB -QP -gu -Kf -Kf -Kf -Kf -XY -pg -QP -jN -ci -eB -OP -TS -XN -NN -ou -vy -mw -mw -jD -zj -PS -cU -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(68,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -HQ -Nk -YU -YU -YU -qe -YU -TC -YU -Sx -VG -KH -zz -nt -yc -Dl -UX -UX -UX -vS -mt -mt -mt -DL -Lb -sc -nt -yF -uE -RT -jU -Lx -Zx -UL -BX -Vy -xd -xd -xd -xd -VF -xd -rk -Da -VZ -xQ -lW -RF -mo -IQ -ef -xO -Vb -fP -ve -TL -QD -Ba -jp -QP -QP -tV -Id -yV -Kf -XY -pg -QP -tA -ci -eB -dq -zj -We -Lu -CS -vq -Rh -gO -vq -hS -dN -LX -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(69,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -TU -oJ -Gn -MK -YU -Nc -Ux -xD -Pc -fB -iX -UQ -kS -PK -JR -xA -DS -UX -Bp -Ob -ts -Ut -Ut -Ut -DL -tb -rg -nt -dG -wK -GS -jU -ew -Rf -Uj -ZU -JQ -nK -nK -bL -wi -VN -sS -Mj -Da -VZ -vN -RF -RF -Xt -eS -jG -iP -Vb -Kg -wz -fx -zC -fx -MH -LZ -Vb -Vb -Vb -Vb -hi -XY -pg -QP -TJ -ci -eB -dq -zj -GE -NN -BM -RO -pl -LF -oC -hS -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(70,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Xc -oJ -LP -zw -Jl -Gn -CI -iT -TC -ku -Sx -Je -DW -JL -nt -BS -Dl -YO -BK -Fw -vS -Ut -IE -Ut -Xx -NS -mL -nt -HY -GI -UM -jU -Hb -HL -nD -CG -wo -nK -nK -uQ -xy -Hg -os -em -PO -wl -Ci -zG -wX -Pr -qj -ld -rC -Vb -HA -wz -TR -Kl -vi -Ze -Ay -qZ -bn -bf -Vb -Zv -Kf -sZ -QP -Hj -ln -xC -xG -zj -GE -do -iB -vq -XJ -MM -nz -hS -dN -su -jQ -jQ -jQ -jQ -jQ -jQ -jQ -FW -bE -Jh -AF -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(71,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -TU -oJ -Gn -MK -oB -wq -wq -WI -LR -by -FJ -OW -pG -co -BD -ud -Ep -UX -Bp -UX -ts -Ut -Ut -Ut -DL -hD -wf -nt -pa -rj -EN -jU -Mw -IL -Uj -Nn -JQ -rN -rN -rN -rN -rN -rN -Mj -Wr -VZ -vN -RF -RF -wa -eS -WB -rC -Vb -Ol -FG -ZK -Ks -ZK -Ze -hx -Vb -Vb -Vb -Vb -vG -Kf -wC -QP -cK -Vk -BL -KR -wH -Sv -sk -gN -Um -wR -wR -fz -bB -OR -fY -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(72,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -HQ -bO -YU -lU -as -as -Rr -AY -YU -Sx -Ls -KH -zz -nt -yc -Dl -UX -UX -UX -vS -mt -mt -mt -DL -Lb -sc -nt -yF -uE -RT -jU -TP -Ld -Uj -fy -Zj -rN -ry -sB -cZ -lC -rN -zo -Wr -VZ -xQ -wS -RF -sv -Ud -gg -HH -Vb -wT -BU -RQ -Ze -FE -La -QP -QP -kk -xV -jW -Kf -Kf -AG -QP -Pt -ci -eB -rv -zj -DV -do -EM -uY -hS -hS -bW -zj -ZY -ET -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(73,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -MK -fi -VC -XU -sr -Xq -qS -Sx -EE -KH -zz -nt -hA -Bp -io -io -io -Bp -mt -mt -mt -DL -Lb -ix -nt -Yy -Hy -RT -jU -Wi -hc -GP -nv -JK -nu -RH -ky -AO -WX -rN -Hh -Wr -VZ -Wz -Qq -Km -Mq -xL -LC -yQ -Vb -wT -zD -ik -Ze -og -ZB -QP -sJ -nJ -kj -Pb -Vq -kO -yE -QP -jN -ci -eB -gq -HZ -Nj -NN -ae -or -WE -Ui -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(74,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -wG -MK -fi -dw -On -rd -AN -sL -rV -lT -KH -Ct -nt -Yl -mt -mt -mt -mt -hm -VM -uJ -VM -BC -lG -ZZ -nt -ys -IK -RT -nK -Dh -lo -lB -GW -Fp -rN -VE -oc -xv -Ow -rN -IG -AA -rc -Xa -Xa -Rc -tf -Xa -Xa -NQ -Vb -qm -Wu -GF -hR -fu -dc -zQ -fF -aX -Qc -Tm -hn -pf -hn -hn -Qf -qb -Ua -YY -Nf -Nf -YY -le -YY -YY -xk -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(75,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -oJ -Gn -zw -fi -dw -BV -py -fp -mn -rV -VG -KH -HO -nt -XP -mt -mt -mt -mt -lO -mt -mt -nt -nt -nt -nt -nt -PA -IK -cY -nK -nK -oZ -gC -rN -rN -rN -iM -uP -IV -IV -rN -uF -dB -aF -Xa -eJ -JV -Yn -Hc -Xa -zc -uj -Ll -dr -hx -hx -tT -Iu -QP -IT -LQ -nV -ft -hn -zL -PY -Ex -ZF -ci -eB -cX -ed -du -dJ -mE -bQ -YY -ce -BO -Ui -dN -pD -jQ -jQ -jQ -jQ -jQ -jQ -jQ -Qa -bE -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(76,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -dk -Di -HQ -LT -as -uX -dw -On -hY -fp -MZ -Sx -Xl -KH -zz -nt -SF -Fy -cC -iO -mt -lO -Ri -sH -nt -Rq -Rq -lY -BA -Jq -IK -kF -nK -nK -nK -yJ -rN -SN -DG -vK -uP -IV -sX -rN -mk -eZ -VZ -sq -vO -Ft -Dv -ol -Dz -rm -hj -kC -vI -NP -Cd -OE -EU -QP -lR -jq -Zw -Df -hn -DJ -Pz -hn -eO -Jn -zh -cX -Oa -tt -BI -PD -ed -cX -nF -BO -Ui -cy -tu -HN -HN -HN -HN -HN -HN -HN -nm -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(77,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -HQ -HQ -pW -sP -dw -On -py -fp -Dj -Sx -po -AI -jF -nt -fL -mU -DO -kp -GA -fK -ij -sH -nt -Rq -Rq -Rq -aA -Jq -IK -RT -nK -fV -nK -uC -rN -lg -EO -ED -fo -XR -gn -rN -we -dB -fI -sq -xJ -fh -MS -NF -qQ -iq -zX -vf -LV -GT -lP -WY -Vb -QP -QP -QP -QP -QP -hn -hn -hn -hn -Oz -KA -XQ -JZ -Hp -Sq -XX -Dr -Fn -JZ -PM -wN -rK -Vl -qk -Eh -SZ -Jv -jZ -pp -yR -HF -IO -bE -Wb -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(78,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -tj -dk -PR -Pe -bp -dw -On -py -fp -ZO -Sx -VY -KH -zz -nt -nt -nt -nt -nt -kE -lJ -nt -nt -nt -dv -Im -Gb -kl -Wk -IK -RT -nK -nK -nK -yJ -rN -rN -rN -rN -rN -rN -rN -rN -oH -Nr -fv -sq -jf -jc -dg -Sh -Xa -qf -nd -nd -nd -mK -nd -nd -nd -uz -Bg -br -fJ -yW -NW -iE -Aw -Yx -ON -Jn -LK -cX -xo -NO -cH -kY -bU -YY -Sf -TK -kq -vA -Vp -Wc -kB -He -aR -IR -xw -ZI -hW -LE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(79,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -NL -oJ -mJ -sP -dw -On -wV -aK -nQ -Sx -aC -KH -jP -Tl -pH -eX -Ga -ex -zs -lS -eV -Kn -US -ND -ND -ND -ND -sO -IK -jy -Bc -yr -oi -Gd -Pf -wW -Ru -nL -WL -WL -Iv -iu -ec -YX -vR -Xa -Tn -Xg -Ky -Ft -vO -qf -xY -oh -bs -OU -OX -nd -nd -jz -Ml -bv -en -yW -ab -Uc -Ml -ON -ON -Jn -Vu -ta -ta -ta -ta -ta -ta -ta -ta -LY -LY -uM -LY -oa -oa -oa -oa -BN -LE -LE -LE -LE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(80,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -nP -Wb -HQ -HQ -vg -Ax -LL -GX -uZ -Hi -Sx -iy -mV -XC -rQ -xT -xT -xT -xT -xT -kd -SU -xT -WH -xT -xT -xT -xg -jJ -lj -ji -ji -Xv -En -jk -Ru -Ru -Ru -CC -CC -CC -CC -CC -CC -YX -JG -sq -Or -Ft -Ky -RI -Ys -qf -hM -Xh -vL -Hw -fg -nd -Ik -TN -dI -eN -eN -Ej -eN -eN -dI -dI -eT -nN -up -dA -Lt -Xf -Lc -kA -Iy -CL -To -jm -yq -TO -FY -Gf -XH -UB -np -BN -Wb -Wb -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(81,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -se -nP -Jh -Jh -Jh -HQ -Sx -Sx -Sx -Vh -Sx -Sx -Sx -FA -Zr -sj -FU -xS -Zr -vj -pZ -DC -Zr -OV -Zr -Ye -Zr -Zr -Zm -OV -Zr -Zr -sj -Zr -yr -Mm -lv -Ru -Ru -Ru -Mk -Mk -lv -Mk -Mk -uq -YX -JG -sq -Ln -ck -Ky -ad -mW -qf -OG -ho -Lh -Gw -gJ -nd -qD -Cx -hJ -hJ -hJ -hy -hJ -hJ -hJ -fW -hJ -bX -jS -dA -RP -At -bd -UK -At -Wh -To -eF -tl -Il -no -Hq -tQ -vM -kN -SA -Le -Le -uG -Le -Sj -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(82,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Yf -rG -bV -LN -KG -Rn -FC -fl -fl -HW -fl -rX -fl -HW -fl -fl -eC -Ke -HP -hq -mT -mT -AM -mT -JB -oM -mT -mT -JY -Hd -an -Hd -rZ -zN -Ew -rZ -Hd -Hd -Hd -Hd -Xd -YX -JG -sq -BR -Ft -Ky -Ft -vY -qf -VK -Op -Bv -cD -hF -nd -Py -PF -ON -Td -Ou -Lr -Ou -Ou -Rk -kv -ZH -OS -gL -dA -LD -Zd -YG -YL -GH -vo -To -TG -Sm -pU -Yd -Gf -Gf -Gf -uo -BN -nq -nq -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(83,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -se -yK -Wb -Wb -Jh -Jh -Yf -UC -TY -Og -FB -UC -JT -fl -Ae -Rm -WZ -CF -wt -hT -hP -fl -ZA -zm -GG -gR -mT -qs -RX -tn -Ok -KE -NJ -YF -JY -zK -RS -Hd -rM -Bq -Bq -zk -Hd -pJ -EX -Hd -IY -YX -JG -Xa -KY -jc -Bb -UH -hL -qf -oK -hQ -Ss -Vt -Kw -nd -XL -wO -XL -LI -QU -ZR -QT -QU -LI -HK -HK -II -HK -To -tB -Eg -qH -bM -Fd -jY -hs -nb -fA -xa -Ug -lm -WW -QE -cF -Jk -VJ -Dw -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(84,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Wn -jx -NL -Wb -Wb -Wb -Yi -cB -UC -yM -Ly -NY -YM -fl -CV -Wm -tW -eY -tW -RK -ev -fl -vu -Xy -wv -ra -mT -mX -Ns -Ns -Zu -wJ -mT -cI -JY -GQ -SV -Zk -XM -HD -HD -Gt -Zk -SM -Hd -Hd -Ps -ba -dy -Xa -Xa -sq -sq -sq -Xa -qf -nd -nd -nd -nd -nd -nd -Xd -FQ -Ka -QU -Th -Ph -rq -GZ -LI -ai -MF -gT -Zf -To -xM -qz -Uz -vc -oV -Af -To -UU -TX -Qm -aO -Nq -Sm -SP -Nt -Lw -VJ -VJ -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(85,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -jx -NL -NL -Wb -Jh -Yi -Yi -IJ -Kx -Ez -gP -pR -fl -FR -Wm -HV -tJ -HV -RK -ev -fl -EZ -SL -wv -mF -mT -TB -Ns -Ns -pP -wJ -mT -cI -JY -Tg -Ot -Hd -Hd -ST -Po -Hd -Hd -SR -Hd -YW -rh -xX -Qd -Nx -CW -CW -CW -CW -CW -Yz -CW -cA -CW -zZ -CW -JF -rY -FQ -yx -QU -Nz -rq -iv -Ed -LI -fk -SW -AE -QQ -rw -jY -eQ -uU -fT -yw -iI -To -xq -oX -aW -Xz -Nq -Sm -SP -lk -Lw -nq -nq -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(86,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -lZ -dk -dk -Di -Jh -Jh -Yi -Yi -Yi -Yi -cQ -Yi -aN -xI -Wm -HV -eY -HV -RK -mG -fl -Wl -Xy -wv -NE -mT -Ma -Ns -Ns -Zu -wJ -mT -cI -JY -at -Yb -iQ -fe -KJ -KJ -fe -YB -un -Hd -KU -Xd -UA -wb -JW -Nd -Nd -mm -cS -cS -cS -cS -cS -TI -Co -Co -Co -Co -Gp -dE -QU -ns -rq -NZ -Ku -Re -OI -da -iw -dW -To -To -Vo -Vo -Vo -Vo -Vo -Vo -qr -nH -BB -tE -qP -Sm -mv -qW -Kr -NL -NL -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(87,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -jx -NL -Jh -Jh -iQ -iQ -YZ -de -oG -aN -VU -yn -eM -rz -Rm -pV -ev -fl -OJ -Xy -wv -oT -mT -mQ -UN -UN -wy -wJ -mT -cI -JY -Ne -Ot -Bu -Ts -Ah -rD -Ts -XT -SR -Hd -us -aL -zS -Wy -xh -XE -Mk -fs -Tk -yu -IX -Mk -Gk -LH -Mk -pm -Mk -XE -lv -Aj -LI -Gz -Tc -uD -YR -LI -fm -Kv -dS -vb -Nm -eo -OF -Oq -rf -RG -lN -is -OF -vm -KB -gX -lK -JJ -PI -jA -Lw -nq -nq -CP -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(88,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -ur -dk -dk -dk -dk -TV -TV -gk -oG -aN -md -iV -Tj -Cv -Kj -rI -Du -fl -rE -xK -aw -Dd -mT -KC -Bi -XD -jj -uy -uy -Cg -JY -gv -UJ -Bu -Ts -GN -pQ -Ts -XT -SR -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -Hd -vp -Hd -Hd -Hd -Hd -Hd -Hd -mO -bZ -rq -iS -Qk -LI -Be -mM -nx -fU -Mv -OZ -tg -xb -Sb -xz -Mg -qJ -tg -cf -TX -KN -jg -Zh -FV -lX -yA -VJ -Dw -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(89,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Wb -Jh -Jh -Bu -Oo -Nb -aN -aN -aN -HW -HW -HW -sD -aN -aN -rx -Ey -sN -rx -JY -JY -AM -AM -JY -AM -AM -JY -JY -fd -Pi -iQ -Ts -TQ -bC -Ts -YB -Ir -Tv -Tv -Tv -ph -Tv -Tv -Tv -vQ -Tv -aI -qh -Ie -HS -am -Cc -Jw -aM -FT -pj -Np -Np -yi -KW -nf -kh -JD -LI -qd -na -oY -rp -Fs -Ww -ka -RJ -ng -Pd -Ry -cL -Qz -tm -az -nO -nO -kT -nO -nO -nq -VJ -VJ -Wb -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(90,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iQ -iQ -hb -ri -WO -WO -WO -WO -WO -WO -WO -FZ -WO -WO -ax -oG -oG -oG -oG -oG -oG -oG -oG -oG -yS -rl -ep -iQ -Ts -fc -pQ -Ts -YB -YB -PV -jB -pJ -Xp -Za -pJ -Jf -zW -qa -gd -mj -ha -Xr -tw -VX -gp -tp -PT -vt -jn -Wg -mO -mO -mO -oI -mO -mO -Mr -qr -ER -qr -qr -qr -qr -kf -Sb -uw -Sb -hX -OF -OF -lV -OF -il -Qt -on -SG -rT -rT -rT -Ds -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(91,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iQ -Bu -eA -iQ -iQ -Bu -Bu -Bu -iQ -iQ -eA -iQ -Bu -Bu -iQ -iQ -iQ -Bu -Bu -iQ -Bu -Bu -iQ -iQ -iQ -iQ -iQ -Ts -iL -YA -Ts -YB -YB -YB -YB -XT -XT -YB -YB -YB -YB -YB -xc -Fg -CU -El -Kz -PQ -LB -ZX -Nv -jT -jT -xc -tK -cm -pe -Yr -Hx -db -cc -HT -qV -Se -NM -qv -qr -vz -Qv -FF -rB -sw -OF -sm -bz -OF -Ql -zq -NC -NC -TD -Ja -rT -qi -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(92,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -jx -Wb -Jh -Jh -Jh -Jh -Jh -Wb -jx -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Wb -ZG -Jh -sM -Ea -CU -CU -CU -GR -Wb -Jh -NL -tK -zT -cm -Yr -AK -df -iG -HT -It -oP -QA -Xj -fZ -ZP -RV -zy -JE -Lp -OF -cN -Yq -OF -Ij -sl -Jg -Jg -AT -iK -rT -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(93,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -bD -yZ -NL -NL -Jh -Jh -Jh -Jh -NL -jx -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lM -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -hz -Wb -xc -NA -xc -Jh -Wb -Wb -Jh -Jh -Jh -tK -el -el -tX -Os -dd -dd -WT -gE -qr -qr -qr -qr -bj -yj -za -yj -fN -OF -OF -Sw -OF -qX -eK -li -tC -vd -UV -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(94,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -lZ -dk -dk -dk -dk -dk -dk -hk -gi -Di -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -NL -NL -Cf -NL -NL -NL -NL -Jh -Jh -Wb -tK -tK -gS -wD -eh -DT -gU -lu -nM -qr -Vf -Vf -Xo -Vf -Vf -EP -Vf -Vf -Xo -pu -UE -OF -ow -ow -ow -Mh -vd -lw -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(95,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Wn -NL -jx -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -kL -yH -yH -yH -NL -yH -yH -yH -yH -yH -Wb -Wb -Wb -tK -tK -Li -cd -dl -oR -gV -oR -qr -Vf -Vf -ib -UF -lx -sQ -iR -UF -Vx -Vf -Gu -OF -MW -Cr -ow -qA -vd -bK -Ra -ZG -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(96,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -jx -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ds -Le -kL -wr -Uh -Uh -Uh -NL -Ig -Ig -Ig -Ig -BE -Wb -Wb -Jh -Jh -tK -sy -cp -px -px -Jb -JX -qr -Rs -Vf -EP -Bs -Vf -Vf -Vf -Bs -EP -Vf -mC -OF -gh -kH -Mz -Jg -pC -ks -rT -ZG -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(97,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -lZ -dk -dk -dk -dk -dk -dk -dk -bw -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -yy -uK -Go -Kh -yH -Cp -Cp -Cp -Cp -NL -Cp -Cp -Cp -Cp -Cp -NL -Jh -Jh -Jh -Jh -KX -MB -px -KI -Jb -Jb -qr -Gu -Vf -gW -Vf -Vf -Vf -Vf -Vf -gW -Vf -Gu -OF -XB -Tx -ow -AS -FN -rT -rT -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(98,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -ZG -iH -Uh -Uh -Uh -Uh -Uh -NL -MN -MN -MN -MN -sC -Ds -Le -Le -Le -Le -kL -Cl -bT -bT -bT -bT -MB -sY -Vf -EP -Vf -Vf -KM -Vf -Vf -EP -Vf -Ix -ni -Ra -Ra -rT -rT -rT -rT -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(99,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -ZG -Mx -Mx -Mx -Mx -Mx -Mx -NL -Mx -Mx -Mx -Mx -Mx -ZG -NL -Wb -Wb -Wb -Wb -Wb -NL -NL -NL -tc -RY -Gu -Vf -Rb -Vf -Vf -Vf -Vf -Vf -Rb -Vf -Gu -ni -NL -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(100,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -iU -Le -Le -Le -Le -Le -Uf -Le -cG -Le -SO -NL -NL -NL -NL -NL -NL -NL -NL -NL -Ds -Up -Le -Sj -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -RY -Hf -Vf -Vf -Bs -Vf -Vf -Vf -Bs -Vf -Vf -mC -ni -NL -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Pp -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(101,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CP -Le -Le -Le -NU -Le -Le -Le -Le -Le -kL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -RY -KP -MT -cr -cr -cr -cr -cr -cr -cr -MT -lA -ni -Wb -NL -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(102,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -RY -ni -ni -Hv -aQ -aQ -mr -aQ -aQ -jO -ni -ni -ni -Wb -Wb -NL -NL -NL -NL -NL -ZG -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(103,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jx -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -lq -Le -Le -Le -Le -Le -Le -Le -Lg -Le -Le -SO -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(104,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -AF -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -AF -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(105,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(106,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(107,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(108,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(109,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(110,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(111,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(112,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(113,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(114,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(115,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(116,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(117,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ob -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(118,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(119,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(120,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Oh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(121,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(122,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(123,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(124,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(125,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(126,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(127,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(128,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(129,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(130,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(131,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(132,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(133,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(134,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(135,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(136,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(137,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(138,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(139,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(140,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLbDNLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbseWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLseyKjxjxlZJhJhJhNLbDJhJhJhJhJhJhJhJhJhJhJhbDNLJhJhJhsejxyKjxjxlZNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbJhDilZWbNLNLdkJhJhJhJhWbJhWbJhJhJhJhdkNLNLWbsenPJhWbNLNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbWbJhJhDijxjxjxdMJhJhJhWbTUXcTUWbJhJhJhDijxtjjxnPJhJhWbWbNLdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLCZnPNLWbWbJhJhJhWbNLNLHQiroJoJoJHQoJoJoJHQoJoJoJHQHQdkNLWbJhJhJhWbWbDijxurNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLJhJhWbJhJhJhXkXkXkHQpnGnwGGnNkGnLPGnbOGnwGGnLTHQPRoJHQJhJhJhWbJhJhNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkJhJhXkXkXkZlZlXkiCiFYDQSMKMKMKYUMKzwMKYUMKMKzwaspWPemJHQHQYfYfYiYiJhJhdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbdkJhXkXkOAnCQGgrcWTaPnEVQSYUYUYUYUYUJloBlUfififiuXsPbpsPvgSxrGUCcBYiYiJhdkWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkXkXkrndmTaBmTagjTaPnEVQSNcGnicYUNcGnwqasVCdwdwdwdwdwdwAxSxbVTYUCIJYiiQdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVdXkFmoOYCBnAkOOpzTaPnEVBJNcCYlsqeUxCIwqasXUOnBVOnOnOnOnLLSxLNOgyMKxYiiQTVJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLhOZykXkiCElzyfPgVvBoGBYuZCFbdUGnoFYUxDiTWIRrsrrdpyhYpypywVGXVhKGFBLyEzYiYZTVBuiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLMdoDGiYpIWhZIWIWIWcwzJnUFMTCTCTCTCTCPcTCLRAYXqANfpfpfpfpaKuZSxRnUCNYgPcQdegkOoiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbDJhhOMdUbchwLuWVLlrYjrrpITaZLPnEVDIYUYUaYYUfBkubyYUqSsLmnMZDjZOnQHiSxFCJTYMpRYioGoGNbhbBuJhbDJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhseyKjxSEQxchchchchhliNBjhlGyGyNgHJSxSxrVrVbxSxiXSxFJSxSxrVrVSxSxSxSxSxSxflflflflaNaNaNaNrieAjxyZlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLWbKLGvchBkDDgQhlYKmlMUZoGjglRDpojrVGlTVGVGUQJeOWLsEElTVGXlpoVYaCiyFAflAeCVFRxIVUmdaNWOiQWbNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLdkNLJhaTGvchWaavcuhlgGBHjoNDjCaBKHtdKHKHKHKHKHkSDWpGKHKHKHKHKHAIKHKHmVZrHWRmWmWmWmyniVaNWOiQJhNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchvhACVHhlbqBHjoNDXCTMzzjFzzHOCtzzzzPKJLcozzzzCtHOzzjFzzjPXCsjflWZtWHVHVeMTjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTtJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchWaDPLWZbYJjMajauXCHRntntntntntntntJRntBDntntntntntntntTlrQFUrXCFeYtJeYrzCvHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhobJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhKLGvchOMBFHahlufBHjoNDXCofntJiMpGLWCmtycxABSudycfEYlXPSFfLntpHxThBflwttWHVHVRmKjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhNLNLNLdkJhJhaTGvchhlhlhlhlbtYHMUSrXCcPntYNdYmtmtBpDlDSDlEpDlBpmtmtFymUnteXxTZrHWhTRKRKRKpVrIsDWOiQJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLArUTNLWbKLGvKKrOpNafMnDqRoMUzOXCyhntDecCmtmtoSUXUXYOUXUXiomtmtcCDOntGaxTvjflhPevevmGevDuaNWOiQWbNLhkWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLcTjxjxSEKDKKsVyvdQojIssEMUQeXCaHntQZiOmtmtoSUXBpBKBpUXiomtmtiOkpntaPxTpZflflflflflflflaNFZeAjxjxgiNLNLNLJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhsejxjxnPNLJhKLGvKKZWUoDoifhhbcjoQeXCXekEHomtmtmtoSUXObFwUXUXiomtmtmtGAkEzsxTDCeCZAvuEZWlOJrErxWOiQJhNLDijxjxlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRWpiZiZvPhHUejoQeihqoQVaECyCyjvBpvStsvStsvSBphmlOlOfKlJlSkdZrKezmXySLXyXyxKEyWOBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRLOESGMUyiYSYMUhEZMekntQJmtmtctmtmtUtUtUtmtmtVMmtRiijnteVSUOVHPGGwvwvwvwvawsNaxBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhaTGvkRrtealfapYwzrSyPZbNmNntWRYcSILqmtmtUtIEUtmtmtuJmtsHsHntKnxTZrhqgRramFNEoTDdrxoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhKLGvKKLzQomzzbiZbSMUGYMVkVntntntntctmtmtUtUtUtmtmtVMntntntntUSWHYemTmTmTmTmTmTmTJYoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRbbpXsAEAiZaSgxQeXOZrDNRqRqntHEDLDLDLXxDLDLDLBCntRqRqdvNDxTZrmTqsmXTBMamQfHJYoGiQJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRkGiZiZwPiZaGlIQeXOZrxPRqRqntxELbLbtbNShDLbLblGntRqRqImNDxTZrAMRXNsNsNsUNBiAMoGBuJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkJhJhJhJhJhKLGvKKsdejiiJIKcRAMUHkXOZrWqRqlQntyGixscrgmLwfscixZZntlYRqGbNDxTZmmTtnNsNsNsUNXDAMoGBuJhJhJhJhJhdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbwJhJhJhJhJhaTGvkRVzWNWNfaWNqpjoQeXOZrVraAgAntntntntntntntntntntntBAaAklNDxgOVJBOkZupPZuwyjjJYoGiQJhJhJhJhJhbwJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRozokokaJokdFjoQeXOsOWkJqJqPAkrrHyFdGHYpayFYyysPAJqJqWksOjJZroMKEwJwJwJwJuyAMoGBuJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRpddPLSrPdPshyXQehdXiXiXiXiXiMiQXuEwKGIrjuEHyIKIKIKIKIKIKljZrmTNJmTmTmTmTuyAMoGBuJhlMJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLGvKKuAARJprPARmSjoQeuTuaRTRTkFcYRTRTRTGSUMENRTRTRTcYkFRTRTjyjisjmTYFcIcIcIcICgJYoGiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLUvKKKKKKKKhfKKKKKKnSuTRjnKnKnKnKnKjUjUjUjUjUjUjUnKnKnKnKnKBcjiZrJYJYJYJYJYJYJYJYySiQJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLVDOQGqsiJHNwbPmYBwVwjwVwnKfVnKnKxBkcLxewHbMwTPWiDhnKnKfVnKyrXvyrHdzKGQTgatNegvfdrliQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLyzEvCupSFcIwkKqyBweLRRminKnKnKSoZjruZxRfHLILLdhclooZnKnKnKoiEnMmanRSSVOtYbOtUJPiepiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLKLhOhOKLKLHzURURzPYVbARdzHRdlDSpXsULUjnDUjUjGPlBgCyJuCyJGdjklvHdHdZkHdiQBuBuiQiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwgmAapwVPVPMAxdxdxdxdIoCwBXZUCGNnfynvGWrNrNrNrNPfRuRurZrMXMHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhBrZcypVTLMsWBWPGsgYkVPVPtLxdmHPlxdkJCwVyJQwoJQZjJKfMrNSNlgrNwWRuRuzNBqHDSTKJAhGNTQfciLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhgfXbIfXLMsWBWPGsgCeVPVPVPugAdOLxdxdkDxdnKnKrNrNnurNrNDGEOrNRuRuRuEwBqHDPoKJrDpQbCpQYAJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwCbprpwMDVebAugrFcJcgdZMtxdnKnKrNryRHVEfSvKEDrNnLCCMkrZzkGtHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhrRrRrRQYQYrRrRRpBwBweLVebAugGVcbCKeritxdbLuQrNsBkyocuPuPforNWLCCMkHdHdZkHdYBXTXTYBYBYBJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhrRrREGKbKbRzKbWsFSBwpAVebAugGVAlcbGgSHxdwixyrNcZAOxvIVIVXRrNWLCClvHdpJSMSRunSRSRIrYBYBJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRREYhBwBwBwBwBwyPBwEIVembxdODFkFkPPVgVFVNHgrNlCWXOwIVsXgnrNIvCCMkHdEXHdHdHdHdHdTvPVYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRumYhBwYQvXmgBwBwBwMDVebAxdxdUuUuxdxdxdsSosrNrNrNrNrNrNrNrNiuCCMkHdHdHdYWKUusHdTvjBYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYizYhBwGcEcpLdnKoEcWFVeBPoHMjMjlldpABrkMjemMjzoHhIGuFmkweoHecCCuqXdIYPsrhXdaLHdTvpJXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYsnAPBwdXkICJMswFwFwFwFwFSDDaDaxZDaDaDaDaPOWrWrWrAAdBeZdBNrYXYXYXYXYXbaxXUAzSHdphXpXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVcNLNLyyJhJhJhJhJhrRkgFIBwfrtihrMoSXSXSXSXFPfvvHIbxnVZVZVZVZwlVZVZVZrcaFVZfIfvvRJGJGJGJGdyQdwbWyHdTvZaYBJhJhJhJhJhyyNLNLUfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLuKJhJhJhJhJhrRizYhBwMDtiCjxpxpipipipxpxpPEPEPEPEWzxQvNCivNxQWzXaXasqsqsqXasqsqsqXaXaNxJWxhHdTvpJYBJhJhJhJhJhuKNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFhZGZGbHCPJhJhJhJhrRdCYhBwoxtiCjxpqnsoGrmPkexpQhpMdKPELvlWRFzGRFwSQqXaeJvOxJjfTnOrLnBRKYXaCWNdXEHdTvJfYBJhJhJhJhDsGoZGZGcGJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeyHiHmZLeJhJhJhJhrRcVuLBwMDtiCjQBhCNudhTplcxHbiXbmekZRFRFRFwXRFRFKmRcJVFtfhjcXgFtckFtjcsqCWNdMkHdvQzWYBJhJhJhJhLeKhiHMxLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLyHUhMxSOCPJhJhJhrRaVYhBwzpIBCjQBDxECFrHBDnxpNhhpgHyaYImoXtPrwasvMqtfYnDvMSdgKyKyKyKyBbsqCWmmfsHdTvqaYBJhJhJhDskLyHUhMxSOCPJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqqGSOCPJhWbieqCYmBweLtiCjQByowswsfbRWxpVbDkkbVbKtIQeSqjeSUdxLXaHcolNFShFtRIadFtUHsqCWcSTkHdaIgdxcWbJhDskLwrCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxSOZGZGTwzvqYBwfrtiCjxpXZvatvjIjXxpZDdsiWVbEJefjGldWBggLCXaXaDzqQXavOYsmWvYhLXaCWcSyuHdqhmjFgZGhzkLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxNLWbJhFzXmfwBwvUtiZQHrHrHrHrHrHrHrHMhxuhKSWQxOiPrCrCHHyQNQzcrmexqfqfqfqfqfqfqfYzcSIXHdIehaCUJhWbNLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhwgNLyHUhCqUhMxNLieaaPkeEucBwWVtiCjHrOjhwzUdDDyHrFHhxOxVbVbVbVbVbVbVbVbVbujhjzXndxYhMOGVKoKndCWcSMkHdHSXrElsMxcNLyHUhCpUhMxNLNUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLNLNLNLNLCfzIebPxpkJPBwMDqItPHrHthVEesKuvHrbuAyfOKTwhfPKgHAOlwTwTqmLlkCvfndohXhhoOphQndcAcSgzHdamtwKzEaNACfNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLieFzsaFeDHbhfRxetUHrFqRMBhGeELHrQpLZJywzwzvewzwzFGBUzDWudrvILVndbsvLLhBvSsndCWTILHvpCcVXPQCUxcNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeIzyHIgCqIgMxNLJhFzFoPUCAwBICMYjdHrQyOmiDyUIZBlIhbJnTZKRQTLfxTRZKRQikGFhxNPGTmKOUHwGwcDVtndzZCoMkHdJwgpLBCUJhNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbFzTeGONBBwTZtihvHrwdztcaxjOCHrKVLlykZeZeQDzCKlKsZeZehRhxCdlPndOXfggJhFKwndCWCofCHdaMtpZXCUWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbjLCOGKLfBwcntiBfHrHrHrHrHrHrHrjKhxMbnjEoBafxviZKFEogfutTOEWYndndndndndndndJFCoMkHdFTPTNvGRWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOCPyHBECqBEMxJhJhWbuxZJdOBwTZtiNGEcGsjtxmnBHrHrVbEUwwQihAjpMHZeZeLahAdcIuEUVbndndIkqDPyXLXdrYCoXEHdpjvtjTWbJhJhyHBECpsCMxDskLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhMXZGCPNLWbWbJhJhJhuxMyAUBwdREscOcOydgKdjcjOiGxQPQPQPPvQPQPLZAyhxQPQPzQQPQPQPuzjzTNCxPFwOFQFQGplvHdNpjnjTJhJhJhWbWbNLDsZGUpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLLeJhWbWbWbJhFDMCPWdxbgWKteBxBxpvePYSFXbYDAQPQNUqlLguQPVbqZVbQPsJfFITlRQPBgMldIhJONXLKayxdEAjHdNpWgxcNLJhWbWbWbJhLeNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjWbLeJhJhWbBTBTBTBTeqlhbFeqeqeqeqeqyYYSCDaUbmQPZiKfcRKftVVbbnVbkknJaXLQjqQPbrbveNhJTdLIQUQUQULImOyimOtKtKtKtKWbJhJhLeWbSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhJhmIBTcxcxYvWvgMWxRNMuCTCTeqfnYSCDktEfQPtMKfeeKfIdVbbfVbxVkjQcnVZwQPfJeneNhJOuQUThNznsGzbZKWmOcmzTeltKtKJhJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhmImIeqezJSxuxioehNgYxuJSkQeqHGuleDwYwYQPkoXFcRKfyVVbVbVbjWPbTmftDfQPyWyWEjhyLrZRPhrqrqTcrqnfmOpecmelgStKtKJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLemImIfQeqQHQHoAoQAXqgqgoABYBYeqbkYSCDIpdLQPIaVSyIKfKfhiZvvGKfVqhnhnhnhnNWabeNhJOuQTrqivNZuDiSkhoIYrYrtXwDLisyKXkLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbrWsxuRtheqeqeqoooQDcacacTAeqeqeqMcYSCDZVqTQPXYXYXYXYXYXYKfKfKfkOpfzLDJhniEUceNhJOuQUGZEdKuYRQkJDmOHxAKOsehcdcpMBClWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLGJDBDBWoeqqlqlxWzMheWxvBsUcEcEeqMcYSFXbYALQPpgpgpgpgpgpgsZwCAGyEhnPYPzhnAwMldIhJRkLILILIReLILILImOdbdfddDTdlpxpxbTNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLGJrsDBXWeqezJSxuMfCRezNlxuJSuOeqfDYSFXFXsIQPQPQPQPQPQPQPQPQPQPQPhnExhnhnYxONdIfWkvHKaifkOIfmBeqdMrcciGddgUoRpxKIbTNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDsZGZGvJDBStQgeqmBmBoAoQAXacwIoAChCheqSQYSgwFXFXeicsRvQfjNtATJHjcKPtjNQfZFeOOzONONeThJZHHKMFSWdaKvmMnaqrHTHTWTlugVJbJbbTNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLNLtcmIDBWoeqeqeqeqmAoQAXQKAiNXeqeqeqnXdzcicizlBtciciMRcicicilnVkciciqbciJnKAJnJnnNbXOSIIgTAEiwdSnxoYERqVItgEnMoRJXJbbTtcNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSkuuovovovovHmbReqnEnEnykWwAheffRNxlmfmfeqSQYSFXHlAoeBeBeBUaeBeBeBxCBLeBeBUaeBzhXQLKVuupjSgLHKZfQQdWvbfUrpqrSeoPqrqrqrqrqrMBRYRYRYRYJxJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeoyubcqPwwpHmxriAJSJSxueIahAXnGtFHXsboLnrymEWJCdodododododoOPdqdqxGKRrvgqYYcXcXJZcXtadAdAdAToTorwToNmMvFsqrNMQAqrVfVfRsGusYGuHfKPniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovVBubgswpHmGheqNKNKoAWSueaoCHINOHwZwZylQngfzfdoMEbGWGWGdoTSzjzjzjwHzjHZNfedOaHpxotaLtRPLDtBxMjYToeoOZWwqrqvXjqrVfVfVfVfVfVfVfMTniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovvVyNIfwpwpnWeqeqeqooUnAsAXAWKizdeqeqylnwDQCDdoblLmHugbdoXNWeGEGESvDVNjNfduttSqNOtaXfAtZdEgqzeQVoOFtgkaqrqrfZqrXoibEPgWEPRbVfcrHvLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovNHgZVOFxwpRLbeszXSErAbTqQrLUYaYEOTCzWAxxQRpqVjhUYPakkxdoNNLuNNdoskdoNNYYdJBIXXcHtaLcbdYGqHUzuUVoOqxbRJkfvzZPbjVfUFBsVfVfVfBscraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeFfZsaqkPziaDDYZTtokMlaAboUagjavFlytyHsclTWzRczdododoMeRxTiouCSBMiBgNEMaelemEPDDrkYtakAUKYLbMvcfTVogcSbngSbQvRVyjVflxVfVfVfVfVfcraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhIxRQOZskPBGwpHmHmdTZSlaEkxNXKEqAngoltknpTHmHmHmHmvCAzarJjDMvyvqROvqUmuYgtYYbQedFnbUtagDAtGHFdoVywVoRGxzPduwFFzyzaEPsQVfVfKMVfVfcrmrLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLDtovkzlFkPKdMQHmEmAgVAtzQCZqqNVWuBUDOYZpvxBQwMvxHmUONNuIPHJNmwRhplXJwRhSWEYYYYcXJZYYtaCLWhvojYAfiIVolNMgRySbrBJEyjVfiRVfVfVfVfVfcraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovdHopSgVIvWHmAmFlkmeuuNVVCMCnXILknZdtFLFLFLboHmPCquSnwEhSmwgOLFMMwRhSUixkcenFPMSftaToToTohsToToVoisqJcLhXswLpfNVfUFBsVfVfVfBscraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfzuTrYTDXNyHmEtspNaiggyetqwmDimoqDmOvgBgBeHUkHmPLrewkeshSjDvqoCnzfzbWBOBOBOBOwNTKLYjmeFTGnbUUxqqrOFtgQzOFOFOFOFXoVxEPgWEPRbVfcrjOLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfIFpBApFavwHmAmhKUltNSSCaiJvDvnomCBalHCyBcMxtHmPCpcCmRxzjzjhShShSbBzjUiUiUiUirKkqLYyqtlSmfATXoXnHgIcftmOFsmcNOFpuVfVfVfVfVfVfMTniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovvksFADjEnAmunRPqFvmxDgYoXuqLqFIHqFqFfGqFXVtIHmUONNQjVidNPSdNdNdNORZYdNdNdNcyVlvAuMTOIlpUxaQmaWBBKBTXazlVbzYqSwUEGumCGuIxGumClAniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhiUJmovUIJdovukEFoERwoEGDoEoEUGUGUGUGWUUGUGUGUGTfgaHmPjNNAZpDpDcULXpDsufYETpDpDpDtuqkVpLYFYnoYdUgaOXztEgXKNnOOFOFOFOFOFOFOFOFnininininilqAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOsRWbuiKpQwIUIneUodKqCktDZNUGdiJMBdzVRlotDFUGaZqxHmsGYghtjQjQjQjQjQjQjQjQjQjQjQHNEhWcoaGfHqGflmNqNqqPlKjgnOilQlIjqXowMWghXBRaNLNLWbWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmAuPuPumaIUhuTHUYgeJtUYpYOdIqGUNoTuSdMGRUJoxUMJpKpbFiyejQjQjQjQjQjQjQjQjQjQjQHNSZkBoaXHtQGfWWSmSmSmJJZhkTQtzqsleKowCrkHTxRaNLNLNLWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukBZqOWJIAutOKDEUGEQSuzYJsZESuWjegjVGlHmJrEKDZjQjQjQjQjQjQjQjQjQjQjQHNJvHeoaUBvMGfQESPSPmvPIFVnOonNCJgliowowMzowrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaukTFpOpOeGXGpOsTUGZtLGygScMPayDRegKQFKHmUreRDZEujQjQjQjQjQjQjQjQjQjQHNjZaRoanpkNuocFNtlkqWjAlXnOSGNCJgtCMhqAJgASrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukukPmHIEiPJQuWMcvqMAVAVPBPBwmAVtkeyqqSKEHEKDZjQjQjQjQjQjQjQjQjQjQjQHNppIRBNBNSABNJkLwLwKrLwyAnqrTTDATvdvdvdpCFNrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaNLukukAvjsKkfjfqcvVmVmcvNLcvVmVmcvLeWbLEyTqtDZjQjQjQjQjQjQjQjQjQjQjQHNyRxwLEWbLenqVJVJnqNLnqVJVJrTJaiKUVlwbKksrTrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwukdVukrbSzSzcvmqVmcvNLcvmqVmcvLeWbLEUZWfDZjQjQjQjQjQjQjQjQjQjQjQHNHFZILEWbLenqDwVJnqNLnqDwVJrTrTrTRaRaRarTrTNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhUseWwuwuwuwumsZGmhZGmRZGQWCPWbWbDsZGCPWbWbDsgFNLLEyCIDinQaQaQaQaQaFWQaQaQaQaQanmIOhWLENLuGCPWbWbDsZGCPWbWbDsqiZGZGZGZGZGZGZGZGZGZGZGLgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwNLJhJhJhJhJhSOZGZGkLJhSOZGZGkLIiCPLELEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbELELENLLeSOZGZGkLJhSOZGZGkLJhJhJhJhJhNLNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLnIPuPuPuPuPumaJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjSOZGZGZGZGZGZGZGZGCPJhNLNLWbWbJhWbWbNLNLNLSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLNLNLLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhCQkLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh "} diff --git a/maps/stellar_delight/stellar_delight3.dmm b/maps/stellar_delight/stellar_delight3.dmm index bbf1f5d06e0..fddeb0f20eb 100644 --- a/maps/stellar_delight/stellar_delight3.dmm +++ b/maps/stellar_delight/stellar_delight3.dmm @@ -1,34429 +1,1689 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"ab" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"ac" = ( -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"ad" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/tcommsat/chamber) -"ae" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"af" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"ag" = ( -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/aft) -"ah" = ( -/obj/structure/sign/directions/stairs_down{ - pixel_x = 32; - pixel_y = 18 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = 12 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = 32 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/aft) -"ai" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/portdock) -"aj" = ( -/obj/effect/landmark/free_ai_shell, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"ak" = ( -/obj/structure/sign/directions/stairs_down{ - pixel_x = -32; - pixel_y = 18 - }, -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = 12 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/cargo{ - pixel_x = -32 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/aft) -"al" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"am" = ( -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/forestarrooma) -"an" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"ao" = ( -/obj/machinery/computer/HolodeckControl{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"ap" = ( -/obj/machinery/vending/altevian, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"at" = ( -/obj/structure/table/darkglass, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"aw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"aA" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/transitgateway) -"aB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"aD" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"aG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"aH" = ( -/obj/machinery/account_database{ - dir = 8 - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"aK" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"aM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"aN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"aP" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"aQ" = ( -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"aS" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"aX" = ( -/obj/structure/sign/deck3{ - pixel_x = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ba" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"bb" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"bd" = ( -/obj/structure/closet, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"be" = ( -/obj/machinery/door/firedoor/glass/hidden/shuttle, -/obj/machinery/door/blast/shuttle/open{ - dir = 4; - id = "shuttleshutter" - }, -/obj/structure/window/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"bg" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#313866"; - id_tag = "hopdoor"; - name = "Head of Personnel"; - req_access = list(57); - stripe_color = "#a3d1d1" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/hop) -"bh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Command Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardfore) -"bj" = ( -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"bl" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "32-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/portcent) -"bm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"bn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"bp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"br" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "32-2" - }, -/obj/structure/disposalpipe/down, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/starboardcent) -"bs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"bx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"by" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardaft) -"bB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"bC" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"bE" = ( -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/commandhall) -"bI" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"bJ" = ( -/obj/structure/table/steel, -/obj/item/weapon/flame/candle, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"bK" = ( -/obj/machinery/camera/network/command, -/turf/simulated/floor/bluegrid, -/area/ai) -"bL" = ( -/obj/machinery/media/jukebox/hacked, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"bM" = ( -/obj/effect/floor_decal/emblem/nt1, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"bO" = ( -/obj/structure/table/darkglass, -/obj/item/weapon/clipboard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"bP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"bQ" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"bS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"bT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"bU" = ( -/turf/simulated/wall/bay{ - desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."; - stripe_color = "#2e2aa1" - }, -/area/stellardelight/deck3/commandhall) -"bV" = ( -/obj/machinery/alarm/angled, -/turf/simulated/open, -/area/crew_quarters/bar) -"bW" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/ipc/toaster, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"bY" = ( -/obj/structure/table/woodentable, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"bZ" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"ca" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/crew_quarters/bar) -"cb" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/heads/chief) -"cc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"ch" = ( -/obj/machinery/vending/wardrobe/mimedrobe, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"ci" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - dir = 4; - name = "Robotic Storage"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_cyborg_station) -"ck" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"cm" = ( -/obj/machinery/exonet_node{ - anchored = 1 - }, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"cn" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"cq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"cs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"ct" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - dir = 4; - name = "AI Storage"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_cyborg_station) -"cu" = ( -/obj/structure/sign/directions/evac{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"cw" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"cx" = ( -/obj/machinery/computer/timeclock/premade/north, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"cy" = ( -/obj/machinery/recharge_station, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"cz" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_cyborg_station) -"cA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"cH" = ( -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"cI" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"cK" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"cL" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"cO" = ( -/obj/machinery/holoplant, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"cP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"cS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"cW" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"cY" = ( -/obj/machinery/telecomms/broadcaster/preset_right/sd, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"cZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"db" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"df" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"dh" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"dj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"dk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "starmaint_airpump" - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"dn" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"do" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"dr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"du" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/forestarrooma) -"dw" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"dx" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/deck3/forestarroomb) -"dy" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"dB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"dD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"dE" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"dF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/emblem/nt1, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"dH" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"dL" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"dM" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"dN" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"dQ" = ( -/obj/machinery/door/firedoor/glass/hidden/shuttle, -/obj/machinery/door/blast/shuttle/open{ - id = "shuttleshutter" - }, -/obj/structure/window/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"dS" = ( -/obj/machinery/camera/network/command{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"dT" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"dU" = ( -/turf/simulated/wall/bay/blue, -/area/lawoffice) -"dV" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/holoplant, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"dY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"dZ" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"ea" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"eb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "starmaint_airpump" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"ed" = ( -/obj/structure/closet, -/obj/random/firstaid, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"eg" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"eh" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"ei" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck3/aft) -"ej" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"ek" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"el" = ( -/obj/machinery/pda_multicaster/prebuilt, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"em" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"en" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"eo" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"ep" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"et" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/portdock) -"eu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) -"ev" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#313866"; - id_tag = "rddoor"; - name = "Research Director"; - req_access = list(30); - stripe_color = "#5a19a8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/hor) -"ew" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"ex" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"ey" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"ez" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"eC" = ( -/obj/machinery/telecomms/receiver/preset_right/sd, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"eD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"eE" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/drinkbottle, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"eF" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/medical, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"eI" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/bar) -"eJ" = ( -/turf/simulated/wall/fancy_shuttle/nondense{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"eK" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"eL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"eN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"eP" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color/common{ - dir = 4; - name = "Holodeck" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/holodeck_control) -"eQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"eR" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"eS" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"eU" = ( -/obj/structure/table/woodentable, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"eV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"eX" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"eY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"fa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"fb" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"fd" = ( -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/weapon/reagent_containers/food/drinks/cup{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/structure/table/woodentable, -/obj/item/weapon/hand_labeler, -/obj/machinery/alarm/angled, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"ff" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardaft) -"fg" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"fh" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"fj" = ( -/obj/structure/table/woodentable, -/obj/item/toy/figure/clown, -/obj/item/weapon/pen/crayon/marker/rainbow, -/obj/item/weapon/pen/crayon/rainbow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"fk" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"fs" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/bar) -"fv" = ( -/obj/machinery/holoplant, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"fz" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/landmark{ - name = "JoinLateGateway" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"fD" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"fE" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"fG" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"fM" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/simulated/floor, -/area/ai_cyborg_station) -"fO" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"fP" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"fS" = ( -/turf/simulated/wall/bay/steel, -/area/crew_quarters/heads/hop) -"fT" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"fW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"gb" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/folder/red_hos, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"gc" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "portmaint_airpump" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"gg" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"gh" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"gi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"gj" = ( -/obj/structure/table/rack/shelf, -/obj/item/weapon/disk/nifsoft/compliance, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/snack, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"gk" = ( -/obj/structure/table/woodentable, -/obj/random/paicard, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"gl" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"gm" = ( -/obj/structure/lattice, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"gq" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"gs" = ( -/obj/machinery/requests_console/preset/rd{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"gw" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"gx" = ( -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/storage/briefcase/inflatable, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/closet/walllocker_double/south{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"gy" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/device/retail_scanner/engineering, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"gA" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"gB" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"gE" = ( -/obj/structure/table/darkglass, -/obj/item/weapon/stamp/denied{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/weapon/stamp/internalaffairs, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"gG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"gH" = ( -/turf/simulated/floor, -/area/ai_cyborg_station) -"gJ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"gL" = ( -/obj/item/weapon/bedsheet/hosdouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black{ - color = "#631915" - }, -/obj/effect/landmark/start/hos, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"gM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/aft) -"gN" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"gO" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"gQ" = ( -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - input_level = 200000; - output_level = 200000 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/cyan{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"gR" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"gS" = ( -/obj/structure/cable/cyan{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"gU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"gV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"gW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"gY" = ( -/obj/structure/closet/walllocker_double/south{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"hb" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"hc" = ( -/obj/machinery/requests_console/preset/hos{ - pixel_x = -30 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"hd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"he" = ( -/obj/machinery/button/remote/airlock{ - id = "readingroom1"; - name = "Room 1 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "readingroom1"; - name = "Window Lockdown"; - pixel_x = -10; - pixel_y = 24 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"hf" = ( -/obj/structure/sign/warning/docking_area{ - pixel_x = -32 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"hg" = ( -/obj/effect/fancy_shuttle/sd_shuttle{ - dir = 1; - fancy_shuttle_tag = "sdboat" - }, -/obj/effect/fancy_shuttle_floor_preview/sd_shuttle{ - dir = 1 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"hj" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"hk" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/warning/docking_area{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"hp" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 4; - pixel_y = 6 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"hr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"ht" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"hw" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"hy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"hz" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"hB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"hC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"hD" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/foreportrooma) -"hE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"hF" = ( -/obj/machinery/holoplant, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"hG" = ( -/obj/structure/sign/poster{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"hK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"hN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/portdock) -"hO" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Command Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"hP" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"hQ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/aftstarroom) -"hR" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"hT" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardfore) -"hU" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"hX" = ( -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"hY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"hZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/sign/vacuum{ - pixel_x = 32; - plane = -34 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"ib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"ie" = ( -/obj/structure/closet/walllocker_double/south{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"if" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"ii" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"ij" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"il" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"im" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"in" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/heads/hop) -"ip" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"ir" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"is" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "AI/Telecoms"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_upload) -"iv" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"iw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"iy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"iz" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/bed/chair/sofa/corp/right{ - dir = 4 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"iC" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"iE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Shield Generator"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/commandhall) -"iI" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"iJ" = ( -/obj/machinery/cryopod/robot, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"iK" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"iL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"iN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"iP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"iQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"iR" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"iS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"iV" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck3/commandhall) -"iW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"iY" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"iZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/starboarddock) -"ja" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"jc" = ( -/obj/machinery/computer/ship/sensors/adv, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"jd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/transitgateway) -"jg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/starboarddock) -"jh" = ( -/obj/structure/closet/secure_closet/hop2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm/angled{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"jl" = ( -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/structure/closet/walllocker_double/east, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"jm" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/woodentable, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cafe"; - layer = 3.1; - name = "Cafe Shutters" - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"jn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#858585"; - id_tag = "cedoor"; - name = "Chief Engineer"; - req_access = list(56); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/chief) -"jo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"jp" = ( -/obj/structure/closet, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"jy" = ( -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "clownmimeoffice" - }, -/turf/simulated/floor, -/area/stellardelight/deck3/clownmimeoffice) -"jC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"jD" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/hopdouble, -/obj/structure/curtain/black, -/obj/effect/landmark/start/hop, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"jE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"jK" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"jL" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"jM" = ( -/obj/item/modular_computer/console/preset/command, -/obj/structure/sign/poster{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"jO" = ( -/obj/machinery/station_map{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"jP" = ( -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"jT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"jV" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"jY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"ka" = ( -/obj/structure/table/darkglass, -/obj/item/weapon/storage/briefcase{ - pixel_x = -2; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"kb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"kc" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"ki" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"kj" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"kk" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"kl" = ( -/obj/machinery/keycard_auth{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"ko" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"kp" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"kr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ks" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"kt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck3/aft) -"ku" = ( -/obj/structure/barricade/cutout/mime, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"kw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"ky" = ( -/obj/structure/closet/walllocker_double/north, -/obj/item/device/megaphone, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/command_guide, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"kz" = ( -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 6; - pixel_x = 7; - pixel_y = 26 - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"kB" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"kF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"kN" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/obj/structure/closet/secure_closet/hop, -/obj/item/clothing/glasses/omnihud, -/obj/item/weapon/paper/dockingcodes/sd, -/obj/item/device/retail_scanner/command, -/obj/item/weapon/storage/box/PDAs, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"kO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"kP" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portfore) -"kQ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/foreportrooma) -"kT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"kU" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"kV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"kW" = ( -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"kX" = ( -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"kY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"kZ" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 29; - pixel_y = 2 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"la" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/shuttles, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"lc" = ( -/obj/structure/fuel_port{ - dir = 8; - pixel_x = -32 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/binary/pump/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"le" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/starboardaft) -"lh" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/foreportroomb) -"li" = ( -/obj/machinery/telecomms/hub/preset/sd, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"lk" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"lm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"lo" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lq" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"lt" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sign/poster{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"lu" = ( -/obj/machinery/camera/network/command, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"lv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"lw" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lx" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lA" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"lB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"lC" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"lD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/bartender, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"lE" = ( -/obj/machinery/telecomms/bus/preset_two/sd, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"lH" = ( -/obj/machinery/telecomms/server/presets/service/sd, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"lJ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"lL" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"lP" = ( -/obj/structure/table/woodentable, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"lQ" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"lT" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"lU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "readingroom1"; - name = "Room 1"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/readingroom) -"lV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"lY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"ma" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "portmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/portcent) -"mb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"md" = ( -/obj/machinery/button/remote/airlock{ - id = "readingroom3"; - name = "Room 3 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "readingroom3"; - name = "Window Lockdown"; - pixel_x = -10; - pixel_y = 24 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"me" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardcent) -"mf" = ( -/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock, -/turf/space, -/area/space) -"mg" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"mh" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/alarm{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"mi" = ( -/obj/machinery/shipsensors/fancy_shuttle, -/turf/simulated/wall/fancy_shuttle/nondense{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"mj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"mm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"mn" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"mo" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"mp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"mq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"mr" = ( -/obj/structure/table/bench/padded, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"ms" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"mv" = ( -/obj/effect/map_helper/airlock/atmos/pump_out_external, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "sdboat_docker_pump_out_external" - }, -/turf/simulated/wall/fancy_shuttle/low{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"mA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"mC" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"mD" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"mF" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"mI" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"mK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"mM" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"mO" = ( -/obj/structure/table/alien{ - name = "fancy table" - }, -/obj/machinery/computer/skills{ - dir = 4; - pixel_y = 6 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"mQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"mR" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"mS" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"mT" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"mX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"na" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"nd" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"ne" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"nf" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "starmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardcent) -"nh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"nj" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/cafe) -"nk" = ( -/obj/machinery/light, -/obj/structure/table/bench/padded, -/obj/effect/landmark/start/visitor, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"nm" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"np" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"nr" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"ns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"nt" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"nu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"nv" = ( -/obj/item/weapon/reagent_containers/glass/bucket/wood, -/obj/structure/closet/crate, -/obj/item/weapon/material/minihoe, -/obj/item/seeds/reishimycelium, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/ambrosiavulgarisseed, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"nw" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - dir = 8; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"nx" = ( -/turf/simulated/open, -/area/stellardelight/deck2/central) -"nz" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"nB" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 4; - frequency = 1380; - master_tag = "sd_escape_starboard"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"nC" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"nD" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"nF" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"nH" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/weapon/stamp/hos, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"nL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/item_bank{ - dir = 4; - pixel_x = -26 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"nM" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"nN" = ( -/obj/machinery/cryopod/robot, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"nO" = ( -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"nP" = ( -/turf/simulated/wall/bay/purple, -/area/crew_quarters/heads/hor) -"nS" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"nT" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"nV" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"nW" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck3/cafe) -"nX" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"nZ" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ob" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"od" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "starmaint_airpump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"og" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"ok" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"ol" = ( -/obj/structure/table/alien{ - name = "fancy table" - }, -/obj/item/weapon/stamp/rd, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"op" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"oq" = ( -/obj/effect/landmark/arrivals, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"os" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 1; - frequency = 1380; - master_tag = "sd_escape_center_right"; - pixel_x = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"ou" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - dir = 8; - frequency = 1380; - id_tag = "sd_escape_center_right"; - master_tag = "escape_dock"; - pixel_x = 24; - req_one_access = list(13); - tag_airpump = null; - tag_chamber_sensor = null; - tag_exterior_door = null; - tag_interior_door = null - }, -/obj/machinery/airlock_sensor{ - dir = 4; - frequency = 1380; - id_tag = null; - pixel_x = -25 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ov" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"ow" = ( -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"oy" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"oA" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"oC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"oD" = ( -/obj/item/modular_computer/console/preset/command, -/obj/structure/sign/poster{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"oE" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"oI" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/portcent) -"oM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"oN" = ( -/obj/machinery/teleport/hub{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"oO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"oP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/crew_quarters/bar) -"oR" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = 32 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - dir = 8; - name = "Common Channel"; - pixel_x = -21 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/requests_console/preset/ai{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/landmark/start/ai, -/turf/simulated/floor/bluegrid, -/area/ai) -"oS" = ( -/obj/structure/cryofeed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"oT" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"oU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"oV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/halls{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"oW" = ( -/turf/simulated/open, -/area/stellardelight/deck2/port) -"oX" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"oY" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "Telecoms Control Room"; - req_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/computer) -"oZ" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck3/readingroom) -"pb" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"pc" = ( -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"pd" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"pf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"pk" = ( -/obj/structure/table/steel, -/obj/random/drinkbottle, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"pl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"pm" = ( -/obj/structure/table/darkglass, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"po" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"pp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"pq" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"pt" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"px" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"pz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/aftstarroom) -"pA" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/cosmosdouble{ - icon_state = "dobulesheetcosmos" - }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"pB" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"pC" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/evac{ - pixel_x = 32 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"pE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"pG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/shuttles/right, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"pK" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"pL" = ( -/obj/structure/table/steel, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"pN" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"pO" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"pS" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"pT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"pV" = ( -/obj/machinery/keycard_auth{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"pW" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"pX" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#323d80"; - name = "maintenance access"; - req_one_access = list(16); - stripe_color = "#323d80" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_cyborg_station) -"pY" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"qb" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"qc" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"qd" = ( -/obj/effect/landmark{ - name = "JoinLateCyborg" - }, -/obj/effect/landmark/start/cyborg, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"qe" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1380; - master_tag = "sd_escape_port"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"qf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"qg" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/contraband, -/obj/random/snack, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"qi" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"qn" = ( -/obj/machinery/porta_turret/stationary, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"qp" = ( -/turf/simulated/open, -/area/crew_quarters/bar) -"qq" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/tcommsat/computer) -"qs" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"qv" = ( -/obj/structure/cable/cyan{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#323d80"; - id_tag = "AICore"; - id_tint = null; - locked = 1; - name = "AI Core"; - req_one_access = list(16); - stripe_color = "#323d80" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai) -"qx" = ( -/obj/structure/table/glass, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"qy" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"qz" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"qA" = ( -/obj/machinery/turretid/stun{ - check_synth = 1; - control_area = /area/ai; - name = "AI Chamber turret control"; - pixel_x = -30; - pixel_y = -24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 25 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/cyan{ - icon_state = "2-8" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"qC" = ( -/obj/structure/table/glass, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"qE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/starboarddock) -"qF" = ( -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"qK" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"qL" = ( -/obj/structure/sign/warning/docking_area{ - pixel_x = 32 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"qM" = ( -/obj/structure/table/steel, -/obj/random/firstaid, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"qN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"qO" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#323d80"; - name = "maintenance access"; - req_one_access = list(16); - stripe_color = "#323d80" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_cyborg_station) -"qP" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"qQ" = ( -/obj/machinery/porta_turret/stationary, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"qS" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"qU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"qW" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/forestarroomb) -"qX" = ( -/obj/random/vendorfood, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"qY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"qZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"rb" = ( -/obj/effect/floor_decal/emblem/nt3, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"rc" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/stellardelight/deck3/commandhall) -"rg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"rh" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"ri" = ( -/obj/structure/handrail, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"rj" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"rl" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = -30 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"rm" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/computer/cryopod{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"rn" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"rp" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "portmaint_airlock"; - name = "interior access button"; - pixel_x = 32; - req_access = null; - req_one_access = list(13) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1379; - id_tag = "portmaint_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/portcent) -"rq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"rr" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "sd_escape_starboard"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = null; - tag_chamber_sensor = null; - tag_exterior_door = null; - tag_interior_door = null - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = null; - pixel_y = -25 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"rs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"rw" = ( -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"rx" = ( -/turf/simulated/wall/bay/white, -/area/crew_quarters/heads/cmo) -"rA" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"rB" = ( -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#323d80"; - id_tag = "AICore"; - id_tint = null; - locked = 1; - name = "AI Core"; - req_one_access = list(16); - stripe_color = "#323d80" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai) -"rH" = ( -/obj/structure/lattice, -/obj/structure/cable/blue{ - icon_state = "32-8" - }, -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/starboardcent) -"rL" = ( -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"rN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"rS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"rW" = ( -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"rX" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"rZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"sa" = ( -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"sb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "AI Storage"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_cyborg_station) -"sc" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/ai) -"sd" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"sf" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"si" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 8 - }, -/obj/structure/sign/painting/library_secure{ - pixel_y = 30 - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"sj" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/closet, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"sl" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"sn" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"sr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"ss" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 4; - frequency = 1380; - master_tag = "sd_port_landing"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"st" = ( -/obj/structure/bed/chair/sofa/corp/right{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/simple_mob/animal/passive/fox/syndicate/aipet, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"su" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"sx" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"sz" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Shield Generator"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#e6ab22" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/central) -"sA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"sC" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"sE" = ( -/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding, -/turf/space, -/area/space) -"sI" = ( -/obj/structure/table/standard, -/obj/random/paicard, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"sJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"sK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"sM" = ( -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"sN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"sO" = ( -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"sP" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"sQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/reset, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"sR" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"sU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"sX" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"sZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/maintenance/stellardelight/deck3/portaft) -"tb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"tc" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"tg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"th" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_cyborg_station) -"tk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"tn" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"tp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"tq" = ( -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"tu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"ty" = ( -/obj/machinery/computer/teleporter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"tz" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"tC" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardcent) -"tF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/frame, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"tG" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"tH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/transitgateway) -"tJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"tK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"tL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"tO" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/taperecorder{ - pixel_x = 10 - }, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/item/device/radio/off, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"tQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/freeform, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"tR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 4; - frequency = 1380; - master_tag = "sd_escape_port"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"tT" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"tV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"tW" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock{ - start_pressure = 4559.63 - }, -/turf/simulated/floor, -/area/tcommsat/computer) -"tX" = ( -/obj/structure/bed/chair/sofa/corp/left{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"tZ" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"ub" = ( -/obj/item/modular_computer/console/preset/command, -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"uc" = ( -/obj/machinery/teleport/station{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"uf" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"ui" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 1 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - req_one_access = list(11,67) - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"uj" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/heads/hor) -"uk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"ul" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"un" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"uq" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/starboarddock) -"ur" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardaft) -"us" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"ut" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"uv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"uw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"uz" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"uB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/tcommsat/computer) -"uD" = ( -/obj/structure/closet/firecloset, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"uE" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"uH" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"uI" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"uJ" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"uM" = ( -/obj/machinery/alarm/angled, -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/clown{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/weapon/bikehorn{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/stamp/clown{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/clownmimeoffice) -"uQ" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/machinery/computer/shuttle_control/explore/sdboat{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"uT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_cyborg_station) -"uU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "readingroom3"; - name = "Room 3"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/readingroom) -"uV" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"uW" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 2 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"uX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"uY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"uZ" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"va" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"vb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_cyborg_station) -"ve" = ( -/obj/structure/closet/walllocker_double/east, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"vf" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Engineer's Office" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"vh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"vi" = ( -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"vo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"vq" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portaft) -"vr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"vt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"vv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/emblem/nt2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"vw" = ( -/obj/structure/sign/department/shield, -/turf/simulated/wall/bay/r_wall/blue, -/area/stellardelight/deck3/commandhall) -"vy" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"vA" = ( -/obj/machinery/power/apc/angled{ - dir = 1; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"vE" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/stellardelight/deck3/exterior; - base_turf = /turf/simulated/floor/reinforced/airless; - docking_controller = "sd_starboard_landing"; - landmark_tag = "starboard_shuttlepad"; - name = "Starboard Shuttlepad" - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"vF" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"vG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"vI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"vJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"vN" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 8; - network = "tcommsat" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"vO" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#323d80"; - name = "maintenance access"; - req_one_access = list(19,38); - stripe_color = "#323d80" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/commandhall) -"vP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"vQ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"vS" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"vT" = ( -/obj/machinery/holoplant, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"vX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"wa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"wc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/vermin, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"wd" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/oxygen, -/obj/item/weapon/aiModule/oneHuman, -/obj/item/weapon/aiModule/purge, -/obj/item/weapon/aiModule/antimov, -/obj/item/weapon/aiModule/teleporterOffline, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"we" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"wg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"wm" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "sd_starboard_landing"; - pixel_y = 29 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = null; - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"wo" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/asimov, -/obj/item/weapon/aiModule/freeformcore, -/obj/item/weapon/aiModule/corp, -/obj/item/weapon/aiModule/paladin, -/obj/item/weapon/aiModule/robocop, -/obj/structure/cable/blue, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"wq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"wr" = ( -/obj/machinery/computer/ship/engines/adv, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"wt" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "readingroom2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/readingroom) -"wv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"ww" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"wy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"wA" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"wG" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"wK" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"wM" = ( -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"wN" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"wP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"wQ" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"wR" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"wS" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/bluegrid, -/area/ai) -"wV" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"wW" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/transitgateway) -"wY" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"wZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"xb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"xd" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"xe" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"xf" = ( -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"xg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/crew_quarters/heads/hop) -"xh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) -"xi" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"xj" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/consuming_eradicator, -/obj/item/weapon/aiModule/guard_dog, -/obj/item/weapon/aiModule/pleasurebot, -/obj/item/weapon/aiModule/protective_shell, -/obj/item/weapon/aiModule/scientific_pursuer, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"xm" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"xo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/clownmimeoffice) -"xp" = ( -/turf/simulated/floor/wood, -/area/stellardelight/deck3/clownmimeoffice) -"xu" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "starmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "starmaint_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_access = null; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardcent) -"xv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"xw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"xy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"xz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/freezer{ - dir = 1; - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"xA" = ( -/obj/structure/sign/warning/evac{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"xB" = ( -/obj/machinery/atmospherics/binary/passive_gate/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"xC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"xE" = ( -/obj/structure/closet, -/obj/random/firstaid, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"xH" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"xI" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"xL" = ( -/turf/simulated/wall/fancy_shuttle/low{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"xM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/iaa, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"xN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"xO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"xP" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"xR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"xS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/hos, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"xT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"xU" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"xW" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"xY" = ( -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"xZ" = ( -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"ya" = ( -/obj/machinery/button/remote/blast_door{ - id = "shuttleshutter"; - name = "Shutter Control"; - pixel_x = 17; - pixel_y = 27 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"yb" = ( -/obj/structure/sign/deck3{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"yc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"yd" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"ye" = ( -/obj/structure/dogbed, -/mob/living/simple_mob/animal/passive/dog/corgi/Lisa, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"yf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - dir = 8; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"yi" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Command Subgrid"; - name_tag = "Command Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"yj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/aft) -"ym" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/security, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"yo" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"yp" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/computer/cryopod/robot{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"yq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"ys" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"yt" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"yw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"yy" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"yB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"yC" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"yE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"yF" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"yH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_cyborg_station) -"yI" = ( -/obj/item/weapon/folder{ - pixel_x = -4 - }, -/obj/item/weapon/folder/blue{ - pixel_x = 5 - }, -/obj/item/weapon/folder/red{ - pixel_y = 3 - }, -/obj/item/weapon/folder/yellow, -/obj/structure/table/darkglass, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"yJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"yM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#323d80"; - fill_color = "#313866"; - name = "Head of Personnel"; - req_access = list(57); - stripe_color = "#a3d1d1" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/hop) -"yP" = ( -/obj/structure/sign/warning/falling{ - pixel_x = 32 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"yR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"yS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 4; - frequency = 1380; - master_tag = "sd_starboard_landing"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"yV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"yW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"yY" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"yZ" = ( -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/readingroom) -"za" = ( -/obj/machinery/cryopod/robot/door/gateway, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"zb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"zf" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"zg" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"zi" = ( -/obj/effect/floor_decal/emblem/nt2, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"zk" = ( -/obj/effect/landmark{ - name = "droppod_landing" - }, -/turf/space, -/area/space) -"zm" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Personnel's Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/angled, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"zn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/tcommsat/computer) -"zo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"zp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"zr" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"zt" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"zv" = ( -/obj/item/weapon/bedsheet/rddouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black{ - color = "#361447" - }, -/obj/effect/landmark/start/rd, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"zw" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - id_tag = "portmaint_airlock"; - pixel_x = 24; - req_access = null; - req_one_access = list(13); - tag_airpump = "portmaint_airpump"; - tag_chamber_sensor = "portmaint_sensor"; - tag_exterior_door = "portmaint_exterior"; - tag_interior_door = "portmaint_interior" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"zy" = ( -/obj/machinery/camera/network/halls{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"zz" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck3/commandhall) -"zA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"zB" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"zC" = ( -/obj/item/toy/figure/mime, -/obj/item/weapon/pen/crayon/marker/mime, -/obj/item/weapon/pen/crayon/mime, -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"zD" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/warning/secure_area{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"zE" = ( -/obj/structure/table/bench/padded, -/obj/effect/landmark/start/commandsecretary, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"zF" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"zH" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"zI" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/floor_decal/arrivals, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"zJ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/alarm/angled{ - pixel_x = -32; - pixel_y = 19 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"zL" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"zM" = ( -/obj/effect/landmark{ - name = "JoinLateCyborg" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/landmark/start/cyborg, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"zN" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/heads/hos) -"zQ" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"zS" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/power/apc{ - pixel_y = -28; - req_access = null; - req_one_access = list(11,67) - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"zV" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"zW" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/falling{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"zX" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/readingroom) -"zY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"Ae" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Af" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"Ai" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Aj" = ( -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/obj/item/device/tape/random, -/obj/item/device/tape/random, -/obj/item/weapon/storage/secure/briefcase, -/obj/structure/closet/walllocker_double/east, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Al" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Am" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - req_access = list(19,43,67) - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"An" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"Ap" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"Aq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"As" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"At" = ( -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"Av" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Aw" = ( -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"Ax" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"Ay" = ( -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Az" = ( -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/item/weapon/camera_assembly, -/obj/structure/closet/crate{ - name = "Camera Assembly Crate" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"AD" = ( -/obj/structure/handrail, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "sdboat_docker"; - pixel_x = 5; - pixel_y = 25 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - frequency = 1380; - id_tag = null; - pixel_x = 25; - pixel_y = 2 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"AE" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"AH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"AK" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"AP" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"AQ" = ( -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"AS" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"AT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"AU" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"AX" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"AY" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"AZ" = ( -/obj/machinery/porta_turret, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Ba" = ( -/obj/structure/closet/walllocker_double/east, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"Bb" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/structure/panic_button/small{ - pixel_x = -29; - pixel_y = 30 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Bd" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/bookcase, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"Be" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Bg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardaft) -"Bj" = ( -/obj/machinery/message_server, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Bk" = ( -/obj/machinery/computer/aiupload{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Bl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1380; - id_tag = "tcommsairlock"; - pixel_y = 24; - req_one_access = list(61) - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 25 - }, -/turf/simulated/floor, -/area/tcommsat/computer) -"Bm" = ( -/obj/structure/closet/emcloset, -/obj/random/drinkbottle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"Bn" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Bp" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/substation/command) -"Bq" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"Br" = ( -/obj/structure/table/alien{ - name = "fancy table" - }, -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"Bs" = ( -/obj/machinery/computer/borgupload{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Bt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"Bz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#313866"; - id_tag = "cmodoor"; - name = "Chief Medical Officer"; - req_access = list(40); - stripe_color = "#ffffff" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/cmo) -"BA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1380; - master_tag = "sd_port_landing"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/portdock) -"BB" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/aft) -"BC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"BF" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - door_color = "#e6ab22"; - name = "Command Substation"; - req_one_access = list(10); - stripe_color = "#e6ab22" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/substation/command) -"BG" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"BH" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"BJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"BK" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"BL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"BM" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = -30 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"BQ" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"BR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - dir = 4; - frequency = 1380; - id_tag = "sd_escape_center_left"; - master_tag = "escape_dock"; - pixel_x = -24; - req_one_access = list(13); - tag_airpump = null; - tag_chamber_sensor = null; - tag_exterior_door = null; - tag_interior_door = null - }, -/obj/machinery/airlock_sensor{ - dir = 8; - frequency = 1380; - id_tag = null; - pixel_x = 25 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"BV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"BW" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"BY" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"BZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"Cb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/vermin, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Cc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"Cd" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"Ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"Cf" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/portcent) -"Cn" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"Co" = ( -/obj/machinery/button/remote/airlock{ - id = "readingroom2"; - name = "Room 2 Lock"; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "readingroom2"; - name = "Window Lockdown"; - pixel_x = -10; - pixel_y = 24 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"Cp" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"Cu" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/random/vendorfood, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Cw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Cx" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/stellardelight/deck3/exterior; - base_turf = /turf/simulated/floor/reinforced/airless; - docking_controller = "escape_dock"; - landmark_tag = "escape_station"; - name = "Ship Arrivals" - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"Cy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/arrivals/right, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Cz" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"CA" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 2; - id = "barlockdown" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/crew_quarters/bar) -"CC" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/clownmimeoffice) -"CD" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = null - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - frequency = 1380; - id_tag = "sd_escape_port"; - master_tag = "escape_dock"; - pixel_y = 30; - req_one_access = list(13); - tag_airpump = null; - tag_chamber_sensor = null; - tag_exterior_door = null; - tag_interior_door = null - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = null; - pixel_y = -25 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"CG" = ( -/obj/machinery/blackbox_recorder, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"CH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"CJ" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"CK" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"CO" = ( -/obj/effect/overmap/visitable/ship/stellar_delight, -/turf/space, -/area/space) -"CP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/arrivals/right, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"CR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"CS" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"CT" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"CU" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"CV" = ( -/obj/structure/bed/chair, -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"CY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/effect/landmark{ - name = "JoinLateCryo" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Dd" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"De" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_cyborg_station) -"Df" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"Dh" = ( -/obj/machinery/computer/message_monitor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Di" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Dk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Dn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Dp" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Ds" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Du" = ( -/obj/machinery/vending/wardrobe/clowndrobe, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Dw" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/carpet/geo, -/area/ai) -"Dy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"DC" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/deck3/foreportroomb) -"DD" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "maintenance access" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/port) -"DE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"DH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"DI" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"DL" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"DM" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"DN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"DO" = ( -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/obj/structure/dogbed{ - name = "catslug bed" - }, -/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"DP" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"DQ" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"DT" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/portaft) -"DV" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/bay/blue, -/area/lawoffice) -"DW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "clownmimeoffice"; - name = "Window Lockdown"; - pixel_x = 23; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"DY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"DZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Ec" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck3/clownmimeoffice) -"Ed" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/aft) -"Ee" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/black{ - dir = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Ef" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Eg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Eh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Ei" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"El" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"En" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Es" = ( -/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding, -/turf/space, -/area/space) -"Et" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"Eu" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/stellardelight/deck2/port) -"Ev" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Ex" = ( -/obj/structure/bed/chair/bay/comfy/blue{ - dir = 1 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"EE" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/rig/ce/equipped, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots/adv, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"EF" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"EH" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"EI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "portmaint_airpump" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"EJ" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/crew_quarters/heads/cmo) -"EL" = ( -/obj/machinery/door/airlock/angled_bay/hatch{ - frequency = null; - id_tag = null; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61); - stripe_color = "#ffd863" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 1; - frequency = 1380; - master_tag = "tcommsairlock"; - pixel_x = -32; - req_one_access = list(61) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/computer) -"EN" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"EO" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"ER" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/stellardelight/deck3/aft) -"ET" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"EU" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"EV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"EW" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"EX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"EY" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 8; - pixel_y = 6 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"EZ" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Fb" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"Fc" = ( -/obj/structure/closet/walllocker_double/west, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/circuitboard/teleporter, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"Fe" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Ff" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Fg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#323d80"; - fill_color = "#854a44"; - id_tag = "hosdoor"; - name = "Head of Security"; - req_access = list(58); - stripe_color = "#d27428" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/heads/hos) -"Fh" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Fj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"Fm" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "portmaint_airpump" - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"Fr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Ft" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"Fv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"Fy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"FC" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"FD" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"FE" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"FG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"FH" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"FI" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"FL" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"FM" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"FO" = ( -/obj/structure/bed/psych{ - name = "couch" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"FR" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"FS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"FU" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"FW" = ( -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"FY" = ( -/obj/structure/closet, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Ga" = ( -/obj/structure/cable/cyan{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) -"Gc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Ge" = ( -/obj/structure/table/standard, -/obj/item/weapon/aiModule/nanotrasen, -/obj/machinery/camera/network/command, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"Gf" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/angled, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Gg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -3 - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Gh" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Gi" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/hazmat/equipped, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"Gj" = ( -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Gk" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/maintenance/stellardelight/deck3/portaft) -"Gl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/cmo, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"Gm" = ( -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/structure/cable/blue, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Command"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/substation/command) -"Go" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Gq" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Gv" = ( -/obj/structure/sign/deck3{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"GB" = ( -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/structure/table/rack, -/obj/random/donkpocketbox, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"GD" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"GE" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"GF" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"GH" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"GJ" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"GP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/bluegrid, -/area/ai) -"GQ" = ( -/turf/simulated/wall/bay/red, -/area/crew_quarters/heads/hos) -"GR" = ( -/obj/machinery/requests_console/preset/cmo{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"GS" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"GT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"GU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"GV" = ( -/obj/structure/closet/walllocker_double/south{ - desc = "A wall mounted storage cabinet marked with a cross and warning icon. This seems to contain an assortment of emergency supplies."; - name = "Emergency Cabinet" - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"GW" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/supermatter_engine, -/obj/item/device/radio{ - pixel_x = -4 - }, -/obj/item/device/megaphone, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"Ha" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/cedouble, -/obj/structure/curtain/black{ - color = "#945112" - }, -/obj/effect/landmark/start/ce, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"Hc" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - AI/Telecomms Subgrid"; - name_tag = "AI/Telecomms Subgrid" - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"Hd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"He" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"Hf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Hg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32; - plane = -34 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Hh" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/airlock_sensor{ - dir = 4; - id_tag = "starmaint_sensor"; - pixel_x = -24; - req_access = list(13) - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"Hi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Hk" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Hm" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"Ho" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Hq" = ( -/obj/structure/sign/warning/falling{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Hs" = ( -/turf/simulated/wall/bay/orange, -/area/crew_quarters/heads/chief) -"Ht" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Hu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/portdock) -"Hv" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Hw" = ( -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Hx" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"HA" = ( -/obj/structure/cable/cyan, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - dir = 4; - id = "AICore"; - name = "AI Maintenance Hatch"; - pixel_x = -25; - pixel_y = -5; - req_access = list(16) - }, -/obj/machinery/light, -/obj/machinery/holoplant, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"HB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/structure/table/bench/marble, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"HF" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"HH" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"HL" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"HN" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"HO" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/foreportrooma) -"HP" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/starboarddock) -"HQ" = ( -/obj/machinery/door/airlock/angled_bay/standard/color{ - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = null; - name = "Reading Rooms"; - stripe_color = "#89bd66" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/readingroom) -"HR" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"HS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"HT" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"HV" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"HW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"HX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"HY" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"HZ" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"Ia" = ( -/turf/simulated/wall/fancy_shuttle/nondense{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Ib" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Ie" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Ig" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Ii" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/holodeck_control) -"Ij" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"Il" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"Im" = ( -/obj/effect/landmark/tram, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"In" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Io" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Ir" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"It" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Iu" = ( -/obj/machinery/holoplant, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"Iz" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"IC" = ( -/obj/machinery/computer/station_alert/all, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"ID" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"IG" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"IH" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"II" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 30 - }, -/obj/machinery/camera/network/command, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"IK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"IN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"IO" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light/small, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"IP" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"IQ" = ( -/obj/machinery/porta_turret/ai_defense, -/turf/simulated/floor/bluegrid, -/area/ai) -"IR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"IS" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "Clown and Mime Office"; - req_one_access = list(138,136); - stripe_color = "#454545" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/stellardelight/deck3/clownmimeoffice) -"IU" = ( -/obj/machinery/hologram/holopad, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"IV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"IW" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"IY" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - id_tag = "portmaint_sensor"; - pixel_x = 24; - req_access = list(13) - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"IZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Ja" = ( -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1379; - id_tag = "starmaint_interior"; - locked = 1; - name = "Exterior Airlock" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "starmaint_airlock"; - name = "interior access button"; - pixel_x = 32; - req_access = null; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardcent) -"Jc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"Jd" = ( -/obj/structure/closet/lawcloset, -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"Jg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"Jh" = ( -/turf/space, -/area/space) -"Ji" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Jj" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"Jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/transitgateway) -"Jm" = ( -/obj/structure/barricade/cutout/clown, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/clownmimeoffice) -"Jn" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Jo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Js" = ( -/obj/structure/table/darkglass, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen/blade/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"Ju" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"Jv" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"Jx" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Jz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "AI Core"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai) -"JA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "sd_escape_center_left"; - pixel_x = -32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"JE" = ( -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/rag, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"JJ" = ( -/obj/machinery/computer/aifixer, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"JK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"JO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"JP" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "AI Upload"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_upload) -"JQ" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/turretid/stun{ - control_area = /area/ai_upload; - name = "AI Upload turret control"; - pixel_x = -32; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"JR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"JS" = ( -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Port;Center Left;Center Right;Starboard"; - child_tags_txt = "sd_escape_port;sd_escape_center_left;sd_escape_center_right;sd_escape_starboard"; - dir = 1; - frequency = 1380; - id_tag = "escape_dock"; - pixel_y = -18; - req_one_access = list(13) - }, -/obj/effect/landmark/arrivals, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"JU" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/rcd, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"JW" = ( -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"JY" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"JZ" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/table/bench/marble, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Kb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Ke" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Kf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Kg" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/bed/chair/sofa/corp/left{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/move_trader_landmark{ - dir = 4; - trader_type = /obj/trader/general - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Ki" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = 32 - }, -/obj/machinery/power/shield_generator/charged, -/obj/structure/cable, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"Kj" = ( -/obj/machinery/computer/shuttle_control/explore/sdboat{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - pixel_y = -28; - req_access = null; - req_one_access = list(11,67) - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Kk" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Ko" = ( -/obj/effect/landmark/tram, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"Kq" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"Kr" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Ks" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"Kt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Kv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Kw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"Kx" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Ky" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"Kz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/emcloset, -/obj/random/contraband, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/cargo, -/obj/random/mre, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"KD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"KF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"KG" = ( -/obj/structure/table/alien{ - name = "fancy table" - }, -/obj/item/weapon/cartridge/signal/science, -/obj/item/weapon/cartridge/signal/science, -/obj/item/clothing/glasses/welding/superior, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"KH" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"KI" = ( -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"KJ" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"KL" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"KM" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"KQ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"KS" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"KT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"KU" = ( -/obj/machinery/camera/network/command, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"KV" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"KW" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"KY" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"Lb" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"Ld" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Le" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/flora/pottedplant/minitree, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Lf" = ( -/obj/structure/sign/warning/falling{ - pixel_x = -32 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"Lh" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/telecom{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"Li" = ( -/obj/move_trader_landmark{ - dir = 8; - trader_type = /obj/trader/general - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Lm" = ( -/obj/random/paicard, -/obj/structure/table/glass, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/obj/random/coin/sometimes, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/readingroom) -"Ln" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"Lo" = ( -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"Lr" = ( -/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock, -/turf/space, -/area/space) -"Lv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Lw" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/table/bench/marble, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Lx" = ( -/obj/effect/landmark{ - name = "JoinLateCyborg" - }, -/obj/machinery/camera/network/command{ - dir = 10 - }, -/obj/effect/landmark/start/cyborg, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Ly" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Lz" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"LC" = ( -/obj/machinery/holoplant, -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/obj/machinery/camera/network/command{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"LD" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"LI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/shuttles, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"LJ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"LK" = ( -/obj/structure/table/bench/padded, -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"LO" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"LP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"LQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"LR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "starmaint_airpump" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"LS" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/holodeck_control) -"LT" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/portaft) -"LV" = ( -/obj/structure/table/steel, -/obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"LW" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"LY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Mc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/ladder, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Mg" = ( -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/taperecorder, -/obj/item/device/tape/random, -/obj/item/device/tape/random, -/obj/item/weapon/storage/secure/briefcase, -/obj/structure/closet/walllocker_double/west, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Mi" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Mk" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Ml" = ( -/obj/structure/table/darkglass, -/obj/item/weapon/stamp/denied{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/weapon/stamp/internalaffairs, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Mo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = null - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = null; - pixel_y = -25 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "sd_port_landing"; - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Mp" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "AI/Telecomms Substation Bypass" - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"Mr" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/clowndouble, -/obj/structure/curtain/black{ - color = "#361447" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Ms" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/stamp/hop, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/multi, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3; - pixel_y = 18 - }, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"Mu" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/table/steel, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"Mv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Mw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"Mx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"My" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"MA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/maintenance/stellardelight/deck3/portaft) -"MB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"MC" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/emblem/nt3, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ME" = ( -/obj/structure/sign/poster{ - dir = 1 - }, -/obj/random/vendordrink, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"MF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"MG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"MH" = ( -/obj/structure/table/steel, -/obj/random/maintenance/clean, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"MI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"MJ" = ( -/obj/machinery/pointdefense_control{ - id_tag = "sd_pd" - }, -/turf/simulated/floor/bluegrid, -/area/ai_server_room) -"MK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/ai) -"MN" = ( -/obj/structure/closet/secure_closet/hos2, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/item/clothing/accessory/permit/gun, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/retail_scanner/security, -/obj/item/device/ticket_printer, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"MO" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MP" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"MR" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"MU" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/arrivals, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"MV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"MW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"MX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"MZ" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"Nc" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Nd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Ne" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Nf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Nh" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"Ni" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Nj" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Nk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Nm" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Nq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Ns" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Nx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Ny" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Nz" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"NE" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"NF" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"NG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"NI" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"NJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9c9c9c"; - fill_color = "#5c5c5c"; - id_tag = "readingroom2"; - name = "Room 2"; - stripe_color = "#89bd66" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/readingroom) -"NK" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portcent) -"NL" = ( -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"NN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"NO" = ( -/obj/structure/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 1357; - name = "station intercom (Engineering)"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/clothing/glasses/welding/superior, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"NP" = ( -/obj/machinery/camera/network/command{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"NQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "portmaint_airlock"; - name = "exterior access button"; - pixel_y = 32; - req_access = null; - req_one_access = list(13) - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1379; - id_tag = "portmaint_exterior"; - locked = 1; - name = "Exterior Airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/portcent) -"NR" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"NS" = ( -/obj/machinery/atmospherics/unary/engine/fancy_shuttle{ - dir = 1 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"NT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"NU" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"NW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"NX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 8; - frequency = 1380; - master_tag = "sd_starboard_landing"; - pixel_y = 32; - req_one_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"NZ" = ( -/obj/item/weapon/bedsheet/mimedouble, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Oa" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/sign/poster{ - dir = 8 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"Ob" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"Oc" = ( -/obj/structure/sign/warning/docking_area{ - pixel_x = 32 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"Od" = ( -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"Oe" = ( -/obj/machinery/holoplant, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"Of" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Og" = ( -/obj/machinery/recharge_station, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Oj" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Ol" = ( -/turf/simulated/wall/durasteel, -/area/ai) -"Oo" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Op" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Oq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/glass/reinforced, -/area/stellardelight/deck3/aft) -"Or" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Ot" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/rd, -/turf/simulated/floor/carpet/purcarpet, -/area/crew_quarters/heads/hor) -"Ou" = ( -/obj/item/device/radio/beacon, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Ov" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Ow" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/angled_bay/secure{ - dir = 4; - name = "Telecoms Access"; - req_one_access = list(16,17,61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai_server_room) -"Ox" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Oy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/door/window{ - req_one_access = list(25) - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Oz" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/cafe) -"OA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_cyborg_station) -"OC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/angled_bay/hatch{ - frequency = null; - id_tag = null; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61); - stripe_color = "#ffd863" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "tcommsairlock"; - pixel_x = 32; - req_one_access = list(61) - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/computer) -"OD" = ( -/obj/structure/table/rack/steel, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - name = "Protosuit Storage"; - req_access = list(58) - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/weapon/tank/oxygen, -/obj/item/device/suit_cooling_unit, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security/prototype, -/obj/item/clothing/head/helmet/space/void/security/prototype, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"OE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"OF" = ( -/obj/effect/landmark{ - name = "morphspawn" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"OG" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"OI" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/starboard) -"OJ" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"OK" = ( -/obj/structure/closet/lawcloset, -/obj/structure/sign/poster{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"OM" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/rack/shelf, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/engineering, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"ON" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"OP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"OQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"OR" = ( -/obj/machinery/power/apc/angled{ - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"OS" = ( -/obj/machinery/computer/drone_control{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"OU" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/cryo) -"OV" = ( -/obj/structure/closet/walllocker_double/west, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"OX" = ( -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"OY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/vines, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"Pa" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"Pc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Pd" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - name = "maintenance access"; - stripe_color = "#454545" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/stellardelight/deck3/starboardcent) -"Pe" = ( -/obj/machinery/keycard_auth{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"Pj" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Pl" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass{ - name = "Starstuff Cockpit"; - req_one_access = list(67) - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Pm" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor, -/area/stellardelight/deck2/port) -"Po" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"Pp" = ( -/obj/effect/landmark/start/clown, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Pq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Ps" = ( -/obj/machinery/space_heater, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Px" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/computer/cryopod/gateway{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/transitgateway) -"PA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/camera/network/halls{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"PB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"PC" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"PD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"PE" = ( -/obj/structure/sign/department/ai{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"PJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "right"; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor/eastright{ - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "hop_office_desk"; - layer = 3.1; - name = "HoP's Shutters" - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"PL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"PR" = ( -/obj/structure/table/glass, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/weapon/stamp/cmo, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"PT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"PV" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"PW" = ( -/obj/effect/landmark{ - name = "JoinLateCyborg" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/start/cyborg, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"PX" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Qe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/effect/overmap/visitable/ship/landable/sd_boat, -/obj/effect/shuttle_landmark/shuttle_initializer/sdboat, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Qf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/ce, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"Qh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Qi" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"Qm" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Qn" = ( -/obj/structure/window/reinforced{ - dir = 8; - pixel_x = -4 - }, -/turf/simulated/open, -/area/stellardelight/deck3/aft) -"Qo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"Qp" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/crew_quarters/bar) -"Qs" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"Qu" = ( -/obj/structure/sink/kitchen{ - pixel_y = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/holodeck_control) -"Qv" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Qx" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"QB" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck3/commandhall) -"QC" = ( -/obj/machinery/camera/network/telecom, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"QE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"QF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"QG" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"QI" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"QJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "sd_escape_center_right"; - pixel_x = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"QK" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/stellardelight/deck3/readingroom) -"QL" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"QP" = ( -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"QS" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"QT" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - door_color = "#323d80"; - name = "Command Offices"; - req_access = null; - req_one_access = list(19,38); - stripe_color = "#f7d35c" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/commandhall) -"QV" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"QW" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"QZ" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"Rc" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"Rd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Rg" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Rh" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Ri" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/random/trash_pile, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"Rj" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/angled_bay/standard/glass{ - name = "maintenance access" - }, -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/starboard) -"Rl" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Command Offices"; - sortType = "Command Offices" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Rn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/crew_quarters/heads/hop) -"Ro" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass/common{ - dir = 4; - name = "Long-Range Teleporter Access" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/transitgateway) -"Rq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Ru" = ( -/obj/machinery/holoplant, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"Rv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Rw" = ( -/obj/machinery/door/firedoor/glass/hidden/shuttle, -/obj/structure/window/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Rx" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Rz" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"RE" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardfore) -"RG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"RH" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/transitgateway) -"RI" = ( -/turf/simulated/open, -/area/stellardelight/deck3/aft) -"RK" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"RL" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/foreportroomb) -"RM" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/mouse_hole_spawner{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"RN" = ( -/obj/structure/sign/directions/evac{ - pixel_x = 32 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"RQ" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"RT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/hatch{ - dir = 4; - door_color = "#e6ab22"; - name = "Shield Generator"; - req_access = null; - req_one_access = list(11,24); - stripe_color = "#e6ab22" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck2/central) -"RW" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/door/window/southright{ - dir = 1; - req_one_access = list(11,67) - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"RX" = ( -/turf/simulated/wall/bay/steel, -/area/stellardelight/deck2/central) -"RY" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"RZ" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/sign/warning/caution{ - desc = "This secure area is guarded by LETHAL LASER TURRETS. Authorized personnel ONLY."; - name = "\improper WARNING: LETHAL TURRETS AHEAD"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Sb" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Se" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Sf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Sh" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Sk" = ( -/obj/structure/table/standard, -/obj/item/weapon/phone{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"Sl" = ( -/obj/structure/sign/warning/evac{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Sm" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Sn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Sp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Sw" = ( -/obj/machinery/alarm/angled{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"Sz" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"SA" = ( -/obj/structure/table/darkglass, -/obj/machinery/computer/skills{ - dir = 8; - pixel_y = 6 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"SB" = ( -/obj/machinery/requests_console/preset/ce{ - pixel_x = -30 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"SC" = ( -/obj/structure/sign/warning/docking_area{ - pixel_y = 32 - }, -/turf/simulated/floor/reinforced/airless, -/area/stellardelight/deck3/exterior) -"SD" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"SE" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = 27 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"SF" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"SJ" = ( -/obj/machinery/door/firedoor/glass/hidden/shuttle, -/obj/structure/window/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"SK" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"SL" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/bluegrid, -/area/ai_cyborg_station) -"SN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"SP" = ( -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine{ - department = "CMO's Office" - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"SQ" = ( -/obj/machinery/disposal/wall{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"SR" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"ST" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"SU" = ( -/obj/structure/table/bench/padded, -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"SV" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"SZ" = ( -/obj/machinery/power/apc/angled{ - dir = 4 - }, -/obj/structure/cable/blue{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"Ta" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/angled_bay/hatch{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/crew_quarters/bar) -"Tc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Td" = ( -/obj/structure/table/rack/shelf, -/obj/random/contraband, -/obj/random/contraband, -/obj/random/maintenance, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Te" = ( -/obj/effect/landmark/map_data/stellar_delight, -/turf/space, -/area/space) -"Tf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double/glass{ - name = "glass airlock" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"Ti" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Tj" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - dir = 4; - id = "hop_office_desk"; - layer = 3.3; - name = "Desk Privacy Shutter"; - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"Tk" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/low_wall/bay/reinforced/blue, -/turf/simulated/floor, -/area/crew_quarters/heads/hop) -"Tl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/effect/landmark/start/hop, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"Tm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Tn" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"To" = ( -/obj/machinery/keycard_auth{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"Tp" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"Tr" = ( -/obj/machinery/drone_fabricator, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Ts" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/blue, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Tv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/color{ - dir = 4; - door_color = "#9fccc7"; - fill_color = "#333333"; - id_tag = null; - name = "Internal Affairs"; - req_access = list(38); - stripe_color = "#ffffff" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/lawoffice) -"Tx" = ( -/obj/machinery/light/small, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"Ty" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"TA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/aft) -"TB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"TE" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"TF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"TI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"TJ" = ( -/obj/structure/sign/department/telecoms{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"TK" = ( -/obj/structure/cable/cyan{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/bluegrid, -/area/ai) -"TL" = ( -/turf/simulated/floor/bluegrid, -/area/ai) -"TM" = ( -/obj/machinery/turretid/lethal{ - ailock = 1; - control_area = /area/tcommsat/chamber; - desc = "A firewall prevents AIs from interacting with this device."; - name = "Telecoms lethal turret control"; - pixel_y = 29; - req_access = list(61); - req_one_access = list() - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"TO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/landmark/vermin, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"TP" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"TS" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"TV" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/structure/cable/blue{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"TW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals_central5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"TY" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Ub" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Uc" = ( -/obj/structure/frame/computer, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Ud" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/book/manual/sd_guide, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"Ue" = ( -/obj/structure/table/rack, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/drinkbottle, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Uf" = ( -/obj/structure/cable/blue{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"Ug" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/starboardcent) -"Uj" = ( -/obj/structure/cable/blue, -/obj/structure/cable/blue{ - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - AI/Telecomms"; - output_attempt = 0 - }, -/turf/simulated/floor, -/area/ai_cyborg_station) -"Uk" = ( -/obj/machinery/computer/card, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"Uq" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Uw" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Uy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/station_map{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"UA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) -"UB" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"UD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"UF" = ( -/obj/machinery/light/small, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"UG" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/eris/dark/gray_platform, -/area/stellardelight/deck3/commandhall) -"UH" = ( -/obj/structure/sign/painting/library_secure{ - pixel_x = -30 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) -"UI" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"UK" = ( -/obj/machinery/camera/network/telecom{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"UL" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/double{ - name = "maintenance access"; - stripe_color = "#454545" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"UO" = ( -/obj/machinery/recharge_station, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) -"UQ" = ( -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"UR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"US" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"UT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/device/megaphone, -/obj/item/weapon/pen/multi, -/obj/item/device/radio/intercom/department/security{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"UU" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"UV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -27 - }, -/obj/effect/landmark/vines, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"UX" = ( -/obj/machinery/light/small, -/turf/simulated/open, -/area/crew_quarters/bar) -"Va" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portfore) -"Vb" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -3 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/stellardelight/deck3/cryo) -"Vc" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Ve" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"Vg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"Vh" = ( -/obj/machinery/door/firedoor/glass/hidden/shuttle, -/obj/machinery/door/blast/shuttle/open{ - id = "shuttleshutter" - }, -/obj/structure/window/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Vi" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/item/device/gps, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"Vk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/mime, -/turf/simulated/floor/carpet/bcarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Vm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"Vo" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/external/glass{ - dir = 4; - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_exterior"; - dir = 8; - frequency = 1380; - master_tag = "sd_escape_starboard"; - pixel_y = 32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/starboarddock) -"Vp" = ( -/obj/structure/lattice, -/obj/machinery/light/small, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"Vq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"Vr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/yellow_ce, -/obj/item/weapon/pen/multi, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"Vs" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"Vt" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_cyborg_station) -"Vw" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Vx" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Vz" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"VB" = ( -/obj/item/weapon/bedsheet/double, -/obj/structure/bed/double/padded, -/obj/structure/curtain/black{ - color = "#156363" - }, -/obj/effect/landmark/start/cmo, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"VC" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_upload) -"VD" = ( -/obj/structure/table/steel, -/obj/random/drinkbottle, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"VE" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom/department/medbay{ - dir = 1; - pixel_y = 24 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/weapon/pen/multi, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/folder/white_cmo, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"VG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"VK" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"VM" = ( -/obj/machinery/power/pointdefense{ - id_tag = "sd_pd" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/green, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"VN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"VQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/angled_bay/secure{ - name = "Nuclear Fission Device Storage"; - req_access = list(16) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_ridged, -/area/ai) -"VR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"VS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/aft) -"VW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"VZ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Wa" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"Wd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Wf" = ( -/obj/machinery/disposal/wall, -/obj/structure/disposalpipe/trunk, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Wg" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Wi" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/bluegrid, -/area/ai) -"Wj" = ( -/obj/machinery/computer/ship/helm/adv, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Wl" = ( -/obj/structure/sign/warning/falling{ - pixel_x = -32 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Wn" = ( -/obj/machinery/power/smes/buildable{ - charge = 500000 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Wp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"Wq" = ( -/obj/structure/table/darkglass, -/obj/machinery/computer/skills{ - dir = 4; - pixel_y = 6 - }, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"Wr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardaft) -"Ws" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/table/steel, -/obj/item/weapon/flame/candle, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Wt" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/plain, -/obj/structure/table/bench/marble, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Wu" = ( -/obj/structure/sign/warning/docking_area{ - pixel_x = -32 - }, -/turf/simulated/floor/airless, -/area/stellardelight/deck3/exterior) -"Ww" = ( -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "sdboat_docker_pump_out_internal" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/turf/simulated/floor/tiled, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Wx" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Wy" = ( -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm/angled{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/paper/sdshield, -/turf/simulated/floor, -/area/stellardelight/deck2/central) -"WA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"WB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardfore) -"WD" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"WF" = ( -/obj/structure/table/steel, -/obj/random/contraband, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"WG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"WH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"WI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"WK" = ( -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/fore{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"WL" = ( -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/drinksoft, -/obj/random/drinksoft, -/obj/random/mre, -/obj/random/mre, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"WM" = ( -/obj/effect/landmark{ - name = "maint_pred" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"WN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"WO" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/lawoffice) -"WQ" = ( -/obj/machinery/power/apc/angled{ - cell_type = /obj/item/weapon/cell/super; - dir = 4; - name = "night shift APC"; - nightshift_setting = 2 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"WU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"WW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/iaa, -/turf/simulated/floor/carpet/blue2, -/area/lawoffice) -"WX" = ( -/obj/machinery/camera/network/command{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"WZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Xa" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/structure/closet/secure_closet/CMO, -/obj/item/clothing/accessory/stethoscope, -/obj/item/device/flashlight/pen, -/obj/item/weapon/storage/belt/medical, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/defib_kit/compact/combat/loaded, -/obj/item/weapon/cmo_disk_holder, -/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo, -/obj/item/weapon/storage/mrebag/pill/sleevingcure, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/device/retail_scanner/medical, -/turf/simulated/floor/tiled/eris/white/cargo, -/area/crew_quarters/heads/cmo) -"Xb" = ( -/turf/simulated/floor/carpet/gaycarpet, -/area/stellardelight/deck3/clownmimeoffice) -"Xc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/landmark/vermin, -/obj/effect/mouse_hole_spawner{ - dir = 8 - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"Xd" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"Xe" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/fore) -"Xf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Xi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/stellardelight/deck3/cafe) -"Xl" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"Xm" = ( -/obj/structure/table/alien{ - name = "fancy table" - }, -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 1351; - name = "station intercom (Science)"; - pixel_y = 24 - }, -/obj/random/paicard{ - pixel_x = 4 - }, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/paper/monitorkey, -/obj/item/device/megaphone, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/weapon/folder/white_rd, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"Xo" = ( -/obj/structure/cable/blue{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_server_room) -"Xr" = ( -/obj/structure/sign/warning/secure_area{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Xv" = ( -/obj/structure/frame, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"XA" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"XB" = ( -/turf/simulated/wall/bay/steel, -/area/maintenance/stellardelight/substation/command) -"XC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"XD" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/evac{ - pixel_x = -32 - }, -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"XE" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/angled_bay/standard/glass/common{ - dir = 4; - name = "Cryogenic Storage" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/cryo) -"XF" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"XG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"XH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/crew_quarters/bar) -"XI" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportroomb) -"XJ" = ( -/obj/machinery/power/apc/angled{ - dir = 8 - }, -/obj/structure/cable/blue, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) -"XK" = ( -/turf/simulated/wall/bay/r_wall/blue, -/area/ai_server_room) -"XO" = ( -/obj/machinery/computer/security, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"XT" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"XV" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportroomb) -"XX" = ( -/obj/machinery/holoplant, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"XY" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/frame, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/foreportrooma) -"XZ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/door/airlock/angled_bay/external/glass{ - frequency = 1380; - id_tag = null; - locked = 1; - name = "Docking Port Airlock" - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_interior"; - dir = 1; - frequency = 1380; - master_tag = "sd_escape_center_left"; - pixel_x = -32; - req_one_access = list(13) - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/stellardelight/deck3/aft) -"Yb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "portmaint_airpump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"Yc" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Yd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"Yg" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portaft) -"Yj" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/forestarroomb) -"Yk" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"Yl" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Ym" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/portcent) -"Yo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"Yp" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "cafe"; - name = "Cafe Shutters"; - pixel_y = 28; - req_one_access = list(25) - }, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Ys" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 4; - id_tag = "starmaint_airlock"; - pixel_x = -24; - req_access = null; - req_one_access = list(13); - tag_airpump = "starmaint_airpump"; - tag_chamber_sensor = "starmaint_sensor"; - tag_exterior_door = "starmaint_exterior"; - tag_interior_door = "starmaint_interior" - }, -/turf/simulated/floor/airless, -/area/maintenance/stellardelight/deck3/starboardcent) -"Yu" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/closet/crate, -/obj/random/contraband, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/mre, -/obj/random/snack, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Yv" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"Yw" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Yx" = ( -/obj/structure/closet/emcloset, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/starboardcent) -"Yy" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"Yz" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/maintenance/stellardelight/deck3/portcent) -"YA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"YB" = ( -/obj/structure/cable/blue{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarroomb) -"YC" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/structure/closet/secure_closet/RD, -/obj/item/device/aicard, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/device/retail_scanner/science, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/hor) -"YD" = ( -/obj/structure/table/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"YE" = ( -/obj/structure/table/standard, -/obj/random/soap, -/obj/machinery/power/apc/angled{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) -"YH" = ( -/obj/item/modular_computer/console/preset/command, -/obj/structure/sign/poster{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) -"YJ" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"YK" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck3/aft) -"YL" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue_hop, -/obj/item/weapon/pen, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"YN" = ( -/turf/simulated/wall/bay/r_wall/steel, -/area/stellardelight/deck3/portdock) -"YO" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"YQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/carpet/tealcarpet, -/area/crew_quarters/heads/cmo) -"YR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"YS" = ( -/obj/structure/table/steel, -/obj/random/coin/sometimes, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/aftstarroom) -"YU" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/crew_quarters/bar) -"Zd" = ( -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "sdboat" - }, -/area/shuttle/sdboat/aft{ - base_turf = /turf/simulated/floor/reinforced/airless - }) -"Ze" = ( -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Zf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"Zi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/shuttles/right, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/portdock) -"Zj" = ( -/obj/structure/bed/chair, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"Zk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portfore) -"Zl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"Zm" = ( -/obj/structure/cable/blue{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = 29 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_cyborg_station) -"Zn" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/stellardelight/deck3/foreportrooma) -"Zp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portcent) -"Zt" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/stellardelight/deck2/central) -"Zu" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/table/bench/marble, -/turf/simulated/floor/lino, -/area/stellardelight/deck3/cafe) -"Zw" = ( -/obj/machinery/porta_turret/ai_defense, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/ai) -"ZB" = ( -/obj/machinery/alarm/angled{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/portaft) -"ZC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"ZE" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/aft) -"ZF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/carpet/oracarpet, -/area/crew_quarters/heads/chief) -"ZH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/stellardelight/deck3/starboarddock) -"ZK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/stellardelight/deck3/commandhall) -"ZL" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "readingroom3" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/readingroom) -"ZM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/open, -/area/stellardelight/deck2/starboard) -"ZN" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai) -"ZQ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/maintenance/stellardelight/deck3/forestarrooma) -"ZS" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/open, -/area/stellardelight/deck2/port) -"ZV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/window/bay/reinforced, -/obj/machinery/door/blast/angled/open{ - dir = 4; - id = "readingroom1" - }, -/obj/structure/low_wall/bay/reinforced/steel, -/turf/simulated/floor, -/area/stellardelight/deck3/readingroom) -"ZX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/ai_upload) -"ZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/stellardelight/deck2/fore) +"aa" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ab" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"ac" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"ad" = (/turf/simulated/wall/bay/r_wall/blue,/area/tcommsat/chamber) +"ae" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"af" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ag" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"ah" = (/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/cargo{pixel_x = 32},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"ai" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/portdock) +"aj" = (/obj/effect/landmark/free_ai_shell,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"ak" = (/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/cargo{pixel_x = -32},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"al" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"am" = (/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarrooma) +"an" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"ao" = (/obj/machinery/computer/HolodeckControl{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/holodeck_control) +"ap" = (/obj/machinery/vending/altevian,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"aq" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"ar" = (/obj/structure/closet/walllocker_double/command/ce{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"as" = (/obj/structure/closet/walllocker_double/command/cmo{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"at" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"au" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/hos{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"av" = (/obj/item/device/taperecorder{pixel_x = -3},/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/obj/structure/closet/walllocker_double/command/rd{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"aw" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ax" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/iaa{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ay" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/iaa{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"az" = (/obj/item/device/megaphone,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/command_guide,/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"aA" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/transitgateway) +"aB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"aC" = (/obj/structure/lattice,/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"aD" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"aE" = (/obj/structure/lattice,/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/open,/area/stellardelight/deck2/port) +"aF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/open,/area/stellardelight/deck2/port) +"aG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"aH" = (/obj/machinery/account_database{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"aK" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/stellardelight/deck2/central) +"aN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"aP" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/machinery/alarm{dir = 4; pixel_x = -28},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"aQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"aS" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"aX" = (/obj/structure/sign/deck3{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ba" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"bb" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"bd" = (/obj/structure/closet,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"be" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{dir = 4; id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"bg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "hopdoor"; name = "Head of Personnel"; req_access = list(57); stripe_color = "#a3d1d1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hop) +"bh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Command Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardfore) +"bj" = (/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bl" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/portcent) +"bm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"bn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"bp" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"br" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/structure/disposalpipe/down,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardcent) +"bs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"by" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardaft) +"bB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"bC" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"bE" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/commandhall) +"bI" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"bJ" = (/obj/structure/table/steel,/obj/item/weapon/flame/candle,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"bK" = (/obj/machinery/camera/network/command,/turf/simulated/floor/bluegrid,/area/ai) +"bL" = (/obj/machinery/media/jukebox/hacked,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bM" = (/obj/effect/floor_decal/emblem/nt1,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"bO" = (/obj/structure/table/darkglass,/obj/item/weapon/clipboard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bP" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"bQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"bS" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"bT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"bU" = (/turf/simulated/wall/bay{desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#2e2aa1"},/area/stellardelight/deck3/commandhall) +"bV" = (/obj/machinery/alarm/angled,/turf/simulated/open,/area/crew_quarters/bar) +"bW" = (/obj/structure/table/standard,/obj/item/toy/plushie/ipc/toaster,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"bY" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"bZ" = (/obj/machinery/ntnet_relay,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ca" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vines,/turf/simulated/open,/area/crew_quarters/bar) +"cb" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/chief) +"cc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"ch" = (/obj/machinery/vending/wardrobe/mimedrobe,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "Robotic Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"ck" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cm" = (/obj/machinery/exonet_node{anchored = 1},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cn" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"cp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"cq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cs" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"ct" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "AI Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"cu" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cw" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"cx" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cy" = (/obj/machinery/recharge_station,/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"cz" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"cA" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"cH" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"cI" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"cK" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"cL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"cO" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"cP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"cS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"cW" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cY" = (/obj/machinery/telecomms/broadcaster/preset_right/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cZ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"db" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"df" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"dh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"dk" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "starmaint_airpump"},/obj/machinery/camera/network/civilian,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"dn" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"do" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"dr" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"du" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarrooma) +"dw" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"dx" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/deck3/forestarroomb) +"dy" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"dB" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"dD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"dE" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"dF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt1,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"dH" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"dL" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"dM" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"dN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"dQ" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"dS" = (/obj/machinery/camera/network/command{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"dT" = (/obj/machinery/light/small{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"dU" = (/turf/simulated/wall/bay/blue,/area/lawoffice) +"dV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"dY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"dZ" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ea" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "starmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"ed" = (/obj/structure/closet,/obj/random/firstaid,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"eg" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"eh" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"ei" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ej" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"ek" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"el" = (/obj/machinery/pda_multicaster/prebuilt,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"em" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"en" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"eo" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ep" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/ai_cyborg_station) +"et" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/stellardelight/deck3/portdock) +"eu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"ev" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "rddoor"; name = "Research Director"; req_access = list(30); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hor) +"ew" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ex" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ey" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"ez" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"eC" = (/obj/machinery/telecomms/receiver/preset_right/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"eD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"eE" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/drinkbottle,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"eF" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"eI" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"eJ" = (/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"eK" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"eL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"eP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; name = "Holodeck"},/turf/simulated/floor/tiled/steel_ridged,/area/holodeck_control) +"eQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"eR" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"eS" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"eU" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"eV" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"eX" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"eY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"fa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"fb" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"fd" = (/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/structure/table/woodentable,/obj/item/weapon/hand_labeler,/obj/machinery/alarm/angled,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"ff" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardaft) +"fg" = (/obj/structure/handrail{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -28},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"fh" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"fj" = (/obj/structure/table/woodentable,/obj/item/toy/figure/clown,/obj/item/weapon/pen/crayon/marker/rainbow,/obj/item/weapon/pen/crayon/rainbow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"fk" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"fs" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"fv" = (/obj/machinery/holoplant,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"fz" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"fD" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"fE" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"fG" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"fM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/ai_cyborg_station) +"fO" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"fP" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"fS" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/heads/hop) +"fT" = (/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"fW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"gb" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/red_hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"gc" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "portmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"gg" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/open,/area/crew_quarters/bar) +"gh" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"gi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"gj" = (/obj/structure/table/rack/shelf,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"gk" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"gl" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{pixel_y = 32},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"gm" = (/obj/structure/lattice,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"gs" = (/obj/machinery/requests_console/preset/rd{pixel_x = 30},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"gw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gy" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"gA" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"gB" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gE" = (/obj/structure/table/darkglass,/obj/item/weapon/stamp/denied{pixel_x = 6; pixel_y = 6},/obj/item/weapon/stamp/internalaffairs,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"gG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gH" = (/turf/simulated/floor,/area/ai_cyborg_station) +"gJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gL" = (/obj/item/weapon/bedsheet/hosdouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#631915"},/obj/effect/landmark/start/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"gM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"gN" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"gO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gQ" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/cyan{icon_state = "0-4"},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"gR" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"gS" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"gU" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"gV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"gW" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"hb" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"hc" = (/obj/machinery/requests_console/preset/hos{pixel_x = -30},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"hd" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"he" = (/obj/machinery/button/remote/airlock{id = "readingroom1"; name = "Room 1 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom1"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"hf" = (/obj/structure/sign/warning/docking_area{pixel_x = -32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"hg" = (/obj/effect/fancy_shuttle/sd_shuttle{dir = 1; fancy_shuttle_tag = "sdboat"},/obj/effect/fancy_shuttle_floor_preview/sd_shuttle{dir = 1},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"hj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"hk" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/warning/docking_area{pixel_y = 32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"hp" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"hr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"hu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"hw" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"hy" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"hz" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"hB" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"hC" = (/obj/machinery/light/small{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/fore) +"hD" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"hE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"hF" = (/obj/machinery/holoplant,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"hG" = (/obj/structure/sign/poster{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"hK" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"hN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/portdock) +"hO" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"hP" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"hQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/aftstarroom) +"hR" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"hT" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardfore) +"hU" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"hX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"hY" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/port) +"hZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/vacuum{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ib" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"if" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"ii" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"ij" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"il" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"im" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"in" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hop) +"ip" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"ir" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"is" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/secure{name = "AI/Telecoms"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_upload) +"iv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"iy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"iz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/bed/chair/sofa/corp/right{dir = 4},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"iC" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"iE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"iI" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"iJ" = (/obj/machinery/cryopod/robot,/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"iK" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"iL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"iN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"iP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"iQ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"iR" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"iS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"iV" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/stellardelight/deck3/commandhall) +"iW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"iY" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"iZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/stellardelight/deck3/starboarddock) +"ja" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"jc" = (/obj/machinery/computer/ship/sensors/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"jd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"jg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/starboarddock) +"jh" = (/obj/structure/closet/secure_closet/hop2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm/angled{dir = 8; pixel_x = 30},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"jm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"jn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#858585"; id_tag = "cedoor"; name = "Chief Engineer"; req_access = list(56); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/chief) +"jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"jp" = (/obj/structure/closet,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"jy" = (/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "clownmimeoffice"},/turf/simulated/floor,/area/stellardelight/deck3/clownmimeoffice) +"jC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"jD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hopdouble,/obj/structure/curtain/black,/obj/effect/landmark/start/hop,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"jE" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"jK" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"jL" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"jM" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"jO" = (/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"jP" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"jT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"jV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"jY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"ka" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kc" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ki" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"kj" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"kk" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"kl" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"ko" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"kp" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/alarm/angled,/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"kr" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ks" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kt" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ku" = (/obj/structure/barricade/cutout/mime,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"kw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kz" = (/obj/machinery/airlock_sensor/airlock_exterior/shuttle{dir = 6; pixel_x = 7; pixel_y = 26},/obj/effect/map_helper/airlock/sensor/ext_sensor,/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"kB" = (/obj/machinery/porta_turret/ai_defense,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/bluegrid,/area/ai) +"kF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"kN" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/structure/closet/secure_closet/hop,/obj/item/clothing/glasses/omnihud,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/obj/item/weapon/storage/box/PDAs,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"kO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"kP" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portfore) +"kQ" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"kT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"kU" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"kV" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"kW" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"kX" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"kY" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"kZ" = (/obj/structure/handrail{dir = 1},/obj/machinery/airlock_sensor{dir = 8; pixel_x = 29; pixel_y = 2},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"la" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/shuttles,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"lc" = (/obj/structure/fuel_port{dir = 8; pixel_x = -32},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/binary/pump/fuel{dir = 1},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"le" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardaft) +"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/foreportroomb) +"li" = (/obj/machinery/telecomms/hub/preset/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lk" = (/obj/structure/filingcabinet/medical,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"lm" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lo" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lq" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"lt" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lu" = (/obj/machinery/camera/network/command,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"lv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lw" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lx" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lA" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"lB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"lC" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"lD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"lE" = (/obj/machinery/telecomms/bus/preset_two/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lF" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"lH" = (/obj/machinery/telecomms/server/presets/service/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lJ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"lP" = (/obj/structure/table/woodentable,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"lQ" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"lT" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"lU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom1"; name = "Room 1"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"lV" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"lY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/central) +"ma" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"md" = (/obj/machinery/button/remote/airlock{id = "readingroom3"; name = "Room 3 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom3"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"me" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"mf" = (/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock,/turf/space,/area/space) +"mg" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"mh" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 4; pixel_x = 1; pixel_y = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/machinery/alarm{pixel_y = 28},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"mi" = (/obj/machinery/shipsensors/fancy_shuttle,/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"mj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"mm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"mn" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"mo" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"mp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"mq" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"mr" = (/obj/structure/table/bench/padded,/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"ms" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"mv" = (/obj/effect/map_helper/airlock/atmos/pump_out_external,/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "sdboat_docker_pump_out_external"},/turf/simulated/wall/fancy_shuttle/low{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"mA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"mC" = (/obj/machinery/telecomms/server/presets/supply,/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"mD" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"mF" = (/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"mI" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"mK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"mM" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"mO" = (/obj/structure/table/alien{name = "fancy table"},/obj/machinery/computer/skills{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"mQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"mR" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"mS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"mT" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"mX" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"na" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"nd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ne" = (/obj/machinery/light/small{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"nf" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"nh" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"nj" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/cafe) +"nk" = (/obj/machinery/light,/obj/structure/table/bench/padded,/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nm" = (/obj/machinery/telecomms/server/presets/unused,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"np" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"nr" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"ns" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"nt" = (/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"nu" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"nv" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/structure/closet/crate,/obj/item/weapon/material/minihoe,/obj/item/seeds/reishimycelium,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/ambrosiavulgarisseed,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"nw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{dir = 8; name = "maintenance access"; stripe_color = "#454545"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"nx" = (/turf/simulated/open,/area/stellardelight/deck2/central) +"nz" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1380; master_tag = "sd_escape_starboard"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"nC" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"nD" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"nF" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nH" = (/obj/structure/table/steel_reinforced,/obj/item/device/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/weapon/stamp/hos,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"nL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/item_bank{dir = 4; pixel_x = -26},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"nM" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"nN" = (/obj/machinery/cryopod/robot,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"nO" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"nP" = (/turf/simulated/wall/bay/purple,/area/crew_quarters/heads/hor) +"nS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"nT" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"nV" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"nW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/cafe) +"nX" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"nZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ob" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"od" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "starmaint_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"og" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"ok" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ol" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/weapon/stamp/rd,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"op" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"oq" = (/obj/effect/landmark/arrivals,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"os" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 1; frequency = 1380; master_tag = "sd_escape_center_right"; pixel_x = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"ou" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 8; frequency = 1380; id_tag = "sd_escape_center_right"; master_tag = "escape_dock"; pixel_x = 24; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{dir = 4; frequency = 1380; id_tag = null; pixel_x = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ov" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"ow" = (/turf/simulated/open,/area/stellardelight/deck2/starboard) +"oy" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"oA" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"oC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"oD" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"oE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"oI" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/portcent) +"oM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"oN" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"oO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"oP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/crew_quarters/bar) +"oR" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 32},/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = 32},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; name = "Common Channel"; pixel_x = -21},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/requests_console/preset/ai{pixel_x = 32; pixel_y = 32},/obj/effect/landmark/start/ai,/turf/simulated/floor/bluegrid,/area/ai) +"oS" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"oT" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"oU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"oV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"oW" = (/turf/simulated/open,/area/stellardelight/deck2/port) +"oX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"oY" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "Telecoms Control Room"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"oZ" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/readingroom) +"pb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pc" = (/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pd" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"pf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"pk" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"pl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"pm" = (/obj/structure/table/darkglass,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = -5},/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blade/red{pixel_x = -2; pixel_y = -2},/obj/item/weapon/pen,/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"po" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"pp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"pq" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"pt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"px" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"pz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/aftstarroom) +"pA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/cosmosdouble{icon_state = "dobulesheetcosmos"},/obj/machinery/camera/network/command,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"pB" = (/obj/structure/bed/chair,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/sign/warning/evac{pixel_x = 32},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"pE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"pG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/shuttles/right,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"pK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pL" = (/obj/structure/table/steel,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"pN" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"pO" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"pS" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"pT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"pV" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"pW" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"pX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"pY" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qb" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qc" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"qd" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"qe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1380; master_tag = "sd_escape_port"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"qf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"qg" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 4},/obj/random/contraband,/obj/random/snack,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"qi" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/fore) +"qn" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qp" = (/turf/simulated/open,/area/crew_quarters/bar) +"qq" = (/turf/simulated/wall/bay/r_wall/blue,/area/tcommsat/computer) +"qs" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"qv" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#323d80"; id_tag = "AICore"; id_tint = null; locked = 1; name = "AI Core"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"qx" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"qy" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qz" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"qA" = (/obj/machinery/turretid/stun{check_synth = 1; control_area = /area/ai; name = "AI Chamber turret control"; pixel_x = -30; pixel_y = -24},/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = 25},/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) +"qC" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"qE" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck3/starboarddock) +"qF" = (/turf/simulated/open,/area/stellardelight/deck2/fore) +"qK" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"qL" = (/obj/structure/sign/warning/docking_area{pixel_x = 32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qM" = (/obj/structure/table/steel,/obj/random/firstaid,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"qN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"qO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"qP" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/port) +"qQ" = (/obj/machinery/porta_turret/stationary,/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qS" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"qU" = (/obj/machinery/light{dir = 4},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarroomb) +"qX" = (/obj/random/vendorfood,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"qY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"qZ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"rb" = (/obj/effect/floor_decal/emblem/nt3,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"rc" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck3/commandhall) +"rg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"rh" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"ri" = (/obj/structure/handrail,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"rj" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"rl" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"rm" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/cryopod{pixel_x = 32; pixel_y = 32},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"rn" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"rp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "portmaint_airlock"; name = "interior access button"; pixel_x = 32; req_access = null; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "portmaint_interior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"rq" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"rr" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "sd_escape_starboard"; master_tag = "escape_dock"; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"rs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"rx" = (/turf/simulated/wall/bay/white,/area/crew_quarters/heads/cmo) +"rA" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"rB" = (/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#323d80"; id_tag = "AICore"; id_tint = null; locked = 1; name = "AI Core"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"rH" = (/obj/structure/lattice,/obj/structure/cable/blue{icon_state = "32-8"},/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardcent) +"rL" = (/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"rN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/bluegrid,/area/ai) +"rS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"rW" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"rX" = (/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"rZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"sa" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"sb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"sc" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai) +"sd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"sf" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"si" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"sj" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/cable/blue{icon_state = "0-2"},/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"sl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"sn" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"sr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ss" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1380; master_tag = "sd_port_landing"; pixel_y = 32; req_one_access = list(13)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"st" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light/small{dir = 4},/mob/living/simple_mob/animal/passive/fox/syndicate/aipet,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"su" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"sx" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/stellardelight/deck2/central) +"sz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/central) +"sA" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"sC" = (/obj/machinery/computer/mecha{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"sE" = (/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding,/turf/space,/area/space) +"sI" = (/obj/structure/table/standard,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"sJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"sK" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"sM" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"sN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"sO" = (/turf/simulated/floor,/area/stellardelight/deck2/fore) +"sP" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"sQ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/reset,/obj/machinery/alarm{dir = 4; pixel_x = -28},/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"sR" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"sU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"sX" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"sZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"tb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"tc" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"tg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"th" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"tk" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"tn" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"tq" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"tu" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ty" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"tz" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/ai_upload) +"tC" = (/obj/structure/sign/vacuum,/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"tF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/frame,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"tG" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"tH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"tJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"tK" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"tO" = (/obj/structure/table/steel_reinforced,/obj/item/device/taperecorder{pixel_x = 10},/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{pixel_x = -9; pixel_y = -2},/obj/item/device/radio/off,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"tQ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/freeform,/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"tR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1380; master_tag = "sd_escape_port"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"tT" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"tV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"tW" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock{start_pressure = 4559.63},/turf/simulated/floor,/area/tcommsat/computer) +"tX" = (/obj/structure/bed/chair/sofa/corp/left{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"tZ" = (/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"ub" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster/security_unit{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"uc" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"uf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/port) +"ui" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/portables_connector/fuel{dir = 1},/obj/machinery/door/window/southleft{dir = 1; req_one_access = list(11,67)},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"uj" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hor) +"uk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"ul" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"un" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"uq" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/starboarddock) +"ur" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardaft) +"us" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"ut" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"uv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black,/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"uw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"uz" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"uB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/tcommsat/computer) +"uD" = (/obj/structure/closet/firecloset,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/drinkbottle,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"uE" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"uH" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"uI" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/ai) +"uJ" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"uM" = (/obj/machinery/alarm/angled,/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/clown{pixel_x = -4; pixel_y = 6},/obj/item/weapon/bikehorn{pixel_x = -2; pixel_y = 2},/obj/item/weapon/stamp/clown{pixel_x = 6; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"uQ" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/computer/shuttle_control/explore/sdboat{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"uT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"uU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom3"; name = "Room 3"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"uV" = (/obj/machinery/computer/robotics{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"uW" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/light/floortube{dir = 4; pixel_x = 2},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"uX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"uY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"uZ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"va" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"vb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"vf" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"vh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"vi" = (/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"vo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vq" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portaft) +"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/central) +"vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt2,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"vw" = (/obj/structure/sign/department/shield,/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck3/commandhall) +"vy" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"vA" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"vE" = (/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck3/exterior; base_turf = /turf/simulated/floor/reinforced/airless; docking_controller = "sd_starboard_landing"; landmark_tag = "starboard_shuttlepad"; name = "Starboard Shuttlepad"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"vF" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"vG" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"vI" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"vJ" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vN" = (/obj/machinery/computer/telecomms/monitor{dir = 8; network = "tcommsat"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"vO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(19,38); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"vP" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vQ" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"vS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"vT" = (/obj/machinery/holoplant,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"vX" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"wa" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/port) +"wc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"wd" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/antimov,/obj/item/weapon/aiModule/teleporterOffline,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"we" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"wg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"wm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sd_starboard_landing"; pixel_y = 29},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"wo" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/obj/item/weapon/aiModule/corp,/obj/item/weapon/aiModule/paladin,/obj/item/weapon/aiModule/robocop,/obj/structure/cable/blue,/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"wq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"wr" = (/obj/machinery/computer/ship/engines/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"wt" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"ww" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"wy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"wA" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"wG" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"wK" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"wM" = (/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"wN" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"wP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"wQ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"wR" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"wS" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai) +"wV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"wW" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"wY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"wZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xb" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"xd" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"xe" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"xf" = (/obj/structure/handrail{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"xh" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"xi" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"xj" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/consuming_eradicator,/obj/item/weapon/aiModule/guard_dog,/obj/item/weapon/aiModule/pleasurebot,/obj/item/weapon/aiModule/protective_shell,/obj/item/weapon/aiModule/scientific_pursuer,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"xm" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"xo" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"xp" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"xu" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_access = null; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"xv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"xw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"xy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"xz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/unary/freezer{dir = 1; icon_state = "freezer_1"; set_temperature = 73; use_power = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"xA" = (/obj/structure/sign/warning/evac{pixel_x = 32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"xB" = (/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"xC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"xE" = (/obj/structure/closet,/obj/random/firstaid,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"xH" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"xI" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"xL" = (/turf/simulated/wall/fancy_shuttle/low{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xM" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/iaa,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"xN" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"xO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"xP" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"xR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"xS" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"xU" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"xW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"xY" = (/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"xZ" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"ya" = (/obj/machinery/button/remote/blast_door{id = "shuttleshutter"; name = "Shutter Control"; pixel_x = 17; pixel_y = 27},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"yb" = (/obj/structure/sign/deck3{pixel_x = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"yc" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"yd" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ye" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/corgi/Lisa,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"yf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{dir = 8; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"yi" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue,/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"yj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"ym" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"yo" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"yp" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/computer/cryopod/robot{pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"yq" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"ys" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"yt" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"yw" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"yy" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"yC" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"yF" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"yH" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"yI" = (/obj/item/weapon/folder{pixel_x = -4},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/yellow,/obj/structure/table/darkglass,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"yJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"yM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#313866"; name = "Head of Personnel"; req_access = list(57); stripe_color = "#a3d1d1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hop) +"yP" = (/obj/structure/sign/warning/falling{pixel_x = 32},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"yR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1380; master_tag = "sd_starboard_landing"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"yV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"yW" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"yY" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"yZ" = (/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"za" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"zb" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"zf" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"zg" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"zi" = (/obj/effect/floor_decal/emblem/nt2,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"zk" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"zm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"zn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/tcommsat/computer) +"zo" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"zp" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"zr" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"zt" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"zv" = (/obj/item/weapon/bedsheet/rddouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#361447"},/obj/effect/landmark/start/rd,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"zw" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "portmaint_airlock"; pixel_x = 24; req_access = null; req_one_access = list(13); tag_airpump = "portmaint_airpump"; tag_chamber_sensor = "portmaint_sensor"; tag_exterior_door = "portmaint_exterior"; tag_interior_door = "portmaint_interior"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"zy" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"zz" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/commandhall) +"zA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"zB" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"zC" = (/obj/item/toy/figure/mime,/obj/item/weapon/pen/crayon/marker/mime,/obj/item/weapon/pen/crayon/mime,/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"zD" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/warning/secure_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"zE" = (/obj/structure/table/bench/padded,/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"zF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"zH" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"zI" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/arrivals,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"zJ" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/alarm/angled{pixel_x = -32; pixel_y = 19},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"zL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"zM" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"zN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hos) +"zQ" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"zS" = (/obj/structure/handrail{dir = 1},/obj/machinery/power/apc{pixel_y = -28; req_access = null; req_one_access = list(11,67)},/obj/structure/cable/green,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"zV" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"zW" = (/obj/structure/lattice,/obj/structure/sign/warning/falling{pixel_y = 32},/turf/simulated/open,/area/stellardelight/deck2/fore) +"zX" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/readingroom) +"zY" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Ae" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Af" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Ai" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Aj" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet/walllocker_double/east,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Al" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Am" = (/obj/machinery/power/apc/angled{dir = 4; req_access = list(19,43,67)},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"An" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Ap" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Aq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"As" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"At" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"Av" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Aw" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Ax" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Ay" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Az" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/structure/closet/crate{name = "Camera Assembly Crate"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"AD" = (/obj/structure/handrail,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sdboat_docker"; pixel_x = 5; pixel_y = 25},/obj/machinery/airlock_sensor{dir = 8; frequency = 1380; id_tag = null; pixel_x = 25; pixel_y = 2},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"AE" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"AH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"AK" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"AP" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"AQ" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"AS" = (/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"AT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"AU" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"AX" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"AY" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"AZ" = (/obj/machinery/porta_turret,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bb" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/obj/structure/panic_button/small{pixel_x = -29; pixel_y = 30},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Bd" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/bookcase,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Be" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Bg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardaft) +"Bj" = (/obj/machinery/message_server,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Bk" = (/obj/machinery/computer/aiupload{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1380; id_tag = "tcommsairlock"; pixel_y = 24; req_one_access = list(61)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{dir = 8; pixel_x = 25},/turf/simulated/floor,/area/tcommsat/computer) +"Bm" = (/obj/structure/closet/emcloset,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Bn" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Bp" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/command) +"Bq" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Br" = (/obj/structure/table/alien{name = "fancy table"},/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Bs" = (/obj/machinery/computer/borgupload{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Bz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "cmodoor"; name = "Chief Medical Officer"; req_access = list(40); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/cmo) +"BA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1380; master_tag = "sd_port_landing"; pixel_y = 32; req_one_access = list(13)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"BB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/aft) +"BC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"BF" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Command Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/command) +"BG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"BH" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"BJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"BK" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"BL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/port) +"BM" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"BQ" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"BR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 4; frequency = 1380; id_tag = "sd_escape_center_left"; master_tag = "escape_dock"; pixel_x = -24; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{dir = 8; frequency = 1380; id_tag = null; pixel_x = 25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"BV" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"BW" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"BY" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = -27},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"BZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Cb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Cc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Cd" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Ce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"Cf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"Cn" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Co" = (/obj/machinery/button/remote/airlock{id = "readingroom2"; name = "Room 2 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom2"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"Cp" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Cu" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/random/vendorfood,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Cw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Cx" = (/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck3/exterior; base_turf = /turf/simulated/floor/reinforced/airless; docking_controller = "escape_dock"; landmark_tag = "escape_station"; name = "Ship Arrivals"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"Cy" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/arrivals/right,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Cz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"CA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"CC" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/clownmimeoffice) +"CD" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "sd_escape_port"; master_tag = "escape_dock"; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"CG" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"CH" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"CJ" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"CK" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"CO" = (/obj/effect/overmap/visitable/ship/stellar_delight,/turf/space,/area/space) +"CP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/arrivals/right,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"CR" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"CS" = (/obj/structure/lattice,/turf/simulated/open,/area/stellardelight/deck2/port) +"CT" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"CU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"CV" = (/obj/structure/bed/chair,/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"CY" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Dd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/open,/area/crew_quarters/bar) +"De" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"Df" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Dh" = (/obj/machinery/computer/message_monitor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Di" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Dk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Dp" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ds" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Du" = (/obj/machinery/vending/wardrobe/clowndrobe,/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Dw" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/carpet/geo,/area/ai) +"Dy" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"DC" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/deck3/foreportroomb) +"DD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "maintenance access"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"DE" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"DH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/open,/area/crew_quarters/bar) +"DI" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"DL" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"DM" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"DN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"DO" = (/obj/structure/closet/hydrant{pixel_y = 28},/obj/structure/dogbed{name = "catslug bed"},/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"DP" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"DQ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"DT" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck3/portaft) +"DV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/blue,/area/lawoffice) +"DW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/button/remote/blast_door{dir = 8; id = "clownmimeoffice"; name = "Window Lockdown"; pixel_x = 23; pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"DY" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"DZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ec" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/clownmimeoffice) +"Ed" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"Ee" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Ef" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Eh" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Ei" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"El" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"En" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Es" = (/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding,/turf/space,/area/space) +"Et" = (/obj/structure/closet/secure_closet/hos,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"Eu" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/port) +"Ev" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ex" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"EE" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/rig/ce/equipped,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots/adv,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"EF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"EH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"EI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "portmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"EJ" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/cmo) +"EL" = (/obj/machinery/door/airlock/angled_bay/hatch{frequency = null; id_tag = null; locked = 1; name = "Telecoms Server Access"; req_access = list(61); stripe_color = "#ffd863"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 1; frequency = 1380; master_tag = "tcommsairlock"; pixel_x = -32; req_one_access = list(61)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"EN" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"EO" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ER" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ET" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"EU" = (/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"EV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"EW" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"EX" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"EY" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 8; pixel_y = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"EZ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarroomb) +"Fb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Fe" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Ff" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Fg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#854a44"; id_tag = "hosdoor"; name = "Head of Security"; req_access = list(58); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hos) +"Fh" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Fm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "portmaint_airpump"},/obj/machinery/camera/network/civilian,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Fr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Ft" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Fy" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"FC" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"FD" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"FE" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"FG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"FH" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"FI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"FL" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"FM" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"FO" = (/obj/structure/bed/psych{name = "couch"},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"FR" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"FS" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"FU" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"FW" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"FY" = (/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ga" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ge" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/nanotrasen,/obj/machinery/camera/network/command,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Gf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Gg" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = -3},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Gh" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Gi" = (/obj/structure/table/rack,/obj/item/weapon/rig/hazmat/equipped,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Gj" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Gk" = (/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"Gl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cmo,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"Gm" = (/obj/structure/cable/blue{icon_state = "0-2"},/obj/structure/cable/blue,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Command"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"Go" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Gq" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Gv" = (/obj/structure/sign/deck3{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"GB" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/rack,/obj/random/donkpocketbox,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"GD" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"GE" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"GF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"GH" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"GJ" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"GP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai) +"GQ" = (/turf/simulated/wall/bay/red,/area/crew_quarters/heads/hos) +"GR" = (/obj/machinery/requests_console/preset/cmo{pixel_x = 30},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"GS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"GT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"GW" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/obj/item/device/megaphone,/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Ha" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/cedouble,/obj/structure/curtain/black{color = "#945112"},/obj/effect/landmark/start/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Hc" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue,/obj/machinery/power/sensor{name = "Powernet Sensor - AI/Telecomms Subgrid"; name_tag = "AI/Telecomms Subgrid"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor,/area/ai_cyborg_station) +"Hd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/firecloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"He" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"Hf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Hg" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/vacuum{pixel_x = -32; plane = -34},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Hh" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/airlock_sensor{dir = 4; id_tag = "starmaint_sensor"; pixel_x = -24; req_access = list(13)},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Hk" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Hm" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Ho" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Hq" = (/obj/structure/sign/warning/falling{pixel_y = 32},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Hs" = (/turf/simulated/wall/bay/orange,/area/crew_quarters/heads/chief) +"Ht" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Hu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck3/portdock) +"Hv" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Hw" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Hx" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"HA" = (/obj/structure/cable/cyan,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; dir = 4; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = -25; pixel_y = -5; req_access = list(16)},/obj/machinery/light,/obj/machinery/holoplant,/obj/machinery/power/apc/angled{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"HB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"HF" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"HH" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"HL" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"HN" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"HO" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"HP" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/starboarddock) +"HQ" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = null; name = "Reading Rooms"; stripe_color = "#89bd66"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"HR" = (/obj/structure/table/steel,/obj/random/contraband,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"HS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"HT" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"HV" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"HW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"HX" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"HY" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"HZ" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/central) +"Ia" = (/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Ib" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ie" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Ig" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"Ii" = (/turf/simulated/wall/bay/r_wall/steel,/area/holodeck_control) +"Ij" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"Il" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Im" = (/obj/effect/landmark/tram,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"In" = (/obj/structure/cable{icon_state = "1-8"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Io" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ir" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"It" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Iu" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai_server_room) +"Iz" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"IC" = (/obj/machinery/computer/station_alert/all,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"ID" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"IG" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"IH" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/stellardelight/deck2/port) +"II" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/camera/network/command,/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"IK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"IN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"IO" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/port) +"IP" = (/obj/structure/table/steel,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"IQ" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai) +"IR" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"IS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "Clown and Mime Office"; req_one_access = list(138,136); stripe_color = "#454545"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/stellardelight/deck3/clownmimeoffice) +"IU" = (/obj/machinery/hologram/holopad,/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai) +"IV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/fore) +"IW" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/closet/emcloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"IY" = (/obj/machinery/airlock_sensor{dir = 8; id_tag = "portmaint_sensor"; pixel_x = 24; req_access = list(13)},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"IZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Ja" = (/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "starmaint_airlock"; name = "interior access button"; pixel_x = 32; req_access = null; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"Jc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"Jd" = (/obj/structure/closet/lawcloset,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Jg" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"Jh" = (/turf/space,/area/space) +"Ji" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Jj" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"Jm" = (/obj/structure/barricade/cutout/clown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"Jn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/foreportrooma) +"Jo" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Js" = (/obj/structure/table/darkglass,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/item/device/flashlight/lamp/green{pixel_x = 5; pixel_y = -5},/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blade/red{pixel_x = -2; pixel_y = -2},/obj/item/weapon/pen,/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Ju" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Jv" = (/obj/machinery/computer/aifixer,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Jx" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Jz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Core"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"JA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "sd_escape_center_left"; pixel_x = -32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"JE" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"JJ" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"JK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"JO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"JP" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Upload"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_upload) +"JQ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/turretid/stun{control_area = /area/ai_upload; name = "AI Upload turret control"; pixel_x = -32; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"JR" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"JS" = (/obj/machinery/embedded_controller/radio/docking_port_multi{child_names_txt = "Port;Center Left;Center Right;Starboard"; child_tags_txt = "sd_escape_port;sd_escape_center_left;sd_escape_center_right;sd_escape_starboard"; dir = 1; frequency = 1380; id_tag = "escape_dock"; pixel_y = -18; req_one_access = list(13)},/obj/effect/landmark/arrivals,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"JU" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"JW" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"JY" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"JZ" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Kb" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Ke" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Kf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/halls{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Kg" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/move_trader_landmark{dir = 4; trader_type = /obj/trader/general},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ki" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/obj/machinery/power/shield_generator/charged,/obj/structure/cable,/turf/simulated/floor,/area/stellardelight/deck2/central) +"Kj" = (/obj/machinery/computer/shuttle_control/explore/sdboat{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{pixel_y = -28; req_access = null; req_one_access = list(11,67)},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Kk" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Ko" = (/obj/effect/landmark/tram,/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Kq" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Kr" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ks" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Kv" = (/obj/structure/bed/chair{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Kw" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Kx" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ky" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Kz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/emcloset,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/cargo,/obj/random/mre,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KD" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"KG" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science,/obj/item/clothing/glasses/welding/superior,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"KH" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/camera/network/command{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"KI" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"KJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KL" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"KM" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"KQ" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"KS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"KT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"KU" = (/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"KV" = (/obj/structure/table/steel,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"KW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"KY" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Lb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"Ld" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Le" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/flora/pottedplant/minitree,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Lf" = (/obj/structure/sign/warning/falling{pixel_x = -32},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Lh" = (/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/telecom{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Li" = (/obj/move_trader_landmark{dir = 8; trader_type = /obj/trader/general},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Lm" = (/obj/random/paicard,/obj/structure/table/glass,/obj/machinery/camera/network/civilian{dir = 8},/obj/random/coin/sometimes,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Ln" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Lo" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Lr" = (/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock,/turf/space,/area/space) +"Lv" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Lw" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Lx" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/camera/network/command{dir = 10},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Lz" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"LC" = (/obj/machinery/holoplant,/obj/structure/sign/warning/secure_area{pixel_y = 32},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) +"LD" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"LI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/shuttles,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"LJ" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"LK" = (/obj/structure/table/bench/padded,/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"LO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"LP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"LQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"LR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "starmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"LS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/holodeck_control) +"LT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portaft) +"LV" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"LW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"LY" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Mc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/ladder,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Mg" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet/walllocker_double/west,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Mi" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Mk" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"Ml" = (/obj/structure/table/darkglass,/obj/item/weapon/stamp/denied{pixel_x = -6; pixel_y = 6},/obj/item/weapon/stamp/internalaffairs,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Mo" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sd_port_landing"; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Mp" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "AI/Telecomms Substation Bypass"},/turf/simulated/floor,/area/ai_cyborg_station) +"Mr" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/clowndouble,/obj/structure/curtain/black{color = "#361447"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Ms" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/hop,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/item/device/flashlight/lamp/green{pixel_x = 3; pixel_y = 18},/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Mu" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/table/steel,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Mv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Mw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Mx" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"My" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"MA" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"MB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"MC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt3,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ME" = (/obj/structure/sign/poster{dir = 1},/obj/random/vendordrink,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"MF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/stellardelight/deck2/central) +"MG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"MH" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"MI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"MJ" = (/obj/machinery/pointdefense_control{id_tag = "sd_pd"},/turf/simulated/floor/bluegrid,/area/ai_server_room) +"MK" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"MN" = (/obj/structure/closet/secure_closet/hos2,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/retail_scanner/security,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"MO" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"MP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"MR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"MU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/arrivals,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"MV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"MW" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"MX" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"MZ" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"Nc" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Nd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/port) +"Ne" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Nf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Nh" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Ni" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Nj" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Nk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/nanotrasen{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Nm" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Nq" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ns" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Ny" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Nz" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"NE" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"NF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/crew_quarters/bar) +"NG" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"NI" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/open,/area/stellardelight/deck2/port) +"NJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom2"; name = "Room 2"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"NK" = (/obj/structure/sign/vacuum,/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portcent) +"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"NO" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/item/device/radio/intercom{dir = 1; frequency = 1357; name = "station intercom (Engineering)"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"NP" = (/obj/machinery/camera/network/command{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_access = null; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"NR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"NS" = (/obj/machinery/atmospherics/unary/engine/fancy_shuttle{dir = 1},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"NT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control) +"NU" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"NW" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"NX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1380; master_tag = "sd_starboard_landing"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"NZ" = (/obj/item/weapon/bedsheet/mimedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"Oa" = (/obj/machinery/door/firedoor/glass,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Ob" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"Oc" = (/obj/structure/sign/warning/docking_area{pixel_x = 32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"Od" = (/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Oe" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Of" = (/obj/machinery/status_display{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Og" = (/obj/machinery/recharge_station,/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Oj" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Ol" = (/turf/simulated/wall/durasteel,/area/ai) +"Oo" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Op" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Oq" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Or" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ot" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/rd,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"Ou" = (/obj/item/device/radio/beacon,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Ov" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Ow" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "Telecoms Access"; req_one_access = list(16,17,61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/ai_server_room) +"Ox" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Oy" = (/obj/machinery/light{dir = 1},/obj/machinery/door/window{req_one_access = list(25)},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Oz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/cafe) +"OA" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"OC" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/angled_bay/hatch{frequency = null; id_tag = null; locked = 1; name = "Telecoms Server Access"; req_access = list(61); stripe_color = "#ffd863"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tcommsairlock"; pixel_x = 32; req_one_access = list(61)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"OD" = (/obj/structure/table/rack/steel,/obj/machinery/door/window/brigdoor/eastleft{dir = 1; name = "Protosuit Storage"; req_access = list(58)},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security/prototype,/obj/item/clothing/head/helmet/space/void/security/prototype,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"OE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"OF" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"OG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"OI" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"OJ" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"OK" = (/obj/structure/closet/lawcloset,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"OM" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/rack/shelf,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"ON" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"OP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/open,/area/crew_quarters/bar) +"OQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/open,/area/crew_quarters/bar) +"OR" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"OS" = (/obj/machinery/computer/drone_control{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"OU" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/cryo) +"OX" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"OY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Pa" = (/obj/structure/lattice,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Pc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Pd" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"Pe" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"Pj" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Pl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Starstuff Cockpit"; req_one_access = list(67)},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Pm" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Po" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Pp" = (/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Pq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ps" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Px" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"PA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/halls{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"PB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"PC" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"PD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"PE" = (/obj/structure/sign/department/ai{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"PJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/northleft{dir = 8; icon_state = "right"; name = "Reception Window"},/obj/machinery/door/window/brigdoor/eastright{name = "Head of Personnel's Desk"; req_access = list(57)},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/door/blast/shutters{dir = 8; id = "hop_office_desk"; layer = 3.1; name = "HoP's Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"PL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"PR" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/weapon/stamp/cmo,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"PV" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"PW" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"PX" = (/obj/structure/closet/emcloset,/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Qe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/overmap/visitable/ship/landable/sd_boat,/obj/effect/shuttle_landmark/shuttle_initializer/sdboat,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Qf" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Qi" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Qm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Qn" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/turf/simulated/open,/area/stellardelight/deck3/aft) +"Qo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Qp" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"Qs" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/bluegrid,/area/ai) +"Qu" = (/obj/structure/sink/kitchen{pixel_y = 22},/obj/machinery/light{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/monotile,/area/holodeck_control) +"Qv" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Qx" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"QB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/open,/area/stellardelight/deck3/commandhall) +"QC" = (/obj/machinery/camera/network/telecom,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"QE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"QF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/port) +"QG" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"QI" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"QJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "sd_escape_center_right"; pixel_x = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"QK" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"QL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"QP" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"QT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#323d80"; name = "Command Offices"; req_access = null; req_one_access = list(19,38); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"QV" = (/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"QW" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"QZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Rc" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"Rd" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Rg" = (/obj/structure/lattice,/turf/simulated/open,/area/maintenance/stellardelight/deck3/forestarroomb) +"Rh" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ri" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Rj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "maintenance access"},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Rl" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Command Offices"; sortType = "Command Offices"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Rn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"Ro" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass/common{dir = 4; name = "Long-Range Teleporter Access"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/transitgateway) +"Rq" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ru" = (/obj/machinery/holoplant,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Rv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Rw" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Rx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Rz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"RE" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardfore) +"RG" = (/obj/machinery/light/small{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"RI" = (/turf/simulated/open,/area/stellardelight/deck3/aft) +"RK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"RL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportroomb) +"RM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"RN" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/structure/closet/firecloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"RQ" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"RT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/central) +"RW" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/door/window/southright{dir = 1; req_one_access = list(11,67)},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"RX" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/central) +"RY" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"RZ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/sign/warning/caution{desc = "This secure area is guarded by LETHAL LASER TURRETS. Authorized personnel ONLY."; name = "\improper WARNING: LETHAL TURRETS AHEAD"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Sb" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Se" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Sh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Sk" = (/obj/structure/table/standard,/obj/item/weapon/phone{pixel_x = 3; pixel_y = 11},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Sl" = (/obj/structure/sign/warning/evac{pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Sm" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Sn" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Sp" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Sw" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Sz" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"SA" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{dir = 8; pixel_y = 6},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"SB" = (/obj/machinery/requests_console/preset/ce{pixel_x = -30},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"SC" = (/obj/structure/sign/warning/docking_area{pixel_y = 32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"SD" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"SE" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = 27},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"SF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"SJ" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"SK" = (/obj/structure/lattice,/turf/space,/area/space) +"SL" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"SN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"SP" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"SQ" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"SR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"ST" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"SU" = (/obj/structure/table/bench/padded,/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"SV" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"SZ" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Ta" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"Tc" = (/obj/structure/bed/chair{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Td" = (/obj/structure/table/rack/shelf,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Te" = (/obj/effect/landmark/map_data/stellar_delight,/turf/space,/area/space) +"Tf" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Ti" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Tj" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "hop_office_desk"; layer = 3.3; name = "Desk Privacy Shutter"; pixel_x = -4; pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Tk" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"Tl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/landmark/start/hop,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Tm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Tn" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"To" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Tp" = (/obj/structure/table/glass,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Tr" = (/obj/machinery/drone_fabricator,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ts" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Tv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9fccc7"; fill_color = "#333333"; id_tag = null; name = "Internal Affairs"; req_access = list(38); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/lawoffice) +"Tx" = (/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/central) +"Ty" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/ai_cyborg_station) +"TA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"TB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"TE" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"TF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"TI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"TJ" = (/obj/structure/sign/department/telecoms{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"TK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"TL" = (/turf/simulated/floor/bluegrid,/area/ai) +"TM" = (/obj/machinery/turretid/lethal{ailock = 1; control_area = /area/tcommsat/chamber; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms lethal turret control"; pixel_y = 29; req_access = list(61); req_one_access = list()},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"TO" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"TP" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"TS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"TV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"TW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"TY" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Ub" = (/obj/machinery/vending/boozeomat{req_access = null},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Uc" = (/obj/structure/frame/computer,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ud" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Ue" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/drinkbottle,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Uf" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Ug" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"Uj" = (/obj/structure/cable/blue,/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - AI/Telecomms"; output_attempt = 0},/turf/simulated/floor,/area/ai_cyborg_station) +"Uk" = (/obj/machinery/computer/card,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Uq" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Uw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Uy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"UA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"UB" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"UF" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"UG" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"UH" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"UK" = (/obj/machinery/camera/network/telecom{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"UL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"UO" = (/obj/machinery/recharge_station,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/ai_upload) +"UQ" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"UR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"US" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"UT" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/obj/item/weapon/pen/multi,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"UU" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"UV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"UX" = (/obj/machinery/light/small,/turf/simulated/open,/area/crew_quarters/bar) +"Va" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portfore) +"Vb" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/light/floortube{dir = 8; pixel_x = -3},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Vc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ve" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Vg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Vh" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Vi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/item/device/gps,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Vk" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"Vm" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Vo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1380; master_tag = "sd_escape_starboard"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"Vp" = (/obj/structure/lattice,/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Vr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Vs" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Vt" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"Vw" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Vx" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Vz" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"VB" = (/obj/item/weapon/bedsheet/double,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#156363"},/obj/effect/landmark/start/cmo,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"VC" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_upload) +"VD" = (/obj/structure/table/steel,/obj/random/drinkbottle,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"VE" = (/obj/structure/table/glass,/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 24},/obj/item/weapon/paper_bin{pixel_x = 3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/folder/white_cmo,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"VG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"VK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"VM" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"VN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"VQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/secure{name = "Nuclear Fission Device Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"VR" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"VS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"VZ" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Wa" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Wd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Wf" = (/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Wg" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wi" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/bluegrid,/area/ai) +"Wj" = (/obj/machinery/computer/ship/helm/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wl" = (/obj/structure/sign/warning/falling{pixel_x = -32},/turf/simulated/open,/area/stellardelight/deck2/port) +"Wn" = (/obj/machinery/power/smes/buildable{charge = 500000},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/central) +"Wq" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Wr" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ws" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/steel,/obj/item/weapon/flame/candle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Wt" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Wu" = (/obj/structure/sign/warning/docking_area{pixel_x = -32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Ww" = (/obj/structure/handrail{dir = 4},/obj/effect/map_helper/airlock/atmos/pump_out_internal,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "sdboat_docker_pump_out_internal"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Wy" = (/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/paper/sdshield,/turf/simulated/floor,/area/stellardelight/deck2/central) +"WA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"WB" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"WD" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"WF" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"WG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"WH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"WI" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"WK" = (/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"WL" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/drinksoft,/obj/random/drinksoft,/obj/random/mre,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"WM" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"WN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"WO" = (/turf/simulated/wall/bay/r_wall/blue,/area/lawoffice) +"WQ" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"WU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"WW" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/iaa,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"WX" = (/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"WZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Xa" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/closet/secure_closet/CMO,/obj/item/clothing/accessory/stethoscope,/obj/item/device/flashlight/pen,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/glasses/hud/health,/obj/item/device/defib_kit/compact/combat/loaded,/obj/item/weapon/cmo_disk_holder,/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,/obj/item/weapon/storage/mrebag/pill/sleevingcure,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Xb" = (/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Xc" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark/vermin,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Xd" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Xe" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Xf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/port) +"Xi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Xl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"Xm" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/device/radio/intercom{dir = 1; frequency = 1351; name = "station intercom (Science)"; pixel_y = 24},/obj/random/paicard{pixel_x = 4},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/paper/monitorkey,/obj/item/device/megaphone,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/folder/white_rd,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Xo" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Xr" = (/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Xv" = (/obj/structure/frame,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"XA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/central) +"XB" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/command) +"XC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"XD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/sign/warning/evac{pixel_x = -32},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"XE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass/common{dir = 4; name = "Cryogenic Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/cryo) +"XF" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/central) +"XG" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"XH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"XI" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"XJ" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"XK" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_server_room) +"XO" = (/obj/machinery/computer/security,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"XT" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"XV" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"XX" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"XY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/frame,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"XZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 1; frequency = 1380; master_tag = "sd_escape_center_left"; pixel_x = -32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Yb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "portmaint_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Yc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Yg" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portaft) +"Yj" = (/obj/structure/girder/displaced,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Yk" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Yl" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ym" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Yo" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Yp" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe"; name = "Cafe Shutters"; pixel_y = 28; req_one_access = list(25)},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Ys" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; id_tag = "starmaint_airlock"; pixel_x = -24; req_access = null; req_one_access = list(13); tag_airpump = "starmaint_airpump"; tag_chamber_sensor = "starmaint_sensor"; tag_exterior_door = "starmaint_exterior"; tag_interior_door = "starmaint_interior"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Yu" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/mre,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Yv" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Yw" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/open,/area/stellardelight/deck2/port) +"Yx" = (/obj/structure/closet/emcloset,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Yy" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Yz" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portcent) +"YA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"YB" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"YC" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/closet/secure_closet/RD,/obj/item/device/aicard,/obj/item/clothing/glasses/omnihud/rnd,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/science,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"YD" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"YE" = (/obj/structure/table/standard,/obj/random/soap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control) +"YH" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"YJ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"YK" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/turf/simulated/open,/area/stellardelight/deck3/aft) +"YL" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"YN" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/portdock) +"YO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"YQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"YR" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"YS" = (/obj/structure/table/steel,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"YU" = (/obj/structure/lattice,/turf/simulated/open,/area/crew_quarters/bar) +"Zd" = (/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Ze" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Zf" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Zi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/shuttles/right,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Zj" = (/obj/structure/bed/chair,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Zk" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Zl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/port) +"Zm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 29},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Zn" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Zp" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Zt" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"Zu" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Zw" = (/obj/machinery/porta_turret/ai_defense,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/bluegrid,/area/ai) +"ZB" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"ZC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ZE" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ZF" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"ZH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ZK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"ZL" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom3"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"ZM" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ZN" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ZQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"ZS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"ZV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom1"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"ZX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"ZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/fore) (1,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -CO -Te -"} -(2,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(3,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(4,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(5,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(6,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(7,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(8,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(9,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(10,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(11,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(12,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(13,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(14,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(15,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(16,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(17,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(18,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(19,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(20,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(21,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(22,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -mf -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(23,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(24,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(25,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(26,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(27,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(28,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(29,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(30,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(31,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(32,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(33,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(34,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(35,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -zk -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(36,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Es -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(37,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(38,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -zk -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(39,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -TE -NL -NL -NL -NL -NL -NL -NL -TE -NL -NL -NL -NL -NL -SK -SK -NL -NL -TE -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(40,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -FH -af -af -af -yd -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -Jh -Jh -NL -Ae -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(41,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -NL -TE -NL -NL -NL -NL -NL -NL -NL -TE -NL -NL -NL -NL -NL -NL -NL -NL -TE -NL -SK -SK -SK -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -un -af -af -af -af -af -eX -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(42,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ko -af -ew -af -af -af -af -af -Rx -af -ew -af -af -af -af -af -af -af -af -ew -af -af -af -af -af -af -af -af -af -af -ew -af -af -af -af -af -af -af -ew -af -af -af -Wd -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(43,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -un -af -af -af -af -af -af -af -af -VM -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -Se -pT -pT -pT -pT -pT -pT -pT -pT -pT -pT -bp -yW -yW -yW -yW -dB -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(44,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -SK -SK -SK -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(45,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -TE -Ae -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -SK -SK -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -SK -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(46,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -Uw -eX -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Iz -sM -sM -sM -sM -sM -sM -Ia -Zd -Zd -Vh -gi -gi -Qh -hg -sM -IK -SK -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(47,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -FH -gw -af -af -af -af -af -af -Wd -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ae -SK -NL -NL -NL -Jh -SK -SK -Jh -Jh -Jh -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -hk -eJ -WK -WK -WK -dQ -Zd -Zd -Zd -Wn -BW -lc -ui -EX -NS -sM -IK -Jh -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(48,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ae -SK -Jh -Jh -Jh -Jh -Jh -Ae -SK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Ae -Jh -NL -NL -NL -Jh -Jh -SK -SK -Jh -Jh -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -WK -WK -Kj -WK -gl -RY -aP -Zd -rX -MX -fg -Zd -Zd -Zd -sM -IK -Jh -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(49,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -kP -mQ -Va -kP -mQ -mQ -kP -kP -kP -Va -kP -mQ -mQ -kP -kP -mQ -mQ -kP -mQ -mQ -kP -mQ -mQ -kP -Yz -Yz -Yz -NL -NL -TE -NL -Yg -Yg -Yg -Yg -ki -ki -Yg -Yg -Yg -Yg -Yg -Yg -vq -Yg -Yg -Yg -Yg -Yg -Yg -Yg -ki -ki -Yg -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -be -wr -Bb -SJ -Vw -Vw -Vw -Rw -cn -iw -zS -Zd -xL -sM -sM -IK -Jh -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(50,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -kP -kP -Dp -KQ -XT -Kg -iz -Ws -Yu -Zk -Yl -XT -XT -XT -XT -XT -XT -XT -Ji -XT -XT -XT -XT -XT -UL -My -Ei -Yz -NL -NL -Ae -NL -Yg -vA -dE -DT -dM -bd -NE -nV -ZB -dE -NR -dE -hd -dE -dE -dE -dE -dE -fP -HY -ed -Bm -JW -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -be -Wj -ya -Pl -LO -LO -LO -lB -hR -MX -kZ -wZ -mv -sM -sM -IK -Jh -NL -TE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(51,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -SK -Jh -Jh -mQ -sX -cK -XT -XT -pf -Ns -Ns -Ns -rW -Ns -eF -IP -YD -bC -ms -Ns -Ns -Hk -Ns -Ns -Ns -Ns -Ns -KW -OX -Sz -Yz -Yz -NQ -ma -Yz -Yz -YJ -xT -xT -xT -xT -xT -xT -oM -xT -BZ -xT -IN -xi -dE -dE -Lo -dE -Sw -dE -dE -dE -dE -LS -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -be -jc -Ex -SJ -Vw -Vw -Vw -Zd -Rw -sa -Zd -PB -xL -sM -sM -IK -Jh -NL -Ae -NL -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(52,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -un -VM -un -af -af -af -kQ -kQ -HO -Jn -hD -RL -xI -Xl -RL -RL -RL -RL -RL -Xl -Xl -RL -zX -ZL -ZL -zX -wt -wt -zX -ZV -ZV -zX -Hm -Sz -Yz -Yb -Od -Fy -gc -NK -YO -FG -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Yg -LT -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Ii -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -hk -WK -WK -mh -WK -gl -Ir -Wg -Zd -ri -vX -Ww -UD -Zd -Zd -sM -IK -Jh -NL -Ae -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(53,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Uw -af -eX -Jh -Jh -hD -hD -nO -PV -MP -hD -zt -dL -xP -pN -pN -zp -cH -pN -nv -yY -zt -zX -At -qC -zX -At -qC -zX -At -qC -zX -uJ -Sz -yR -Ym -VR -GF -QS -rp -LD -FS -Yg -oW -CS -oW -oW -oW -Nd -oW -oW -oW -Ju -oW -oW -oW -oW -QF -oW -Wl -CS -Ii -Qu -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -mi -WK -WK -WK -dQ -Zd -Zd -Zd -AD -Qe -xf -RW -Ke -NS -sM -Di -af -af -eX -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(54,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -Ae -NL -Jh -Jh -hD -hD -cZ -il -il -Sp -hD -VD -JY -xP -pN -xP -hj -ey -pN -xP -kV -EH -zX -md -QK -zX -Co -QK -zX -he -QK -zX -bl -op -Yz -Fm -zw -IY -EI -Yz -Yd -cp -Yg -CS -Yw -uf -uf -uf -Mk -uf -uf -uf -zH -qP -qP -qP -qP -jL -qP -qP -IH -Ii -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -Iz -sM -sM -sM -sM -sM -sM -Ia -Zd -Zd -kz -gi -gi -vr -Zd -sM -IK -SK -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -"} -(55,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Ae -NL -Jh -hD -hD -FW -DY -XY -XY -LJ -hD -gj -fh -nX -rj -Jc -Ij -XI -pN -xP -xP -yY -zX -uU -zX -zX -NJ -zX -zX -lU -zX -zX -oI -Sz -Yz -yR -Yz -Yz -yR -Yz -GS -nw -Yz -oW -xd -oW -oW -oW -ZS -oW -oW -oW -hG -oW -oW -oW -oW -ZS -oW -Eu -NI -IO -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -dh -PT -PT -PT -PT -PT -PT -PT -et -YN -BA -YN -Hu -PT -PT -PT -En -Jh -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(56,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -un -VM -NL -un -eX -SK -SK -hD -Uc -il -il -WM -OF -il -hD -pN -XV -pN -pN -xP -hj -xP -pN -pN -pN -pN -yZ -KI -KI -GH -KI -oE -KI -KI -qx -zX -tp -eh -gA -sN -MR -VK -Zf -MR -fG -bP -Yz -oW -xd -oW -ad -ad -ad -ad -ad -ad -ad -ad -ad -qq -qq -qq -qq -qq -qq -GV -Ii -qz -qz -qz -qz -qz -qz -qz -qz -qz -qz -Ii -NL -NL -NL -NL -NL -NL -NL -NL -qL -ai -Mo -ai -qL -NL -NL -NL -Ae -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(57,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Go -af -af -eX -Jh -Jh -Jh -hD -Xv -Uq -og -og -Uq -il -hD -pN -XV -pN -pN -pN -NG -pN -pN -pN -pN -MZ -zX -DO -qg -Lm -Af -Bd -Am -yq -xv -HQ -Zp -Yk -RM -WQ -OX -Sz -cS -Hm -SD -SD -Yz -oW -xd -oW -ad -qn -bZ -Ze -UK -kw -lx -Oj -Ht -uB -Oe -HX -su -XX -qq -NN -Ii -Ii -Ii -Ii -Ii -Ii -Ii -Ii -eP -Ii -Ii -Ii -YN -ai -ai -YN -ai -ai -ai -YN -YN -YN -ss -YN -YN -NL -NL -NL -Ae -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(58,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ae -Jh -SK -Jh -Jh -Jh -Jh -SR -WL -Zn -DM -pk -WI -FY -hD -DC -lh -DC -DC -DC -DC -DC -DC -DC -DC -DC -oZ -oZ -oZ -oZ -oZ -oZ -oZ -oZ -oZ -zX -Yz -Yz -Yz -Yz -Yz -Cf -Yz -Yz -Yz -Yz -Yz -Xf -ob -BL -ad -jE -cm -Ze -kc -Ze -lE -hw -sK -zn -kF -Fv -Uf -GD -qq -lv -oV -Of -cu -Hd -HH -lm -Ii -YE -NT -ao -Ii -Og -JR -mX -mX -Nk -XC -Hg -KT -uk -KL -IR -Sn -UV -YN -NL -NL -NL -Ae -TE -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(59,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -ko -yd -NL -Jh -Jh -Jh -SK -SR -Sh -Zn -zQ -DM -WI -il -hD -ne -vF -qF -qF -qF -qF -qF -Cb -qF -qF -qF -qF -Cp -qF -qF -qF -Mv -qF -qF -qF -iQ -wa -oW -QF -oW -dT -hY -Wl -oW -QF -oW -oW -oW -xd -oW -ad -Ze -cW -gU -ks -qn -Ze -Ze -Ee -uB -uB -uB -xz -pW -qq -ck -kr -Rv -Rv -eN -Rv -iW -Tf -im -zI -qN -yF -la -Vc -ST -ST -ST -jV -TW -pC -PD -dw -Or -mb -Eg -hN -yW -yW -yW -tK -tK -yW -yW -yW -yW -yW -yW -dB -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(60,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -Jh -Jh -Jh -SK -SK -SR -qM -Uq -Pq -Pq -Uq -Xv -hD -zW -lj -qi -qi -qi -qi -qi -Xe -qi -qi -qi -qi -kO -qi -qi -qi -Xe -qi -qi -qi -qi -DD -rS -jT -rS -rS -Ft -Ig -Ig -Mk -Ig -Ig -Ig -Cz -gY -ad -Ze -cY -gW -Dy -gU -lH -qn -sK -zn -tW -zn -xB -pW -qq -Gf -Sf -pc -pc -Wx -Wx -WU -xW -yt -CP -It -oO -Zi -ek -Nq -Nq -BV -YN -qe -YN -vI -Nq -Nq -Nq -Tc -YN -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(61,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Jh -Ae -Jh -Jh -SK -SK -SK -hD -HR -qM -xb -Oo -Xv -Xv -hD -Hf -Ie -tV -qF -qF -qF -qF -sJ -qF -qF -qF -qF -Cp -qF -qF -qF -sJ -qF -qF -qF -qF -wa -oW -ZS -oW -oW -Pm -oW -oW -ZS -oW -oW -oW -Zl -oW -ad -QC -el -Ze -li -rs -mC -Dy -uv -EL -uw -OC -yc -Lh -qq -Cu -pc -pc -ER -ag -Qn -Qn -Ed -jP -pK -Mx -YN -YN -YN -ai -ai -YN -YN -CD -YN -YN -ai -ai -ai -YN -YN -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(62,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Jh -Ae -Jh -SK -SK -SK -Qp -Qp -Qp -Qp -Qp -Qp -Qp -Qp -Qp -qF -gG -qF -cb -cb -cb -cb -cb -cb -cb -zN -zN -zN -zN -zN -zN -WO -WO -WO -WO -WO -WO -nW -Oz -Oz -nW -nj -nW -Oz -Oz -nW -nW -sx -He -sx -ad -Ze -eC -Rd -Dy -ib -nm -qn -kb -zn -Bl -zn -yE -pW -qq -ME -UI -aX -ei -ah -RI -RI -Ed -wP -ZE -Kf -Ed -hf -sM -sM -sM -sM -YN -tR -YN -sM -sM -sM -sM -sM -hf -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(63,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Jh -gJ -af -af -af -eI -Qp -qp -qp -qp -qp -qp -qp -qp -Qp -Cp -CU -Cp -cb -YH -SB -Ha -BM -EE -cb -ub -hc -gL -UH -OD -zN -Jd -Mg -BY -rl -bj -WO -fd -Gg -eU -JZ -pp -Qi -qc -nF -LK -nW -nx -mg -nx -ad -Ze -eK -ib -lo -qQ -Sm -Sm -tL -zn -zn -zn -zY -DP -qq -XK -XK -XK -XK -XK -XK -XK -XK -Wf -tg -Mx -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(64,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -NL -Ae -TE -NL -Jh -fs -Xc -Dd -DH -YU -YU -YU -OP -ca -Qp -qF -gG -qF -cb -IC -Qf -hX -hX -JU -cb -XO -xS -BH -BH -tO -zN -Bq -xM -xY -xY -ka -WO -si -rL -eU -Lw -Bt -xZ -mr -gk -zE -Oz -nx -mg -nx -ad -jE -fk -Ze -lw -MO -nC -px -sK -zn -cc -iL -Aq -dy -oY -zD -RZ -uZ -TY -Xo -dn -CG -XK -cx -pK -Mx -Ed -SC -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(65,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -un -af -Hx -eX -Jh -Jh -CA -qp -qp -kU -qp -qp -qp -NF -qp -Qp -qF -gG -qF -cb -NO -Ud -EY -hX -GW -cb -UT -nH -gb -BH -dH -zN -Js -Ml -SA -xY -yI -WO -JE -lD -jm -Wt -hb -xZ -xZ -xZ -nz -Oz -Wp -XA -lY -ad -qn -gh -Ze -eo -qU -oA -pY -sl -zn -cO -vN -AS -dV -qq -TM -VW -nS -Fh -fb -Fh -Dh -XK -nZ -AY -Qx -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(66,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Ae -SK -Jh -Jh -Jh -Jh -CA -qp -qp -kU -qp -qp -qp -NF -qp -Qp -ba -Ie -tV -cb -gy -ZF -ns -fa -Vr -cb -Et -wq -dD -dY -MN -zN -EO -Lv -hu -hu -bO -WO -Yp -rL -eU -Lw -Xi -xZ -xZ -xZ -xZ -Oz -nx -jY -nx -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -Bj -xe -Fh -Fh -DL -GU -Ov -XK -Zj -Yc -tG -gM -BB -BB -VS -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(67,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -ko -yd -NL -Jh -Jh -Jh -CA -qp -qp -kU -qp -qp -qp -NF -qp -Qp -qF -gG -qF -cb -kl -AP -Ve -ve -vf -cb -Pe -pO -UB -Ba -mD -zN -FC -yC -dZ -jl -at -WO -Oy -bY -eU -Lw -Xi -xZ -zE -WD -nk -nW -nx -jY -Tx -sc -wS -gQ -iK -KH -KY -QG -eg -QG -QG -np -nM -uI -wS -sc -XK -XK -MJ -uQ -Qm -Nm -Iu -XK -lt -wg -Sl -Oq -Oq -Ky -TA -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(68,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -FH -ew -yd -NL -SK -SK -Qp -YU -YU -XH -Dd -Dd -Dd -OQ -Dd -Ta -ZZ -mm -sO -cb -Hs -Hs -jn -Hs -Hs -cb -GQ -GQ -Fg -GQ -GQ -zN -DV -dU -Tv -dU -dU -WO -gq -HB -HB -Zu -vh -rg -ea -Cd -SU -nW -zz -sz -RX -sc -bK -gS -iR -Rc -Qs -TK -Ga -eu -xh -kB -rZ -nd -sc -sc -Bk -XK -XK -XK -Ow -XK -XK -XK -CV -pK -Mx -Im -Im -Im -TA -Ed -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -Vz -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(69,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -Ae -Jh -Jh -Jh -CA -qp -qp -US -qp -qp -qp -Vm -qp -Qp -Hq -bn -tV -rc -po -aQ -BK -aQ -aQ -sf -jO -aQ -BK -aQ -jK -eL -wV -bE -bE -bE -aQ -QT -Gj -xy -Tm -Tm -PL -Gj -ab -QB -QB -QB -rc -aM -Wy -sc -Vs -Vs -Vs -TL -Ol -Ol -qv -Ol -Ol -rN -MV -Cn -sc -AZ -bM -Ru -VC -wA -cw -ZX -UO -VC -TJ -dF -Mx -oq -oq -oq -XZ -BR -JA -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(70,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Jh -Ae -Jh -Jh -Jh -CA -qp -qp -US -qp -qp -qp -Vm -UX -Qp -ne -bI -oX -vO -HW -xw -zb -tT -tT -tT -tT -zB -zb -tT -UG -wQ -EW -bE -bE -bE -aQ -bU -II -iy -Gj -Fr -Rl -Gj -ae -iV -iV -iV -vw -MF -AU -sc -bL -Vs -IQ -TL -Ol -oR -qA -HA -Ol -IU -IQ -gN -Jz -Pj -zi -Gh -JP -JQ -KS -Fe -ht -is -dj -vv -Ou -oq -oq -JS -Ed -Ed -Ed -Cx -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(71,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -Ae -Jh -Jh -Jh -CA -qp -qp -US -qp -qp -qp -Vm -qp -Qp -Hf -gO -qF -rc -tJ -aQ -xU -aQ -aQ -Aw -Lz -aQ -BK -aQ -SZ -Kw -iI -bE -bE -bE -aQ -QT -nt -iy -Nf -SQ -TF -Gj -TO -Vq -WH -yb -iE -vt -Ki -sc -Vs -Vs -Vs -TL -Ol -Ol -rB -Ol -Ol -mA -sr -HS -sc -AZ -rb -fv -VC -LC -zg -hK -tz -VC -PE -MC -Mx -oq -oq -oq -os -ou -QJ -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(72,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -FH -Rx -eX -NL -SK -SK -Qp -YU -YU -ja -oP -oP -oP -Fb -oP -dN -UA -Fj -gx -EJ -rx -rx -Bz -rx -rx -EJ -nP -nP -ev -nP -nP -uj -DV -dU -Tv -dU -dU -WO -in -bg -in -in -yJ -ZK -ZK -QE -WN -fS -zz -RT -RX -sc -TL -Vs -rZ -IQ -Jg -GP -GP -GP -GP -Zw -TI -lQ -sc -sc -Bs -XK -th -th -ci -th -th -th -pB -pK -Mx -Im -Im -Ko -TA -Ed -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -gB -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(73,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -un -eX -NL -Jh -Jh -Jh -CA -qp -qp -iN -qp -qp -qp -jC -qp -Qp -qF -mj -qF -EJ -To -pd -mI -OV -SP -EJ -pV -DI -BQ -Fc -Br -uj -PC -XJ -fT -rw -at -WO -AX -cP -Yv -in -xg -Rn -Rn -PJ -Rn -in -nx -XF -Tx -sc -wS -us -VG -NP -bs -Vs -IQ -wG -Vs -tq -ZN -TL -wS -sc -th -th -OS -Tr -Zm -iJ -nN -th -Ff -EF -xA -cs -cs -cA -TA -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(74,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Ae -SK -Jh -Jh -Jh -Jh -CA -qp -qp -iN -qp -qp -qp -jC -qp -Qp -Hf -mp -tV -EJ -Xa -XG -YQ -yB -AE -EJ -YC -sA -MG -bx -KG -uj -Po -zo -hu -hu -bO -WO -CR -An -eD -in -Qo -ye -Uk -ij -Tj -in -nx -XF -nx -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -sc -SL -Tr -wN -wN -bQ -zM -PW -th -Zj -Yc -tG -gM -BB -BB -yj -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(75,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -ko -af -mM -yd -Jh -Jh -CA -qp -qp -iN -qp -qp -qp -jC -qp -Qp -qF -mj -qF -EJ -VE -PR -hp -vi -Tp -EJ -Xm -ol -mO -tZ -Gi -uj -pm -gE -Wq -xY -yI -WO -ky -Ms -kT -yM -MI -iP -rA -DN -YL -in -Wp -HZ -lY -sc -wS -KM -dS -MK -Wi -sc -vT -QI -yV -oN -uc -ty -Az -th -lu -wN -Ds -qK -FU -qd -Lx -th -nZ -oy -Qx -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(76,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -NL -Ae -Op -NL -Jh -Qp -qp -qp -iN -qp -qp -qp -jC -qp -Qp -qF -mj -qF -EJ -lk -Gl -vi -vi -FM -EJ -Jv -Ot -tZ -tZ -uV -uj -Bq -WW -xY -xY -ka -WO -Tl -Wa -wY -in -fO -yo -yo -yo -aK -in -nx -Zt -nx -sc -pA -aj -Dw -Ce -Ce -VQ -an -an -an -kX -eS -QL -eS -sb -oT -HN -Kx -pS -yp -nN -nN -th -ys -pK -Mx -Ed -SC -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(77,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Jh -Ae -NL -NL -NL -Qp -Qp -bV -eV -qp -qp -qp -gg -qp -Qp -Cp -na -Cp -EJ -oD -GR -VB -Jj -FO -EJ -jM -gs -zv -hU -sC -uj -OK -Aj -SE -Hv -bj -WO -jD -kN -jh -in -zm -Il -do -aH -qZ -in -nx -Zt -nx -sc -wS -tn -lP -st -tX -sc -KU -bW -JO -vS -JJ -NW -WX -th -th -th -th -th -th -th -th -th -Hw -pK -Mx -Ed -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(78,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Jh -Ae -Jh -SK -SK -SK -Qp -Jx -am -Jx -Jx -Jx -Jx -Jx -Jx -qF -mj -qF -EJ -EJ -EJ -EJ -EJ -EJ -EJ -uj -uj -uj -uj -uj -uj -WO -WO -WO -WO -WO -WO -in -in -in -in -Tk -Rn -Rn -in -in -in -sx -bT -sx -sc -sc -sc -sc -sc -sc -sc -Xr -sI -wv -CT -RQ -Sk -hF -th -qX -nL -Gv -kt -ak -RI -RI -Ed -Uy -Pc -PA -Ed -Oc -sM -sM -sM -sM -uq -Vo -uq -sM -sM -sM -sM -sM -Oc -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(79,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Jh -Ae -Jh -Jh -SK -SK -SK -Jx -mR -aS -pE -Ib -Sb -WF -Jx -Hf -mp -tV -qF -qF -qF -qF -IV -qF -qF -qF -qF -Oa -qF -qF -qF -IV -qF -qF -qF -qF -aJ -ow -OE -ow -ow -Nh -ow -ow -OE -ow -ow -ow -CJ -ie -th -ep -Mp -Uj -Hc -Tn -qO -HT -lL -HT -IG -Ax -th -th -th -SF -pc -pc -ER -ag -YK -YK -Ed -jP -pK -Mx -uq -uq -uq -jg -jg -uq -uq -rr -uq -uq -jg -jg -jg -uq -uq -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(80,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -Jh -Jh -Jh -SK -SK -ZQ -mR -aS -Sb -eR -Sb -Ay -Jx -zW -Cw -sd -sd -sd -sd -sd -wy -sd -sd -sd -sd -Df -sd -sd -sd -wy -sd -sd -sd -sd -Rj -FL -aN -FL -FL -OI -eY -eY -WG -eY -eY -eY -hP -sn -pX -Lb -JK -fM -Ty -gH -th -Ax -th -th -ct -th -De -Le -TB -IZ -IZ -IZ -IZ -YR -YR -xO -gV -YA -MU -vG -BJ -LI -kW -Kb -Kb -mq -uq -nB -uq -Ni -Kb -Kb -Kb -Kv -uq -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(81,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -un -eX -NL -Jh -Jh -Jh -SK -ZQ -mR -aS -Sb -bJ -Sb -aD -Jx -ne -gm -qF -qF -qF -qF -qF -ID -qF -qF -qF -qF -Cp -qF -qF -qF -KF -qF -qF -qF -hC -aJ -ow -wc -ow -yP -Ks -RG -ow -ZC -ow -ow -ow -CJ -ow -Gk -Gk -Gk -Gk -Gk -Gk -Gk -Gk -Gk -sQ -uT -wo -yH -jP -BC -en -en -en -en -cq -lJ -pb -GE -VN -Cy -SN -mo -pG -QZ -fW -fW -fW -ex -Ny -XD -df -sP -ZH -vo -Nx -HP -nh -nh -nh -GT -GT -nh -nh -nh -nh -nh -nh -FI -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(82,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ae -Jh -SK -Jh -Jh -Jh -Jh -ZQ -Vi -pq -Ai -HV -Sb -aD -Jx -dx -qW -dx -dx -dx -dx -dx -dx -dx -dx -dx -dx -Ec -Ec -Ec -Ec -Ec -XB -XB -XB -Bp -me -me -me -me -me -Pd -me -me -me -me -me -xR -fE -eQ -Gk -dE -dE -dE -dE -dE -dE -dE -Gk -Ge -vb -xj -yH -WZ -LP -zy -PX -IW -RN -sU -EN -dr -Ed -Hi -Be -aG -uq -cy -Jo -vJ -vJ -vP -oU -hZ -xC -pl -lC -Dn -tb -LQ -uq -NL -NL -NL -Ae -Op -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(83,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -vQ -af -af -yd -Jh -Jh -Jh -Jx -qs -aS -Sb -tF -Sb -Nz -Jx -ap -sR -FE -Ef -Ub -Yj -Yj -Ef -FE -Ps -eE -dx -ch -lV -zF -NZ -Ec -hO -Gm -yi -BF -Ev -Io -ut -Ts -Io -QP -xH -OG -mT -Yx -me -ow -CJ -ow -Gk -dE -dE -dE -dE -dE -dE -dE -Gk -tQ -Vt -wd -yH -Ed -Cc -Ed -aA -aA -aA -aA -Ro -OU -OU -OU -XE -OU -OU -OU -uq -jg -jg -uq -jg -jg -jg -uq -uq -uq -NX -uq -uq -NL -NL -NL -Ae -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(84,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -ko -VM -NL -ko -yd -SK -SK -Jx -pL -KV -Sb -tF -Sb -AQ -Jx -FE -sR -FE -Ef -GB -Yj -Yj -Ef -FE -FE -uE -dx -ku -mF -Vk -zC -Ec -hr -al -ii -Bp -OM -bS -DZ -WA -WA -nu -WA -AH -zL -xH -me -ow -CJ -ow -Gk -Gk -Gk -Gk -Gk -Gk -MA -sZ -sZ -OA -OA -OA -cz -ow -ok -ow -aA -yw -bb -Ob -tH -OU -iC -iC -Nc -iC -iC -OU -NL -NL -NL -NL -NL -NL -NL -NL -Wu -jg -wm -jg -Wu -NL -NL -NL -Ae -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(85,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Ae -NL -Jh -Jx -Jx -LV -Sb -xN -Sb -aS -Jx -Td -TS -YB -hz -hz -Vx -ac -Ef -FE -FE -UF -dx -uM -xp -xo -Jm -Ec -kp -bm -ii -Bp -rH -oC -me -aB -me -Ug -aB -me -hE -yf -me -ow -CJ -ow -ow -ow -OE -ow -ow -Lf -CH -ow -ow -ow -ow -OE -ow -ow -ok -ow -aA -wK -za -fz -jd -OU -rh -rh -uW -rh -rh -OU -Se -pT -pT -pT -pT -pT -pT -pT -iZ -uq -yS -uq -qE -pT -pT -pT -kk -Jh -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(86,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -Ae -NL -Jh -Jh -Jx -Jx -sj -Ti -Nj -GJ -Jx -fD -sR -FE -Ef -Ef -ir -Ef -Ef -FE -Rg -FE -dx -Mr -Pp -ip -fj -Ec -RE -bh -RE -me -br -qf -me -dk -Ys -Hh -eb -tC -Rq -KJ -by -Pa -wR -Yy -Yy -Yy -kj -Yy -Yy -Yy -Ap -mS -mS -mS -mS -db -mS -mS -Rz -Vp -aA -RH -rn -FR -wW -OU -zJ -CY -cI -CY -kY -OU -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -SK -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(87,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -EV -af -yd -Jh -Jh -Jx -Jx -Mc -aS -em -Jx -Ue -sR -FE -Ef -Yj -OR -lA -Ef -FE -FE -ov -dx -Du -Xb -QW -DW -IS -bB -HL -bB -bB -bB -pt -aB -Mw -hy -ON -Xd -Ja -Ly -KJ -by -ow -Pa -ow -ow -ow -ZC -ow -ow -ow -uX -ow -ow -ow -ow -OY -yP -ow -ZM -ow -aA -ej -za -fz -Jk -OU -rm -uz -Eh -mn -Av -OU -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -vE -sM -sM -sM -sM -sM -UR -af -af -yd -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(88,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -ko -VM -ko -af -af -af -Kr -Rh -Jx -du -Jx -EZ -yy -FD -EZ -EZ -EZ -EZ -EZ -EZ -FD -FD -EZ -CC -jy -jy -CC -CC -Vg -Vg -RE -RE -xH -DE -me -od -wM -SV -LR -me -tk -qS -by -by -by -by -by -by -by -by -by -by -Bg -by -by -by -by -by -by -by -ff -by -aA -nr -lT -gR -Px -OU -zr -zr -Vb -zr -zr -OU -hk -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -Ae -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(89,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -SK -Jh -Jh -Vg -ym -QV -cL -zf -ul -zf -zf -zf -Ri -tc -DQ -DQ -DQ -DQ -DQ -UU -DQ -DQ -DQ -DQ -DQ -DQ -DQ -ez -xH -DE -me -me -xu -nf -me -me -Gq -ET -ET -uY -uY -As -if -mK -if -AT -if -if -Ne -iS -jo -Kz -Dk -qY -AK -Ld -KD -vy -aA -aA -aA -aA -aA -OU -oS -oS -Mi -oS -oS -OU -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -Ae -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(90,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -RE -RE -Kq -TP -DQ -DQ -DQ -DQ -DQ -WB -TP -DQ -DQ -DQ -DQ -DQ -DQ -Mu -zA -Ln -Ln -Ln -Ln -Ln -RK -hB -In -me -NL -NL -qy -NL -by -Li -KJ -le -ww -ww -MB -Kt -iv -KJ -UQ -KJ -HF -nD -BG -LY -LY -LY -Gc -lF -Wr -MW -LY -pz -aw -aw -zV -jp -OU -OU -OU -OU -OU -OU -OU -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -Ae -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(91,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -RE -Vg -hT -RE -Vg -Vg -RE -RE -RE -hT -RE -RE -Vg -Vg -RE -RE -RE -RE -RE -RE -Vg -Vg -RE -RE -me -me -me -NL -NL -we -NL -by -by -by -by -CK -CK -by -by -by -by -by -by -ur -by -by -by -by -by -by -by -CK -CK -by -hQ -lq -lq -rq -lq -lq -NU -lq -lq -lq -Kk -hQ -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -Op -NL -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(92,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -qy -SK -Jh -Jh -Jh -Jh -Jh -qy -SK -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -SK -Ae -Jh -NL -NL -NL -Jh -Jh -SK -SK -Jh -Jh -hQ -lq -lq -rq -lq -aa -Bn -lq -lq -Yo -MH -hQ -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(93,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -qb -Ox -xm -xm -xm -xm -xm -xm -TV -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Ae -SK -NL -NL -NL -Jh -SK -SK -Jh -Jh -Jh -hQ -uD -Qv -Al -VZ -tu -lq -nT -xE -YS -Ho -hQ -hk -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(94,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -uH -OJ -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -hQ -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -SK -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(95,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -we -qy -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -SK -SK -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -SK -NL -NL -NL -Jh -Jh -zk -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(96,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -qy -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -SK -SK -SK -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Iz -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -sM -IK -Jh -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(97,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -EU -xm -xm -xm -xm -xm -xm -xm -xm -iY -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -dh -PT -PT -PT -PT -PT -PT -PT -PT -PT -PT -va -nh -nh -nh -nh -FI -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(98,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -un -af -Rx -af -af -af -af -af -ew -af -Rx -af -af -af -af -af -af -af -af -Rx -af -af -af -af -af -af -af -af -af -af -Rx -af -af -af -af -af -af -af -Rx -af -af -af -LW -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(99,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -zk -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -Ae -NL -Op -NL -NL -NL -NL -NL -NL -NL -Op -NL -NL -NL -NL -NL -NL -NL -NL -Op -NL -SK -SK -SK -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -ko -af -af -af -af -af -yd -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(100,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -FH -af -af -af -eX -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -NL -Ae -NL -NL -NL -NL -NL -NL -Jh -Jh -NL -Ae -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(101,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -Op -NL -NL -NL -NL -NL -NL -NL -Op -NL -NL -NL -NL -NL -SK -SK -NL -NL -Op -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(102,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -zk -Jh -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -NL -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(103,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(104,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -sE -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(105,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(106,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(107,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(108,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(109,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(110,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(111,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(112,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(113,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(114,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(115,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(116,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -El -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(117,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(118,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(119,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(120,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Lr -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(121,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(122,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(123,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(124,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(125,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(126,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(127,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(128,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(129,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(130,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(131,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(132,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(133,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(134,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(135,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(136,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(137,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(138,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(139,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -"} -(140,1,1) = {" -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh -Jh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLJhNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhNLNLNLSKSKSKunAekoFHNLSKNLFHunAekoSKSKSKNLNLNLJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLunGoAekoNLJhJhJhNLafSKydewNLJhNLRxeXSKafNLJhJhJhNLunAevQkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLVMafJhydAeAeAegJAeHxJhNLydAeAeAeeXNLJhmMAeAeAeAeAeeXJhafVMNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafSKNLJhJhJhafTEeXJhJhNLJhJhJhNLJhJhydOpNLJhJhJhNLSKafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLuneXJhJhJhJhSKafNLJhJhJhSKJhJhJhSKJhJhJhNLNLSKJhJhJhJhydkoNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLunUwAeAeeXJhJhJhJhSKSKafJhJhJhJhSKJhJhJhSKJhJhJhJhNLSKSKJhJhJhJhydAeAeEVkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLVMafNLNLSKJhJhJhSKSKSKeIfsCACACAQpCACACAQpCACACAQpQpSKSKSKJhJhJhSKNLNLafVMNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLuneXJhJhSKJhJhSKSKSKQpQpXcqpqpqpYUqpqpqpYUqpqpqpqpQpQpSKSKSKJhJhSKJhJhydkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLafJhJhhDhDhDSRSRSRhDQpqpDdqpqpqpYUqpqpqpYUqpqpqpqpbVJxJxZQZQZQJxJxJxJhJhafNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafJhhDhDUcXvWLShqMHRQpqpDHkUkUkUXHUSUSUSjaiNiNiNiNeVammRmRmRViqspLJxJxJhafSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafhDhDFWilUqZnZnUqqMQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxaSaSaSpqaSKVLVJxJxafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkQhDcZDYilogDMzQPqxbQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxpESbSbAiSbSbSbsjJxKrJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPmQkQnOilXYWMogpkDMPqOoQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxIbeRbJHVtFtFxNTiMcRhVgREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPkPsXHOPVilXYOFUqWIWIUqXvQpqpOPNFNFNFOQVmVmVmFbjCjCjCjCggJxSbSbSbSbSbSbSbNjaSJxymREREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFHJhmQDpcKJnMPSpLJililFYilXvXvQpqpcaqpqpqpDdqpUXqpoPqpqpqpqpqpJxWFAyaDaDNzAQaSGJemduQVKqVgJhqbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLgwAeVaKQXThDhDhDhDhDhDhDhDhDhDQpQpQpQpQpQpTaQpQpQpdNQpQpQpQpQpJxJxJxJxJxJxJxJxJxJxJxcLTPhTqyOxNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhNLNLafSKkPXTXTRLztVDgjpNpNDCnezWHfqFCpqFqFbaqFZZHqneHfUAqFHfqFqFCpqFHfzWnedxapFETdfDUeEZzfDQRESKxmNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafJhmQKgpfxIdLJYfhXVXVlhvFljIegGCUgGgGIegGmmbnbIgOFjmjmpmjmjnamjmpCwgmqWsRsRTSsRsRyyulDQVgJhxmNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhmQizNsXlxPxPnXpNpNDCqFqitVqFCpqFqFtVqFsOtVoXqFaqqFtVqFqFCpqFtVsdqFdxFEFEYBFEFEFDzfDQVgJhxmNLNLNLNLJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPWsNsRLpNpNrjpNpNDCqFqiqFcbcbcbcbcbcbcbrcvOrcEJEJEJEJEJEJEJqFsdqFdxEfEfhzEfEfEZzfDQREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPYuNsRLpNxPJcxPpNDCqFqiqFcbYHICNOgyklHspoHWtJrxToXaVElkoDEJqFsdqFdxUbGBhzEfYjEZzfDQREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPZkrWRLzphjIjhjNGDCqFqiqFcbSBQfUdZFAPHsaQxwaQrxpdXGPRGlGREJqFsdqFdxYjYjVxirOREZRiWBREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLTEUwWdAeVaYlNsRLcHeyXIxPpNDCqFqiqFcbHahXEYnsVejnBKzbxUBzmIYQhpviVBEJqFsdqFdxYjYjacEflAEZtcTPhTqyTVuHweNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhunAeAeeXNLSKkPXTeFRLpNpNpNpNpNDCCbXesJcbBMhXhXfaarHsaQtTaQrxasyBviviJjEJIVwyIDdxEfEfEfEfEfEZDQDQRESKNLOJqyqyEUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLNLJhmQXTIPXlnvxPxPpNpNDCqFqiqFcbEEJUGWVrvfHsaQtTaQrxSPAETpFMFOEJqFsdqFdxFEFEFEFEFEEZDQDQREJhNLNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLJhJhmQXTYDXlyYkVxPpNpNDCqFqiqFcbcbcbcbcbcbcbsftTAwEJEJEJEJEJEJEJqFsdqFdxPsFEFERgFEFDDQDQVgJhJhNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLJhJhkPXTbCRLztEHyYpNMZDCqFqiqFzNubXOUTEtPeGQjOtTLznPpVYCXmJvjMujqFsdqFdxeEuEUFFEovFDDQDQVgJhJhNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLJhJhJhkPXTmszXzXzXzXyZzXoZqFqiqFzNhcxSnHwqpOGQaQzBaQnPDIsAolOtgsujqFsdqFdxdxdxdxdxdxEZDQDQREJhJhJhNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLJhJhJhmQXTNsZLAtmduUKIDOoZCpkOCpzNgLBHgbdDUBFgBKzbBKevBQMGmOtZzvujOaDfCpEcchkuuMMrDuCCUUDQREJhJhJhNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhmQXTNsZLqCQKzXKIqgoZqFqiqFzNUHBHBHdYauGQaQtTaQnPavbxtZtZhUujqFsdqFEclVmFxpPpXbjyDQMuREJhJhJhJhNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhkPJiHkzXzXzXzXGHLmoZqFqiqFzNODtOdHMNmDGQjKUGSZnPBrKGGiuVsCujqFsdqFEczFVkxoipQWjyDQzAREJhJhJhJhNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafJhJhJhJhJhmQXTNswtAtCoNJKIAfoZqFqiqFzNzNzNzNzNzNzNeLwQKwujujujujujujujqFsdqFEcNZzCJmfjDWCCDQLnREJhJhJhJhJhxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVMJhJhJhJhJhmQXTNswtqCQKzXoEBdoZMvXesJWOJdBqJsEOFCDVwVEWiIDVPCPopmBqOKWOIVwyKFEcEcEcEcEcISCCDQLnREJhJhJhJhJhiYJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPXTNszXzXzXzXKIAmoZqFqiqFWOMgxMMlLvyCdUbEbEbEdUXJzogEWWAjWOqFsdqFXBhOhrkpREbBVgDQLnVgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmQXTNsZVAthelUKIyqoZqFqiqFWOBYxYSAhudZTvbEbEbETvfThuWqxYSEWOqFsdqFXBGmalbmbhHLVgDQLnVgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmQXTNsZVqCQKzXqxxvoZqFqiqFWOrlxYxYhuaxdUbEbEbEdUayhuxYxYHvWOqFsdqFXByiiiiiREbBREDQLnREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPULKWzXzXzXzXzXHQzXiQqiqFWObjkayIbOatdUaQaQaQdUatbOyIkabjWOqFsdhCBpBFBpBpmebBREezRKREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzMyOXHmuJbloItpZpYzwaDDwaWOWOWOWOWOWOWOQTbUQTWOWOWOWOWOWOWOaJRjaJmeEvOMrHbrbBxHxHhBmeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzEiSzSzSzopSzehYkYzoWrSoWnWfdsiJEYpOygqGjIIntinAXCRazTljDinowFLowmeIobSoCqfptDEDEInmeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzYzYzYzyRYzYzgARMYzQFjTZSOzGgrLlDrLbYHBxyiyiybgcPAnMsWakNinOEaNwcmeutDZmemeaBmemememeJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLrJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhNLNLYzYbYmFmyRsNWQYzoWrSoWOzeUeUjmeUeUHBTmGjNfinYveDkTwYjhinowFLowmeTsWAaBdkMwodmeNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNQOdVRzwYzMROXYzdTrSoWnWJZLwWtLwLwZuTmFrSQinininyMinininowFLyPmeIoWAmeYshywMxuNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTEAemaFyGFIYYzVKSzCfhYFtPmnjppBthbXiXivhPLRlTFyJxgQoMIfOzmTkNhOIKsPdQPnuUgHhONSVnfqyweJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLYzgcQSEIyRZfcSYzWlIgoWnWQixZxZxZxZrgGjGjGjZKRnyeiPyoIlRnoweYRGmexHWAaBebXdLRmeNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFHJhJhJhJhJhJhJhJhYgYgYzNKrpYzYzMRHmYzoWIgoWOzqcmrxZxZzEeaabaeTOZKRnUkrAyodoRnoweYowmeOGAHmetCJamemebybyJhJhJhJhJhJhJhJhFHJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafJhJhJhJhJhJhJhJhYgvAYJYOLDYdGSfGSDYzQFMkZSOznFgkxZxZWDCdQBiVVqQEPJijDNyoaHinOEWGZCmemTzLhERqLytkGqLibyJhJhJhJhJhJhJhJhafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhJhJhJhYgdExTFGFScpnwbPSDYzoWIgoWnWLKzEnzxZnkSUQBiVWHWNRnTjYLaKqZinoweYowmeYxxHyfKJKJqSETKJbyJhJhJhJhJhJhJhNLafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhJhJhJhYgDTxTYgYgYgYzYzYzYzoWIgoWnWnWOzOzOznWnWQBiVybfSininininininoweYowmemememebybybyETlebyJhJhJhJhJhJhJhNLafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhydAekoJhJhJhJhJhJhkidMxTYgoWCSoWoWoWXfoWIgoWsxnxnxWpnxnxzzrcvwiEzznxnxWpnxnxsxoweYowxRowowowPaowbyuYwwCKJhJhJhJhJhJhunAeeXJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafJhJhJhJhJhJhkibdxTYgCSYwxdxdxdobxdCzZlHemgmgXAjYjYszaMMFvtRTXFXFHZZtZtbTCJhPCJfECJCJCJwRaCbyuYwwCKJhJhJhJhJhJhafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEewNLJhJhJhJhJhYgNExTYgoWufoWoWoWBLoWaEoWsxnxnxlYnxTxRXWyAUKiRXTxnxlYnxnxsxowsnoweQowowowYyowbyAsMBbyJhJhJhJhJhNLRxOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLJhJhJhJhJhYgnVxTYgoWufoWadadadadadadadadadadscscscscscscscscscscscscscthpXGkGkGkGkowYyowbyifKtbyJhJhJhJhJhNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLNLJhJhJhJhYgZBoMYgoWufoWadqnjEZeZeQCZeZejEqnscwSbKVsbLVsTLwSscwSpAwSscepLbGkdEdEGkowYyowbymKivbyJhJhJhJhNLNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLJhJhJhJhYgdExTYgNdMkZSadbZcmcWcYeleCeKfkghscgQgSVsVsVsVsusscKMajtnscMpJKGkdEdEGkOEkjZCbyifKJbyJhJhJhJhNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLJhJhJhYgNRBZYgoWufoWadZeZegUgWZeRdibZeZesciKiRVsIQVsrZVGscdSDwlPscUjfMGkdEdEGkowYyowbyATUQbyJhJhJhNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhSKYgdExTYgoWufoWadUKkcksDyliDylolweoscKHRcTLTLTLIQNPscMKCestscHcTyGkdEdEGkowYyowbyifKJbySKJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLRxAeAeAeAeAeAevqhdINYgoWufoWadkwZeqngUrsibqQMOqUscKYQsOlOlOlJgbsscWiCetXscTngHGkdEdEGkLfYyowbyifHFurAeAeAeAeAeAeewNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLSKJhYgdExiLTJuzHhGadlxlEZelHmCnmSmnCoAscQGTKOloROlGPVsscscVQscscqOthGkdEdEMACHApuXBgNenDbyJhSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLTEewNLNLNLNLNLNLYgdEdEYgoWqPoWadOjhwZeqnDyqnSmpxpYscegGaqvqArBGPIQscvTanKUXrHTAxGkdEdEsZowmSowbyiSBGbyNLNLNLNLNLNLRxOpNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLNLNLYgdEdEYgoWqPoWadHtsKEesKuvkbtLsKslscQGeuOlHAOlGPwGscQIanbWsIlLthGkGkGksZowmSowbyjoLYbyNLNLNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLNLNLYgdELoYgoWqPoWqquBznuBznELznznznznscQGxhOlOlOlGPVsscyVanJOwvHTthsQGetQOAowmSowbyKzLYbyNLNLNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhJhYgdEdEYgoWqPoWqqOekFuBtWuwBlzncccOscnpkBrNIUmAZwtqscoNkXvSCTIGctuTvbVtOAowmSowbyDkLYbyJhJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhNLNLNLNLafNLNLNLNLSKJhYgfPSwYgQFjLZSqqHXFvuBznOCznzniLvNscnMrZMVIQsrTIZNscuceSJJRQAxthwoxjwdOAOEdbOYbyqYGcbyJhSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLSKSKYgHYdEYgoWqPoWqqsuUfxzxBycyEzYAqASscuIndCngNHSlQTLsctyQLNWSkthDeyHyHyHczowmSyPbyAKlFbySKSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhSKkieddEYgWlqPEuqqXXGDpWpWLhpWDPdydVscwSscscJzscscwSscAzeSWXhFthLejPWZEdowowmSowbyLdWrCKSKJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLJhJhJhkiBmdEYgCSIHNIqqqqqqqqqqqqqqqqoYqqscscscAZPjAZscscscthsbthththTBBCLPCcokokRzZMffKDMWCKJhJhJhNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLSKSKJhJhJhYgJWdEIiIiIiIOaFNNlvckGfCuMEXKzDTMBjXKBkbMzirbBsthSLluoTthqXSFIZenzyEdowowVpowbyvyLYbyJhJhJhSKSKNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEewJhSKSKIiIiIiIiIiLSIiQuIiIiIiIioVkrSfpcUIXKRZVWxeXKXKRuGhfvXKthTrwNHNthnLpcIZenPXaAaAaAaAaAaAaApzhQhQhQhQSKSKJhRxOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafJhSKNLIiqzqzqzqzqzqzqzqzqzqzIiOfRvpcpcaXXKuZnSFhMJXKVCJPVCthOSwNDsKxthGvpcIZenIWaAywwKRHejnraAawlqlquDhQNLSKJhafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLSKafJhNLNLIiqzqzqzqzqzqzqzqzqzqzIicuRvpcEReiXKTYFhFhuQXKwAJQLCthTrwNqKpSthktERIZenRNaAbbzarnzalTaAawlqlqQvhQNLNLJhafSKNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiHdeNWxagahXKXofbDLQmOwcwKSzgciZmbQFUypthakagYRcqsUaAObfzFRfzgRaAzVrqrqAlhQNLNLNLafSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiHHRvWxQnRIXKdnFhGUNmXKZXFehKthiJzMqdnNthRIYKYRlJENRotHjdwWJkPxaAjplqlqVZhQNLNLNLafSKJhJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIilmiWWUQnRIXKCGDhOvIuXKUOhttzthnNPWLxnNthRIYKxOpbdrOUOUOUOUOUOUOUOUlqaatuhQNLNLNLafNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiIiTfxWEdEdXKXKXKXKXKXKVCisVCththththththEdEdgVGEEdOUiCrhzJrmzroSOUNUBnlqhQNLNLNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiYEimytjPwPWfcxnZZjltCVTJdjPEpBFfZjnZysHwUyjPYAVNHiOUiCrhCYuzzroSOUlqlqnThQNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzePNTzICPpKZEtgpKAYYcwgpKdFvvMCpKEFYcoypKpKPcpKMUCyBeXENcuWcIEhVbMiOUlqlqxEhQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiaoqNItMxKfMxMxQxtGSlMxMxOuMxMxxAtGQxMxMxPAMxvGSNaGOUiCrhCYmnzroSOUlqYoYShQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiIiyFoOYNEdEdEdEdgMOqImoqoqoqImcsgMEdEdEdEduqBJmouqOUiCrhkYAvzroSOUKkMHHohQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeAeewNLNLNLIiIiIiIiIiIiIiIiIiIiIiIiOglaZiYNhfsMSCsMBBOqImoqoqoqImcsBBsMSCsMOcuqLIpGcyOUOUOUOUOUOUOUOUhQhQhQhQNLNLNLRxAeAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafSeIzIzIzhkIzIzIzIzhkIzIzdhNLYNJRVcekYNsMsMsMsMBBKyImoqJSoqKocABBsMsMsMsMuqkWQZJouqNLSeIzIzhkIzIzIzIzhkIzIzIzdhafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMeJWKbebebeWKmisMPTNLaimXSTNqaisMsMsMsMVSTATAXZEdosTATAyjsMsMsMsMjgKbfWvJjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKWKwrWjjcWKWKsMPTNLaimXSTNqaisMsMsMsMsMsMEdBREdouEdsMsMsMsMsMsMjgKbfWvJjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKKjBbyaExmhWKsMPTNLYNNkSTBVYNsMsMsMsMsMsMEdJAEdQJEdsMsMsMsMsMsMuqmqfWvPuqNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKWKSJPlSJWKWKsMPTNLaiXCjVYNYNYNsMsMsMsMsMsMsMCxsMsMsMsMsMsMsMuququqexoUjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhEsJhNLNLNLNLafpTsMsMsMdQglVwLOVwgldQsMPTNLaiHgTWqeCDtRsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMVorrnBNyhZjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhsEJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMZdRYVwLOVwIrZdsMPTNLaiKTpCYNYNYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuququqXDxCjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeAeewpTsMsMIaZdaPVwLOVwWgZdIaPTNLYNukPDvIYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuqNidfpluqNLpTsMsMsMsMsMsMsMsMsMsMsMPTRxAeAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMZdZdZdRwlBZdZdZdZdetqLYNKLdwNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbsPlCuqWuiZsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMZdWnrXcnhRRwriADZdYNaiYNIROrNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbZHDnuqjguqsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMVhBWMXiwMXsavXQekzBAMossSnmbNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbvotbNXwmySsMvEsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLunWdbpsMsMgilcfgzSkZZdWwxfgiYNaiYNUVEgTcYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuqKvNxLQuqjguqsMsMsMsMsMsMsMsMsMsMsMvaLWkoNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLyWsMsMgiuiZdZdwZPBUDRWgiHuqLYNYNhNYNYNhfsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMOcuquqHPuquqWuqEsMsMsMsMsMsMsMsMsMsMsMnhNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKNLafNLyWsMsMQhEXZdxLmvxLZdKevrPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafNLSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLSKJhafNLyWsMsMhgNSZdsMsMsMZdNSZdPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafJhSKNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhafNLyWsMsMsMsMsMsMsMsMsMsMsMPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafJhdBIKIKIKIKIKIKIKIKIKDiIKEnAeAeAetKsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMGTAeAeAekkIKURIKIKIKIKIKIKIKIKIKFIJhafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeeXJhJhJhSKSKJhJhJhJhJhJhafSKJhJhNLTEtKsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMGTOpNLJhJhSKafJhJhJhJhJhJhSKSKJhJhJhydAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLJhJhNLNLNLNLNLNLNLNLNLafNLNLJhNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLJhNLNLafNLNLNLNLNLNLNLNLNLJhJhNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhNLNLNLNLNLNLTEAeAeeXNLNLJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhNLNLydAeAeAeOpNLNLNLNLNLJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhNLNLNLNLNLNLNLNLNLNLJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhNLNLNLNLNLNLNLNLNLNLJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhdBIKIKIKIKIKIKIKIKVzIKIKIKgBIKIKIKIKIKIKIKIKFIJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +COJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +TeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh "}