-
Notifications
You must be signed in to change notification settings - Fork 7
/
ss13h.dmp
2782 lines (2774 loc) · 420 KB
/
ss13h.dmp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"aa" = (/turf/space,/area)
"ab" = (/obj/grille,/turf/station/floor,/area)
"ac" = (/obj/item/weapon/tank/oxygentank,/turf/space,/area)
"ad" = (/obj/machinery/power/solar{id = 2},/turf/station/floor,/area)
"ae" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"af" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"ag" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"ah" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"ai" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"aj" = (/obj/grille,/turf/station/floor,/area/engine)
"ak" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "6"},/obj/lattice,/turf/space,/area/engine)
"al" = (/obj/machinery/pipes/heat_exch,/obj/lattice,/turf/space,/area/engine)
"am" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "10"},/obj/lattice,/turf/space,/area/engine)
"an" = (/turf/station/r_wall,/area/engine)
"ao" = (/turf/station/wall,/area)
"ap" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/engine_access)
"aq" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/engine_access)
"ar" = (/obj/machinery/door/airlock{access = "2000"},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/engine_access)
"as" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine_access)
"at" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/engine_access)
"au" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "5"},/obj/lattice,/turf/space,/area/engine)
"av" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/obj/lattice,/turf/space,/area/engine)
"aw" = (/obj/move/airtunnel/connector/wall,/turf/space,/area/airtunnel1)
"ax" = (/obj/machinery/camera{dir = 4; c_tag = "Northern Airlock"},/obj/machinery/at_indicator{pixel_x = -32; pixel_y = 0},/turf/station/floor,/area/engine_access)
"ay" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine_access)
"az" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine_access)
"aA" = (/obj/machinery/power/smes{output = 12000; charge = 0; chargelevel = 12000; n_tag = "Aux. Solar Generator"},/turf/station/floor,/area/engine_access)
"aB" = (/obj/machinery/power/solar_control{id = 2},/turf/station/floor,/area/engine_access)
"aC" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "9"},/obj/lattice,/turf/space,/area/engine)
"aD" = (/obj/move/airtunnel/connector,/obj/machinery/alarm/indicator,/turf/space,/area/airtunnel1)
"aE" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine_access)
"aF" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine_access)
"aG" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine_access)
"aH" = (/obj/machinery/power/terminal{dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/engine_access)
"aI" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine_access)
"aJ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/at_indicator{pixel_y = 32},/turf/station/floor,/area/engine/engine_hallway)
"aK" = (/obj/machinery/door/airlock{access = "2000"},/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/engine/engine_hallway)
"aL" = (/obj/move/airtunnel/connector,/turf/space,/area/airtunnel1)
"aM" = (/obj/machinery/door/airlock,/turf/station/floor,/area/engine_access)
"aN" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"aO" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/engine_access)
"aP" = (/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/engine_access)
"aQ" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "2000"},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine_access)
"aR" = (/turf/station/floor,/area/engine/engine_hallway)
"aS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"aT" = (/turf/station/floor,/area/engine_access)
"aU" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine_access)
"aV" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/engine_access)
"aW" = (/obj/machinery/door/airlock{access = "3000"},/turf/station/floor,/area/engine_access)
"aX" = (/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/engine/engine_hallway)
"aY" = (/turf/station/r_wall,/area/airtunnel1)
"aZ" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/floor,/area/airtunnel1)
"ba" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area/airtunnel1)
"bb" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"bc" = (/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine_access)
"bd" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine_access)
"be" = (/obj/machinery/computer/airtunnel,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{dir = 4; c_tag = "Engine Hallway (W)"},/turf/station/floor,/area/engine/engine_hallway)
"bf" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_hallway)
"bg" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine/engine_hallway)
"bh" = (/obj/landmark/alterations{name = "id computer"},/turf/station/floor,/area/engine/engine_hallway)
"bi" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/r_wall,/area/engine)
"bj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/r_wall,/area)
"bk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/aux_engine)
"bl" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/turf/station/floor,/area/aux_engine)
"bm" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/r_wall,/area)
"bn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/wall,/area)
"bo" = (/obj/window{dir = 10},/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine_access)
"bp" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/engine_hallway)
"bq" = (/obj/machinery/firealarm{pixel_y = -32},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"br" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"bs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/r_wall,/area/engine)
"bt" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_gas_storage)
"bu" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/extinguisher,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_gas_storage)
"bv" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/engine/engine_gas_storage)
"bw" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/engine/engine_gas_storage)
"bx" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/r_wall,/area/engine)
"by" = (/turf/station/r_wall,/area)
"bz" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/engine/floor,/area/aux_engine)
"bA" = (/turf/station/engine/floor,/area/aux_engine)
"bB" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/compressor,/turf/station/floor,/area/aux_engine)
"bC" = (/obj/window{icon_state = "rwindow"; dir = 4; invisibility = 0; reinf = 1},/obj/machinery/power/turbine,/turf/station/floor,/area/aux_engine)
"bD" = (/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"bE" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/r_wall,/area)
"bF" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/dispenser,/turf/station/floor,/area/eva_storage)
"bG" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/dispenser,/turf/station/floor,/area/eva_storage)
"bH" = (/obj/rack,/obj/item/weapon/clothing/suit/sp_suit,/obj/item/weapon/clothing/head/s_helmet,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/tank/jetpack,/turf/station/floor,/area/eva_storage)
"bI" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/floor,/area/engine_access)
"bJ" = (/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/engine/generator)
"bK" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/obj/machinery/junction{dir = 1},/turf/station/floor,/area/engine/generator)
"bL" = (/turf/station/wall,/area/engine)
"bM" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/wall,/area/engine)
"bN" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/engine/engine_hallway)
"bO" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_gas_storage)
"bP" = (/turf/station/floor,/area/engine/engine_gas_storage)
"bQ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine/engine_gas_storage)
"bR" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/machinery/power/apc{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/engine/engine_gas_storage)
"bS" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/aux_engine)
"bT" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/aux_engine)
"bU" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/aux_engine)
"bV" = (/obj/machinery/power/smes{charge = 0; online = 0; n_tag = "Aux. No. 1"},/turf/station/floor,/area/aux_engine)
"bW" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/r_wall,/area)
"bX" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"bY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"bZ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/eva_storage)
"ca" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"cb" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/eva_storage)
"cc" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/wall,/area)
"cd" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/machinery/power/apc{dir = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/engine_access)
"ce" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/at_indicator{pixel_y = 32},/turf/station/floor,/area/engine_access)
"cf" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/engine/generator)
"cg" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine/generator)
"ch" = (/obj/machinery/manifold{dir = 4},/turf/station/floor,/area/engine/generator)
"ci" = (/obj/machinery/connector{dir = 8; p_dir = 8},/obj/machinery/atmoalter/canister/co2canister{c_per = 1e+006; c_status = 1},/turf/station/floor,/area/engine/generator)
"cj" = (/obj/item/weapon/radio/intercom{pixel_y = 32},/turf/station/floor,/area/engine/generator)
"ck" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/power/monitor,/turf/station/floor,/area/engine/generator)
"cl" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/engine/generator)
"cm" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/engine/generator)
"cn" = (/obj/machinery/power/smes{n_tag = "Main No. 1"},/turf/station/floor,/area/engine/generator)
"co" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/engine/generator)
"cp" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/extinguisher,/obj/machinery/power/apc{dir = 4; cell_type = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/engine/generator)
"cq" = (/obj/landmark{name = "CTF-supply-Engine"},/turf/station/floor,/area/engine/engine_hallway)
"cr" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_gas_storage)
"cs" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_gas_storage)
"ct" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/turf/station/engine/floor,/area/aux_engine)
"cu" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/aux_engine)
"cv" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/turf/station/floor,/area/aux_engine)
"cw" = (/obj/machinery/power/smes{charge = 0; online = 0; n_tag = "Aux. No. 2"},/turf/station/floor,/area/aux_engine)
"cx" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/r_wall,/area)
"cy" = (/obj/item/weapon/clothing/mask/m_mask,/obj/item/weapon/clothing/mask/m_mask,/obj/item/weapon/clothing/mask/m_mask,/obj/item/weapon/clothing/mask/m_mask,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/eva_storage)
"cz" = (/turf/station/floor,/area/eva_storage)
"cA" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/eva_storage)
"cB" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/eva_storage)
"cC" = (/obj/cable,/obj/machinery/power/apc{dir = 4},/turf/station/floor,/area/eva_storage)
"cD" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/engine_access)
"cE" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine_access)
"cF" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/turf/station/floor,/area/engine/generator)
"cG" = (/turf/station/floor,/area/engine/generator)
"cH" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/generator)
"cI" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/engine/generator)
"cJ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/generator)
"cK" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine/generator)
"cL" = (/obj/machinery/power/smes{n_tag = "Main No. 2"},/turf/station/floor,/area/engine/generator)
"cM" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/engine/generator)
"cN" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/wall,/area/engine)
"cO" = (/obj/landmark{name = "CTF-base-Engine"},/turf/station/floor,/area/engine/engine_hallway)
"cP" = (/obj/closet/emcloset,/turf/station/floor,/area/engine/engine_hallway)
"cQ" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine/engine_gas_storage)
"cR" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/extinguisher,/obj/machinery/camera{dir = 8; c_tag = "Plasma Storage"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_gas_storage)
"cS" = (/obj/machinery/vent{tag = "2"; dir = 4; p_dir = 4},/turf/station/engine/floor,/area/aux_engine)
"cT" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/machinery/pipes,/obj/machinery/meter,/turf/station/engine/floor,/area/aux_engine)
"cU" = (/obj/machinery/valve{dir = 4; id = "auxv1"},/turf/station/floor,/area/aux_engine)
"cV" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/turf/station/floor,/area/aux_engine)
"cW" = (/turf/station/floor,/area/aux_engine)
"cX" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/eva_storage)
"cY" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/eva_storage)
"cZ" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/eva_storage)
"da" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/eva_storage)
"db" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "2100"},/obj/landmark/alterations{name = "barrier"},/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/eva_storage)
"dc" = (/obj/landmark/alterations{name = "barrier"},/turf/station/wall,/area)
"dd" = (/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/engine_access)
"de" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/engine_access)
"df" = (/obj/machinery/camera{dir = 4; c_tag = "Generator Room"},/turf/station/floor,/area/engine/generator)
"dg" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/floor,/area/engine/generator)
"dh" = (/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/floor,/area/engine/generator)
"di" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/turf/station/floor,/area/engine/generator)
"dj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/generator)
"dk" = (/obj/machinery/pipes{tag = ""; icon_state = "6"; p_dir = 6},/turf/station/floor,/area/engine/generator)
"dl" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/turf/station/floor,/area/engine/generator)
"dm" = (/obj/machinery/power/smes{n_tag = "Main No. 3"},/turf/station/floor,/area/engine/generator)
"dn" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine/generator)
"do" = (/obj/machinery/atmoalter/canister/co2canister,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/engine/engine_gas_storage)
"dp" = (/obj/machinery/atmoalter/canister/co2canister,/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"dq" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/radio/intercom{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"dr" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"ds" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"dt" = (/obj/machinery/connector{dir = 4; p_dir = 4},/turf/station/floor,/area/aux_engine)
"du" = (/obj/machinery/manifold{dir = 8},/turf/station/floor,/area/aux_engine)
"dv" = (/obj/machinery/camera{dir = 4; c_tag = "Control Access"},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"dw" = (/turf/station/floor,/area/controlaccess)
"dx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"dy" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/controlaccess)
"dz" = (/obj/machinery/circulator{status = 0},/turf/station/floor,/area/engine/generator)
"dA" = (/obj/machinery/power/generator,/turf/station/floor,/area/engine/generator)
"dB" = (/obj/machinery/circulator{icon_state = "circ2-off"; side = 2; status = 0},/turf/station/floor,/area/engine/generator)
"dC" = (/obj/machinery/firealarm{pixel_x = 32},/obj/machinery/power/monitor,/turf/station/floor,/area/engine/generator)
"dD" = (/obj/machinery/firealarm{pixel_x = 32},/obj/closet/emcloset,/turf/station/floor,/area/engine/engine_hallway)
"dE" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "2030"},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/engine/engine_gas_storage)
"dF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/r_wall,/area/engine)
"dG" = (/obj/machinery/door/poddoor{name = "hatch"; id = "aux1"},/turf/station/engine/floor,/area/aux_engine)
"dH" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"dI" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"dJ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/atmosphere/siphonswitch,/turf/station/floor,/area/aux_engine)
"dK" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"dL" = (/obj/machinery/door/firedoor,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/controlaccess)
"dM" = (/obj/machinery/door,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/engine_access)
"dN" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/engine_access)
"dO" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine_access)
"dP" = (/obj/rack,/obj/item/weapon/clothing/suit/sp_suit,/obj/item/weapon/clothing/head/s_helmet,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/tank/oxygentank,/turf/station/floor,/area/engine/generator)
"dQ" = (/obj/machinery/pipes,/obj/machinery/meter,/turf/station/floor,/area/engine/generator)
"dR" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/floor,/area/engine/generator)
"dS" = (/obj/machinery/light_switch{pixel_x = 24; pixel_y = 0},/turf/station/floor,/area/engine/generator)
"dT" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/wall,/area/engine)
"dU" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"dV" = (/obj/machinery/power/apc{dir = 1},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/engine/engine_hallway)
"dW" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window{dir = 4},/obj/item/weapon/radio/intercom{pixel_y = 32},/turf/station/floor,/area/engine/engine_hallway)
"dX" = (/obj/machinery/light_switch{pixel_y = 24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"dY" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"dZ" = (/obj/machinery/camera{dir = 8; c_tag = "Engine Hallway (E)"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"ea" = (/obj/machinery/igniter,/turf/station/engine/floor,/area/aux_engine)
"eb" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/engine/floor,/area/aux_engine)
"ec" = (/obj/machinery/atmoalter/siphs/scrubbers,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"ed" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/floor,/area/aux_engine)
"ee" = (/obj/machinery/door_control{pixel_x = 28; pixel_y = 0; id = "aux1"},/turf/station/floor,/area/aux_engine)
"ef" = (/obj/window,/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/controlaccess)
"eg" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/controlaccess)
"eh" = (/obj/window,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"ei" = (/obj/window,/turf/station/floor,/area/controlaccess)
"ej" = (/obj/window,/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/controlaccess)
"ek" = (/obj/window{dir = 8},/obj/window{dir = 4},/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area)
"el" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table,/obj/item/weapon/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical,/turf/station/floor,/area/engine/generator)
"em" = (/obj/table,/obj/item/weapon/clipboard,/obj/item/weapon/paper/engine{pixel_x = 4; pixel_y = 6},/obj/item/weapon/cell{charge = 100},/turf/station/floor,/area/engine/generator)
"en" = (/obj/closet/emcloset,/turf/station/floor,/area/engine/generator)
"eo" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/generator)
"ep" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/generator)
"eq" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/turf/station/floor,/area/engine/generator)
"er" = (/obj/machinery/light_switch{pixel_y = 24},/turf/station/floor,/area/engine/engine_hallway)
"es" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_hallway)
"et" = (/obj/machinery/door/window,/turf/station/floor,/area/engine/engine_hallway)
"eu" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/engine/engine_hallway)
"ev" = (/obj/machinery/door/airlock,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/engine/engine_hallway)
"ew" = (/obj/machinery/door/airlock{access = "2030"},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/aux_engine)
"ex" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/aux_engine)
"ey" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/aux_engine)
"ez" = (/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/aux_engine)
"eA" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/aux_engine)
"eB" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark{name = "CTF-wardrobe-CR"},/turf/station/floor,/area/controlaccess)
"eC" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/controlaccess)
"eD" = (/obj/machinery/computer/secure_data,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/control_room)
"eE" = (/obj/machinery/computer/card,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"eF" = (/obj/table,/obj/item/weapon/paper/Map,/obj/item/weapon/radio/intercom,/turf/station/floor,/area/control_room)
"eG" = (/obj/machinery/computer/communications,/turf/station/floor,/area/control_room)
"eH" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/paper/jobs,/obj/item/weapon/infra_sensor,/obj/machinery/camera{c_tag = "Control Room"},/turf/station/floor,/area/control_room)
"eI" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper/jobs,/obj/item/weapon/infra_sensor,/turf/station/floor,/area/control_room)
"eJ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/radio,/obj/item/weapon/radio/signaler{freq = 140.9},/turf/station/floor,/area/control_room)
"eK" = (/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/paper_bin,/turf/station/floor,/area/control_room)
"eL" = (/obj/table{icon_state = "corners"; dir = 5},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"eM" = (/obj/window{dir = 4},/obj/window{dir = 8},/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/control_room)
"eN" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/item/weapon/wrench,/obj/machinery/alarm{pixel_x = -32},/turf/station/floor,/area/engine/generator)
"eO" = (/obj/watertank,/turf/station/floor,/area/engine/engine_hallway)
"eP" = (/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor,/area/engine/engine_hallway)
"eQ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor,/area/engine/engine_hallway)
"eR" = (/obj/landmark{name = "CTF-wardrobe-Engine"},/turf/station/floor,/area/engine/engine_hallway)
"eS" = (/obj/rack,/obj/item/weapon/clothing/suit/firesuit,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/radio/headset,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/engine/engine_hallway)
"eT" = (/obj/rack,/obj/item/weapon/clothing/suit/firesuit,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/radio/headset,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/sunglasses,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_hallway)
"eU" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/engine/engine_hallway)
"eV" = (/obj/item/weapon/extinguisher,/obj/window{dir = 4},/turf/station/floor,/area/engine/engine_hallway)
"eW" = (/obj/table,/obj/machinery/cell_charger,/turf/station/floor,/area/engine/engine_hallway)
"eX" = (/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine/engine_hallway)
"eY" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/aux_engine)
"eZ" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/aux_engine)
"fa" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/turf/station/floor,/area/aux_engine)
"fb" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark{name = "CTF-wardrobe-CR"},/turf/station/floor,/area/controlaccess)
"fc" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/controlaccess)
"fd" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"fe" = (/turf/station/floor,/area/control_room)
"ff" = (/obj/stool/chair{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"fg" = (/obj/stool/chair{dir = 1},/turf/station/floor,/area/control_room)
"fh" = (/obj/stool/chair{dir = 1},/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/control_room)
"fi" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/pill_canister/antitoxin,/turf/station/floor,/area/control_room)
"fj" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/pen,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"fk" = (/obj/machinery/camera{name = ""; icon_state = "blank"; dir = 4; network = "AS"; c_tag = "target scan 1"; invuln = 1},/turf/space,/area)
"fl" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/obj/machinery/junction,/turf/station/floor,/area/engine)
"fm" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/junction,/turf/station/floor,/area/engine)
"fn" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/floor,/area/engine)
"fo" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/engine/engine_hallway)
"fp" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/aux_engine)
"fq" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/item/weapon/wrench,/turf/station/floor,/area/aux_engine)
"fr" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/aux_engine)
"fs" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/controlaccess)
"ft" = (/obj/window{dir = 10},/obj/item/weapon/extinguisher,/turf/station/floor,/area/control_room)
"fu" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"fv" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/control_room)
"fw" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/control_room)
"fx" = (/obj/stool/chair{dir = 4},/obj/start{name = "Head of Research"},/turf/station/floor,/area/control_room)
"fy" = (/obj/table,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/clipboard,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"fz" = (/turf/station/floor,/area/repair_bay)
"fA" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/repair_bay)
"fB" = (/obj/machinery/alarm{pixel_y = 24},/obj/weldfueltank,/turf/station/floor,/area/repair_bay)
"fC" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/clothing/gloves/yellow,/turf/station/floor,/area/repair_bay)
"fD" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"fE" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "6"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"fF" = (/obj/machinery/pipes/heat_exch,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"fG" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "10"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"fH" = (/obj/machinery/door/poddoor{id = "ex"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"fI" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/door_control{pixel_x = 0; pixel_y = 28; id = "ex"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"fJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"fK" = (/obj/item/weapon/radio/intercom{pixel_y = 32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"fL" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/engine,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"fM" = (/obj/machinery/light_switch{pixel_y = 24},/turf/station/floor,/area/engine/engine_storage)
"fN" = (/turf/station/floor,/area/engine/engine_storage)
"fO" = (/obj/rack,/obj/item/weapon/clothing/suit/firesuit,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/radio/headset,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/meson,/obj/item/weapon/clothing/glasses/sunglasses,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_storage)
"fP" = (/obj/machinery/firealarm{pixel_y = -32},/obj/item/weapon/storage/firstaid/regular,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/obj/item/weapon/extinguisher,/turf/station/floor,/area/aux_engine)
"fQ" = (/obj/weldfueltank,/obj/machinery/power/apc,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/aux_engine)
"fR" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/aux_engine)
"fS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/aux_engine)
"fT" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/atmoalter/canister/oxygencanister,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/aux_engine)
"fU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/aux_engine)
"fV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"fW" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/controlaccess)
"fX" = (/obj/machinery/door/window,/turf/station/floor,/area/controlaccess)
"fY" = (/obj/landmark{name = "CTF-base-CR"},/turf/station/floor,/area/control_room)
"fZ" = (/obj/table,/obj/item/weapon/paper/jobs,/obj/item/weapon/storage/id_kit,/turf/station/floor,/area/control_room)
"ga" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/control_room)
"gb" = (/obj/table,/turf/station/floor,/area/control_room)
"gc" = (/obj/stool/chair{dir = 4},/obj/start{name = "Captain"},/turf/station/floor,/area/control_room)
"gd" = (/obj/table,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/beacon,/obj/item/weapon/clipboard,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"ge" = (/turf/station/floor{icon_state = "Floor1"; intact = 0; burnt = 1},/area/repair_bay)
"gf" = (/obj/machinery/door/airlock,/turf/station/floor{icon_state = "Floor1"; intact = 0; burnt = 1},/area/repair_bay)
"gg" = (/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/machinery/pod{dir = 8},/turf/station/floor{icon_state = "Floor1"; intact = 0; burnt = 1},/area/repair_bay)
"gh" = (/obj/machinery/camera{dir = 8; c_tag = "Pod repair bay"},/turf/station/floor,/area/repair_bay)
"gi" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "9"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"gj" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gk" = (/obj/machinery/connector{tag = ""; suffix = ""},/obj/machinery/atmoalter/canister/poisoncanister{anchored = 1; c_status = 3},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gl" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gm" = (/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gn" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"go" = (/obj/rack,/obj/item/weapon/clothing/suit/firesuit,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/radio/headset,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/meson,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/engine/engine_storage)
"gp" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/engine/engine_storage)
"gq" = (/obj/rack,/obj/item/weapon/clothing/suit/firesuit,/obj/item/weapon/clothing/under/black,/obj/item/weapon/clothing/mask/gasmask,/obj/item/weapon/radio/headset,/obj/item/weapon/clothing/shoes/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/sunglasses,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_storage)
"gr" = (/obj/watertank,/turf/station/floor,/area/controlaccess)
"gs" = (/obj/window{dir = 4},/turf/station/floor,/area/controlaccess)
"gt" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/control_room)
"gu" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/control_room)
"gv" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/control_room)
"gw" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/control_room)
"gx" = (/obj/stool/chair{dir = 4},/obj/start{name = "Head of Personnel"},/turf/station/floor,/area/control_room)
"gy" = (/obj/table,/obj/item/weapon/clipboard,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/beacon,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"gz" = (/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/turf/station/floor,/area/repair_bay)
"gA" = (/obj/machinery/gas_sensor{id = 1},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"gB" = (/obj/machinery/vent{tag = "2"; dir = 4; p_dir = 4},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"gC" = (/obj/machinery/pipes,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"gD" = (/obj/machinery/pipes,/obj/machinery/meter,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"gE" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/valve{dir = 4},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gF" = (/obj/machinery/manifold{dir = 8},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gG" = (/obj/start{name = "Engineer"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"gH" = (/obj/closet/emcloset,/turf/station/floor,/area/tech_storage)
"gI" = (/obj/closet/emcloset,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/tech_storage)
"gJ" = (/obj/closet/wardrobe/yellow,/turf/station/floor,/area/tech_storage)
"gK" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/storage/toolbox,/obj/item/weapon/clothing/glasses/meson,/turf/station/floor,/area/tech_storage)
"gL" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/toolbox,/obj/item/weapon/clothing/glasses/meson,/obj/item/weapon/cell{charge = 100},/obj/item/weapon/cell{charge = 100},/turf/station/floor,/area/tech_storage)
"gM" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/sunglasses,/obj/item/weapon/clothing/ears/earmuffs,/obj/item/weapon/cell{charge = 100},/obj/item/weapon/cell{charge = 100},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/clothing/gloves/black,/turf/station/floor,/area/tech_storage)
"gN" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/gloves/black,/obj/item/weapon/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/clothing/ears/earmuffs,/turf/station/floor,/area/tech_storage)
"gO" = (/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/controlaccess)
"gP" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/controlaccess)
"gQ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/controlaccess)
"gR" = (/obj/window{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"gS" = (/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/paper/sop,/obj/item/weapon/paper/Internal,/obj/item/weapon/infra,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/control_room)
"gT" = (/obj/table{icon_state = "corners"; dir = 5},/obj/item/weapon/paper/Internal,/obj/item/weapon/radio/signaler,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/weapon/paper/engine{pixel_x = 4; pixel_y = 6},/turf/station/floor,/area/control_room)
"gU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/control_room)
"gV" = (/obj/stool/chair,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/control_room)
"gW" = (/obj/stool/chair,/turf/station/floor,/area/control_room)
"gX" = (/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/bottle/rejuvenators,/obj/item/weapon/syringe,/turf/station/floor,/area/control_room)
"gY" = (/obj/table{icon_state = "corners"; dir = 5},/obj/item/weapon/bottle/s_tox,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"gZ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/radio/intercom{pixel_x = -32},/obj/item/weapon/extinguisher,/turf/station/floor,/area/repair_bay)
"ha" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/repair_bay)
"hb" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/machinery/power/apc{dir = 4},/turf/station/floor,/area/repair_bay)
"hc" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "5"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"hd" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"he" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hf" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hg" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hh" = (/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor,/area/engine/engine_hallway)
"hi" = (/obj/machinery/door/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_storage)
"hj" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/camera{dir = 4; c_tag = "Technician Office"},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/tech_storage)
"hk" = (/obj/start{name = "Station Technician"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/tech_storage)
"hl" = (/turf/station/floor,/area/tech_storage)
"hm" = (/obj/stool,/turf/station/floor,/area/tech_storage)
"hn" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/radio/intercom{pixel_x = 32},/turf/station/floor,/area/tech_storage)
"ho" = (/obj/machinery/door/firedoor,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"hp" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/paper/courtroom,/turf/station/floor,/area/control_room)
"hq" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/paper/Toxin,/obj/item/weapon/paper/Map,/obj/item/weapon/timer,/obj/item/weapon/t_scanner,/turf/station/floor,/area/control_room)
"hr" = (/obj/landmark{name = "CTF-supply-CR"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/control_room)
"hs" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/paper/jobs,/obj/manifest,/obj/cable,/obj/machinery/power/apc{cell_type = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/control_room)
"ht" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/table{icon_state = "corners"; dir = 5},/obj/item/weapon/card/id,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/control_room)
"hu" = (/obj/machinery/computer/airtunnel,/turf/station/floor,/area/control_room)
"hv" = (/obj/machinery/computer/engine,/turf/station/floor,/area/control_room)
"hw" = (/obj/table{icon_state = "corners"; dir = 10},/obj/machinery/recharger,/turf/station/floor,/area/control_room)
"hx" = (/obj/table{icon_state = "corners"; dir = 6},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"hy" = (/obj/machinery/door/airlock,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/repair_bay)
"hz" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hA" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/weldfueltank,/turf/station/floor,/area/engine/engine_storage)
"hB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/autolathe,/turf/station/floor,/area/engine/engine_storage)
"hC" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/tech_storage)
"hD" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/tech_storage)
"hE" = (/obj/start{name = "Technical Assistant"},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/tech_storage)
"hF" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/tech_storage)
"hG" = (/obj/weldfueltank,/turf/station/floor,/area/tech_storage)
"hH" = (/obj/machinery/door/window{dir = 4},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"hI" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "4400"},/obj/machinery/light_switch{pixel_x = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"hJ" = (/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area)
"hK" = (/obj/machinery/door/poddoor,/turf/station/engine/floor,/area/escapezone)
"hL" = (/obj/machinery/mass_driver{dir = 8},/obj/item/weapon/tank/oxygentank,/turf/station/engine/floor,/area/escapezone)
"hM" = (/obj/machinery/door/window,/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/engine/floor,/area/escapezone)
"hN" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/escapezone)
"hO" = (/obj/machinery/computer/pod{name = "Mass Driver"},/turf/station/floor,/area/escapezone)
"hP" = (/obj/grille,/obj/machinery/door/poddoor{name = "hatch"; icon_state = "pdoor0"; opacity = 0; density = 0; id = "ex2"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"hQ" = (/obj/table{icon_state = "alone"},/obj/item/weapon/clipboard,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/analyzer,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hR" = (/obj/machinery/atmoalter/siphs/scrubbers,/obj/machinery/camera{dir = 8; c_tag = "Engine Control"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"hS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/wall,/area/engine)
"hT" = (/obj/landmark/alterations{name = "Security Locker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"hU" = (/obj/closet/emcloset,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"hV" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/storage/toolbox,/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/crowbar,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/toolbox/electrical,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/item/weapon/cell{icon_state = "hpcell"; charge = 100; maxcharge = 5000},/obj/item/weapon/cell{icon_state = "hpcell"; charge = 100; maxcharge = 5000},/turf/station/floor,/area/engine/engine_storage)
"hW" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/storage/toolbox,/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/crowbar,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_storage)
"hX" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/storage/toolbox,/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/crowbar,/obj/item/weapon/clipboard,/obj/machinery/power/apc{dir = 4},/obj/cable,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine/engine_storage)
"hY" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/tech_storage)
"hZ" = (/obj/grille,/obj/window,/obj/window{dir = 1},/turf/station/floor,/area)
"ia" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/controlaccess)
"ib" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "4400"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"ic" = (/obj/table,/obj/item/weapon/card/id/captains_spare,/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "4400"},/obj/landmark{name = "Nuclear-Disk"},/turf/station/floor,/area/secure_storage)
"id" = (/obj/machinery/atmoalter/canister/poisoncanister{t_status = 1; t_per = 100000},/turf/station/floor,/area)
"ie" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/escapezone)
"if" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/escapezone)
"ig" = (/obj/item/weapon/hand_tele,/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ih" = (/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ii" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ij" = (/obj/machinery/door_control{pixel_x = 0; pixel_y = 28; id = "ex2"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ik" = (/obj/closet/wardrobe/yellow,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"il" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/engine/engine_hallway)
"im" = (/obj/weldfueltank,/turf/station/floor,/area/engine/engine_hallway)
"in" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/controlaccess)
"io" = (/obj/machinery/door/window,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/controlaccess)
"ip" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/security,/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/secure_storage)
"iq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"ir" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/secure_storage)
"is" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/stool/bed,/obj/item/weapon/bedsheet,/turf/station/floor,/area/secure_storage)
"it" = (/obj/item/weapon/ammo/a357,/turf/station/floor,/area)
"iu" = (/obj/machinery/door/poddoor{id = 2},/turf/station/engine/floor,/area/escapezone)
"iv" = (/obj/machinery/mass_driver{dir = 8; id = 2},/obj/machinery/pod,/turf/station/engine/floor,/area/escapezone)
"iw" = (/obj/machinery/computer/pod{id = 2},/turf/station/floor,/area/escapezone)
"ix" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/escapezone)
"iy" = (/obj/machinery/computer/engine,/turf/station/floor,/area/escapezone)
"iz" = (/obj/machinery/computer/communications,/turf/station/floor,/area/escapezone)
"iA" = (/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"iB" = (/obj/machinery/gas_sensor{id = 2},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"iC" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/obj/machinery/pipes,/obj/machinery/meter,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iD" = (/obj/machinery/connector{dir = 8; p_dir = 8},/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iE" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iF" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iG" = (/obj/machinery/power/apc{dir = 4; cell_type = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iH" = (/obj/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire,/turf/station/floor,/area/engine/engine_hallway)
"iI" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"iJ" = (/obj/machinery/power/monitor,/turf/station/floor,/area/secure_storage)
"iK" = (/turf/station/floor,/area/secure_storage)
"iL" = (/obj/secloset/captains,/turf/station/floor,/area/secure_storage)
"iM" = (/obj/machinery/camera{dir = 4; c_tag = "Escape Pod Bay"},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/escapezone)
"iN" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"iO" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"iP" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"iQ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/escapezone)
"iR" = (/obj/machinery/igniter,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"iS" = (/obj/machinery/computer/engine{id = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iT" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/computer/atmosphere/siphonswitch{otherarea = "engine/combustion"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"iU" = (/obj/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor,/area/engine/engine_hallway)
"iV" = (/obj/watertank,/turf/station/floor,/area/hallways/labaccess)
"iW" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/hallways/labaccess)
"iX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"iY" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"iZ" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/controlaccess)
"ja" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/controlaccess)
"jb" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"jc" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/obj/machinery/power/apc,/turf/station/floor,/area/controlaccess)
"jd" = (/obj/machinery/camera{dir = 4; c_tag = "Secure Storage"},/obj/landmark/alterations{name = "Security Locker"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/secure_storage)
"je" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"jf" = (/obj/secloset/highsec,/turf/station/floor,/area/secure_storage)
"jg" = (/obj/machinery/door/poddoor{id = 3},/turf/station/engine/floor,/area/escapezone)
"jh" = (/obj/machinery/mass_driver{dir = 8; id = 3},/obj/machinery/pod{id = 3},/turf/station/engine/floor,/area/escapezone)
"ji" = (/obj/machinery/computer/pod{id = 3},/turf/station/floor,/area/escapezone)
"jj" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/escapezone)
"jk" = (/turf/station/floor,/area/escapezone)
"jl" = (/obj/cable,/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/escapezone)
"jm" = (/obj/item/weapon/gun/revolver,/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"jn" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"jo" = (/obj/machinery/injector{dir = 4},/turf/station/wall,/area/engine/engine_control{linkarea = "engine/combustion"})
"jp" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"jq" = (/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"jr" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"js" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/dispenser,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"jt" = (/turf/station/floor,/area/hallways/labaccess)
"ju" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"jv" = (/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/hallways/labaccess)
"jw" = (/obj/landmark/alterations{name = "Security Locker"},/obj/cable,/obj/machinery/power/apc{dir = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/secure_storage)
"jx" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/secure_storage)
"jy" = (/turf/station/floor,/area)
"jz" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/escapezone)
"jA" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/escapezone)
"jB" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/escapezone)
"jC" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/hallways/labaccess)
"jD" = (/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/hallways/labaccess)
"jE" = (/obj/weldfueltank,/turf/station/floor,/area/toolstorage)
"jF" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/gloves/black,/turf/station/floor,/area/toolstorage)
"jG" = (/obj/item/weapon/infra,/obj/item/weapon/timer,/obj/cable,/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/toolstorage)
"jH" = (/obj/table{icon_state = "sides"; dir = 2},/obj/bedsheetbin,/turf/station/floor,/area/toolstorage)
"jI" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper_bin{amount = 50},/obj/item/weapon/wrapping_paper,/turf/station/floor,/area/toolstorage)
"jJ" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/storage/gl_kit,/obj/item/weapon/t_scanner,/turf/station/floor,/area/toolstorage)
"jK" = (/obj/item/weapon/sheet/metal{amount = 5},/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/turf/station/floor,/area/toolstorage)
"jL" = (/obj/item/weapon/sheet/metal{amount = 5},/obj/item/weapon/cable_coil,/turf/station/floor,/area/toolstorage)
"jM" = (/obj/item/weapon/sheet/metal{amount = 5},/turf/station/floor,/area/toolstorage)
"jN" = (/obj/machinery/autolathe,/turf/station/floor,/area)
"jO" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/obj/landmark/alterations{name = "Security Locker"},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/secure_storage)
"jP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/secure_storage)
"jQ" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/secure_storage)
"jR" = (/obj/item/weapon/storage/handcuff_kit,/turf/station/floor,/area/secure_storage)
"jS" = (/obj/machinery/door/poddoor{id = 4},/turf/station/engine/floor,/area/escapezone)
"jT" = (/obj/machinery/mass_driver{dir = 8; id = 4},/obj/machinery/pod,/turf/station/engine/floor,/area/escapezone)
"jU" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/escapezone)
"jV" = (/obj/machinery/computer/pod{id = 4},/turf/station/floor,/area/escapezone)
"jW" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/escapezone)
"jX" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/light_switch{pixel_y = -24},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/escapezone)
"jY" = (/obj/item/weapon/extinguisher,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"jZ" = (/obj/machinery/door/airlock,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"ka" = (/obj/machinery/door/airlock,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"kb" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"kc" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"kd" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/light_switch{pixel_y = -24},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"ke" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2000"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"kf" = (/obj/machinery/alarm{pixel_y = -32},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"kg" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/wall,/area)
"kh" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"ki" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/glasses/meson,/obj/item/weapon/clothing/glasses/sunglasses,/obj/item/weapon/clothing/ears/earmuffs,/turf/station/floor,/area/toolstorage)
"kj" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/infra_sensor,/turf/station/floor,/area/toolstorage)
"kk" = (/obj/item/weapon/timer,/obj/item/weapon/radio/beacon,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"kl" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/camera{c_tag = "Supply Room"},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/toolstorage)
"km" = (/obj/item/weapon/timer,/obj/item/weapon/crowbar,/turf/station/floor,/area/toolstorage)
"kn" = (/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"ko" = (/obj/item/weapon/crowbar,/turf/station/floor,/area/toolstorage)
"kp" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/infra,/obj/item/weapon/radio/signaler,/obj/item/weapon/cell{icon_state = "hpcell"; charge = 100; maxcharge = 5000},/turf/station/floor,/area/toolstorage)
"kq" = (/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"kr" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"ks" = (/obj/item/weapon/igniter,/obj/item/weapon/crowbar,/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/toolstorage)
"kt" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/infra,/obj/item/weapon/radio/beacon,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/toolstorage)
"ku" = (/obj/machinery/door/false_wall,/turf/station/floor,/area)
"kv" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/closet/emcloset,/turf/station/floor,/area/secure_storage)
"kw" = (/obj/closet/emcloset,/turf/station/floor,/area/secure_storage)
"kx" = (/obj/closet/emcloset,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"ky" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/closet/emcloset,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/secure_storage)
"kz" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/hallways/labaccess)
"kA" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"kB" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/toolstorage)
"kC" = (/obj/item/weapon/infra_sensor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"kD" = (/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/igniter,/obj/item/weapon/storage/backpack,/turf/station/floor,/area/toolstorage)
"kE" = (/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/sheet/glass,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/turf/station/floor,/area/toolstorage)
"kF" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/beacon,/turf/station/floor,/area/toolstorage)
"kG" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/handcuffs,/obj/item/weapon/clothing/mask/muzzle,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"kH" = (/obj/item/weapon/sheet/metal,/obj/item/weapon/sheet/metal,/obj/item/weapon/handcuffs,/obj/item/weapon/clothing/mask/muzzle,/obj/item/weapon/timer,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"kI" = (/obj/item/weapon/sheet/metal{amount = 5},/obj/item/weapon/storage/toolbox/electrical,/turf/station/floor,/area/toolstorage)
"kJ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/closet{name = "coffin"},/turf/station/floor,/area/chapel)
"kK" = (/obj/closet{name = "coffin"},/turf/station/floor,/area/chapel)
"kL" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/chapel)
"kM" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/chapel)
"kN" = (/turf/station/floor,/area/chapel)
"kO" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/chapel)
"kP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area)
"kQ" = (/obj/landmark/alterations{name = "blob-directive"; icon_state = "x3"},/turf/station/floor,/area)
"kR" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"kS" = (/obj/machinery/door/window{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"kT" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 5},/turf/station/floor,/area/hallways/eastairlock)
"kU" = (/obj/stool/chair,/turf/station/floor,/area/hallways/eastairlock)
"kV" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"kW" = (/turf/station/floor,/area/hallways/eastairlock)
"kX" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/eastairlock)
"kY" = (/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"kZ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"la" = (/obj/machinery/camera{name = ""; icon_state = "blank"; dir = 4; network = "AS"; c_tag = "target scan 4"; invuln = 1},/turf/space,/area)
"lb" = (/obj/machinery/door,/turf/station/floor,/area/morgue)
"lc" = (/obj/window{dir = 1},/obj/window,/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/medical)
"ld" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/wall,/area)
"le" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/wall,/area)
"lf" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/labaccess)
"lg" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/centralhall)
"lh" = (/turf/station/floor,/area/hallways/centralhall)
"li" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"lj" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/hallways/centralhall)
"lk" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/centralhall)
"ll" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/regular,/turf/station/floor,/area/hallways/eastairlock)
"lm" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper/courtroom,/turf/station/floor,/area/hallways/eastairlock)
"ln" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/radio,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"lo" = (/obj/machinery/computer/pod{name = "Burial"; id = "chap1"; time = 60},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"lp" = (/obj/machinery/door,/turf/station/floor,/area/chapel)
"lq" = (/obj/morgue,/turf/station/floor,/area/morgue)
"lr" = (/turf/station/floor,/area/morgue)
"ls" = (/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor,/area/medical)
"lt" = (/obj/item/weapon/flasks/coolant,/obj/item/weapon/flasks/oxygen,/obj/item/weapon/flasks/plasma,/turf/station/floor,/area/medical)
"lu" = (/obj/window{dir = 4},/obj/closet/wardrobe/white,/turf/station/floor,/area/medical)
"lv" = (/obj/secloset/medical1,/turf/station/floor,/area/medical)
"lw" = (/obj/machinery/computer/med_data,/turf/station/floor,/area/medical)
"lx" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/paper/Toxin,/obj/item/weapon/pen,/obj/item/weapon/bottle/rejuvenators,/obj/item/weapon/dropper,/obj/item/weapon/pill_canister/cough,/obj/item/weapon/pill_canister/epilepsy,/turf/station/floor,/area/medical)
"ly" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/syringe,/obj/item/weapon/clipboard,/obj/item/weapon/radio,/turf/station/floor,/area/medical)
"lz" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/syringe,/obj/item/weapon/bottle/rejuvenators,/obj/machinery/camera{c_tag = "Medical Bay"},/turf/station/floor,/area/medical)
"lA" = (/obj/table{icon_state = "alone"},/obj/item/weapon/healthanalyzer,/obj/item/weapon/bottle/antitoxins,/obj/item/weapon/bottle/antitoxins,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/medical)
"lB" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor,/area/medical)
"lC" = (/obj/table{icon_state = "sides"},/obj/item/weapon/storage/firstaid/fire,/turf/station/floor,/area/medical)
"lD" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/storage/firstaid/regular,/turf/station/floor,/area/medical)
"lE" = (/obj/machinery/alarm{pixel_y = 24},/obj/closet/wardrobe/white,/turf/station/floor,/area/toxinlab)
"lF" = (/obj/closet/l3closet,/turf/station/floor,/area/toxinlab)
"lG" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/toxinlab)
"lH" = (/obj/machinery/atmoalter/canister/anesthcanister,/turf/station/floor,/area/toxinlab)
"lI" = (/obj/machinery/computer/med_data,/turf/station/floor,/area/toxinlab)
"lJ" = (/obj/machinery/firealarm{pixel_y = 32},/turf/station/floor,/area/toxinlab)
"lK" = (/obj/machinery/computer/atmosphere/siphonswitch,/obj/machinery/camera{c_tag = "Medical Lab"},/turf/station/floor,/area/toxinlab)
"lL" = (/obj/secloset/medical1,/turf/station/floor,/area/toxinlab)
"lM" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/paper/Toxin,/obj/item/weapon/clothing/gloves/latex,/obj/item/weapon/clothing/mask/surgical,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/turf/station/floor,/area/toxinlab)
"lN" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/bottle/antitoxins,/obj/item/weapon/bottle/s_tox,/obj/item/weapon/bottle/r_epil,/obj/item/weapon/bottle/r_ch_cough,/obj/item/weapon/dropper,/turf/station/floor,/area/toxinlab)
"lO" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/syringe,/obj/item/weapon/bottle/antitoxins,/obj/item/weapon/bottle/s_tox,/obj/item/weapon/pill_canister/Tourette,/obj/item/weapon/pill_canister/epilepsy,/turf/station/floor,/area/toxinlab)
"lP" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor,/area/toxinlab)
"lQ" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/paper_bin,/turf/station/floor,/area/toxinlab)
"lR" = (/obj/machinery/alarm,/turf/station/floor,/area/hallways/labaccess)
"lS" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"lT" = (/obj/machinery/door/window,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"lU" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"lV" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"lW" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"lX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"lY" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"lZ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"ma" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/centralhall)
"mb" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"mc" = (/obj/machinery/door/firedoor,/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"md" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"me" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"mf" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/hallways/eastairlock)
"mg" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/eastairlock)
"mh" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"mi" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"mj" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/table{icon_state = "sides"; dir = 4},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mk" = (/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"ml" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mm" = (/obj/stool/chair{dir = 8},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mn" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mo" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/morgue)
"mp" = (/obj/machinery/freezer,/turf/station/floor,/area/medical)
"mq" = (/obj/machinery/pipes/flexipipe,/turf/station/floor,/area/medical)
"mr" = (/obj/machinery/cryo_cell,/turf/station/floor,/area/medical)
"ms" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor,/area/medical)
"mt" = (/obj/landmark/alterations{name = "recharger"},/turf/station/floor,/area/medical)
"mu" = (/turf/station/floor,/area/medical)
"mv" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/medical)
"mw" = (/obj/stool/chair,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medical)
"mx" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/medical)
"my" = (/obj/item/weapon/brutepack,/obj/item/weapon/ointment,/obj/item/weapon/ointment,/turf/station/floor,/area/medical)
"mz" = (/obj/machinery/door/firedoor,/obj/grille,/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/toxinlab)
"mA" = (/turf/station/floor,/area/toxinlab)
"mB" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/toxinlab)
"mC" = (/obj/stool/chair,/turf/station/floor,/area/toxinlab)
"mD" = (/obj/machinery/camera{dir = 4; c_tag = "Central Hallway"},/turf/station/floor,/area/hallways/labaccess)
"mE" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"mF" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/hallways/centralhall)
"mG" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"mH" = (/obj/machinery/camera{dir = 8; c_tag = "Assembly Room"},/obj/item/weapon/radio/intercom{pixel_x = 32},/turf/station/floor,/area/hallways/eastairlock)
"mI" = (/obj/table{icon_state = "sides"; dir = 4},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mJ" = (/obj/stool/chair{dir = 4},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mK" = (/obj/table{icon_state = "alone"},/obj/item/weapon/paper{name = "Service"; pixel_x = 16; pixel_y = 16; info = "I am the resurrection and the life, saith the Lord: he that believeth in me, though he were dead, yet shall he live: and whosoever liveth and believeth in me shall never die. <p><i> S. John 11. 25, 26</i>"},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"mL" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/medical)
"mM" = (/obj/window{dir = 4},/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor,/area/medical)
"mN" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/medical)
"mO" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"mP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"mQ" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"mR" = (/obj/machinery/door/firedoor,/obj/grille,/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/toxinlab)
"mS" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/toxinlab)
"mT" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/toxinlab)
"mU" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/toxinlab)
"mV" = (/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"mW" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/hallways/centralhall)
"mX" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/oxygen_storage)
"mY" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/oxygen_storage)
"mZ" = (/obj/machinery/dispenser,/turf/station/floor,/area/oxygen_storage)
"na" = (/obj/machinery/dispenser,/obj/machinery/camera{c_tag = "Toxin Gas Storage"},/turf/station/floor,/area/oxygen_storage)
"nb" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/oxygen_storage)
"nc" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/machinery/power/apc{dir = 1},/turf/station/floor,/area/oxygen_storage)
"nd" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/oxygen_storage)
"ne" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/oxygen_storage)
"nf" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 9},/turf/station/floor,/area/hallways/eastairlock)
"ng" = (/obj/table{icon_state = "corners"; dir = 5},/turf/station/floor,/area/hallways/eastairlock)
"nh" = (/obj/table{icon_state = "corners"; dir = 9},/turf/station/floor,/area/hallways/eastairlock)
"ni" = (/obj/window{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"nj" = (/obj/window,/turf/space,/area)
"nk" = (/obj/grille,/obj/window,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"nl" = (/obj/table{icon_state = "sides"; dir = 4},/obj/window,/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"nm" = (/obj/window,/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"nn" = (/obj/machinery/door/window{dir = 4},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"no" = (/obj/machinery/camera{dir = 8; c_tag = "Chapel"},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"np" = (/obj/machinery/camera{dir = 8; c_tag = "Morgue"},/turf/station/floor,/area/morgue)
"nq" = (/obj/machinery/sleeper,/turf/station/floor,/area/medical)
"nr" = (/obj/machinery/computer/sleep_console,/turf/station/floor,/area/medical)
"ns" = (/obj/start{name = "Medical Doctor"},/turf/station/floor,/area/medical)
"nt" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medical)
"nu" = (/obj/machinery/firealarm{layer = 4; pixel_x = 32},/obj/stool/chair{dir = 8},/turf/station/floor,/area/medical)
"nv" = (/obj/machinery/door/firedoor,/obj/grille,/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/cable,/turf/station/floor,/area/toxinlab)
"nw" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/toxinlab)
"nx" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/toxinlab)
"ny" = (/obj/item/weapon/radio/intercom{pixel_y = -32},/turf/station/floor,/area/toxinlab)
"nz" = (/obj/window,/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/toxinlab)
"nA" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/toxinlab)
"nB" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/toxinlab)
"nC" = (/obj/window,/obj/secloset/medical2,/turf/station/floor,/area/toxinlab)
"nD" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/window,/turf/station/floor,/area/toxinlab)
"nE" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/clothing/suit/straight_jacket,/obj/item/weapon/clothing/suit/straight_jacket,/obj/item/weapon/clothing/mask/muzzle,/obj/item/weapon/clothing/mask/muzzle,/obj/window,/turf/station/floor,/area/toxinlab)
"nF" = (/obj/window,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/toxinlab)
"nG" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/wall,/area)
"nH" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"nI" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/labaccess)
"nJ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"nK" = (/obj/machinery/alarm{pixel_y = 24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"nL" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/oxygen_storage)
"nM" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/oxygen_storage)
"nN" = (/turf/station/floor,/area/oxygen_storage)
"nO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/oxygen_storage)
"nP" = (/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"nQ" = (/obj/stool/chair{dir = 1},/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/hallways/eastairlock)
"nR" = (/obj/stool/chair{dir = 1},/turf/station/floor,/area/hallways/eastairlock)
"nS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"nT" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/hallways/eastairlock)
"nU" = (/obj/machinery/door/poddoor{name = "Burial lock"; id = "chap1"},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"nV" = (/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"nW" = (/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"nX" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"nY" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"nZ" = (/obj/machinery/mass_driver{dir = 8; id = "chap1"},/obj/machinery/door/window,/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"oa" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/morgue)
"ob" = (/obj/landmark{name = "CTF-supply-Medical"},/turf/station/floor,/area/medical)
"oc" = (/obj/machinery/door/window,/turf/station/floor,/area/medical)
"od" = (/obj/landmark{name = "CTF-base-Medical"},/turf/station/floor,/area/medical)
"oe" = (/obj/stool/chair{dir = 8},/turf/station/floor,/area/medical)
"of" = (/obj/window{dir = 1},/turf/station/floor,/area/toxinlab)
"og" = (/obj/window{dir = 4},/obj/secloset/animal,/turf/station/floor,/area/toxinlab)
"oh" = (/obj/window{dir = 1},/obj/window{dir = 8},/obj/machinery/dna_scanner,/turf/station/floor,/area/toxinlab)
"oi" = (/obj/window{dir = 1},/obj/machinery/scan_console,/turf/station/floor,/area/toxinlab)
"oj" = (/obj/window{dir = 1},/obj/machinery/computer/dna,/turf/station/floor,/area/toxinlab)
"ok" = (/obj/window{dir = 1},/obj/machinery/restruct,/turf/station/floor,/area/toxinlab)
"ol" = (/obj/table{icon_state = "sides"; dir = 8},/obj/item/weapon/card/data{name = "SE-Scan"; function = "dna_scan"; special = "SE"},/obj/item/weapon/card/data{name = "SI-Scan"; function = "dna_scan"; special = "SI"},/obj/item/weapon/card/data{name = "UE-Scan"; function = "dna_scan"; special = "UE"},/obj/item/weapon/card/data{name = "UI-Scan"; function = "dna_scan"; special = "UI"},/obj/item/weapon/storage/disk_kit/disks2{name = "DNA-Scan"},/turf/station/floor,/area/toxinlab)
"om" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable,/obj/machinery/power/apc{dir = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"on" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"oo" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"op" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/hallways/eastairlock)
"oq" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"or" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/hallways/eastairlock)
"os" = (/obj/table{icon_state = "corners"; dir = 9},/obj/window{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"ot" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "sides"; dir = 1},/turf/station/floor,/area/hallways/eastairlock)
"ou" = (/obj/window{dir = 1},/turf/space,/area)
"ov" = (/obj/grille,/obj/window{dir = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"ow" = (/obj/table{icon_state = "sides"; dir = 4},/obj/window{dir = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"ox" = (/obj/window{dir = 1},/obj/window{dir = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"oy" = (/obj/window{dir = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"oz" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/morgue)
"oA" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc,/turf/station/floor,/area/morgue)
"oB" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/morgue)
"oC" = (/obj/landmark/alterations{name = "Experimental Technology"},/obj/window{dir = 4},/turf/station/floor,/area/medical)
"oD" = (/obj/start{name = "Medical Assistant"},/turf/station/floor,/area/medical)
"oE" = (/obj/item/weapon/storage/toolbox,/turf/station/floor,/area/medical)
"oF" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; access = "1300"},/turf/station/floor,/area/medical)
"oG" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/door/window{icon = 'security.dmi'; access = "1300"},/turf/station/floor,/area/toxinlab)
"oH" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/toxinlab)
"oI" = (/obj/window,/turf/station/floor,/area/toxinlab)
"oJ" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "1100"},/turf/station/floor,/area/toxinlab)
"oK" = (/obj/start{name = "Medical Researcher"},/obj/window,/turf/station/floor,/area/toxinlab)
"oL" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/window,/turf/station/floor,/area/toxinlab)
"oM" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/toxinlab)
"oN" = (/obj/machinery/door/window,/turf/station/floor,/area/toxinlab)
"oO" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/card/data{name = "Data-Trunicate"; function = "data_trun"; data = "12"; special = null},/obj/item/weapon/card/data{name = "Data-Add"; function = "data_add"; data = "12"; special = null},/obj/item/weapon/card/data{name = "Data-Scramble"; function = "data_scramble"; data = "12"; special = null},/obj/item/weapon/card/data{name = "Data-Input"; function = "data_input"; data = "12"; special = null},/obj/item/weapon/storage/disk_kit/disks2{name = "Data-Controllers"},/turf/station/floor,/area/toxinlab)
"oP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/labaccess)
"oQ" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/labaccess)
"oR" = (/obj/machinery/firealarm{pixel_x = 32},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"oS" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"oT" = (/obj/watertank,/turf/station/floor,/area/oxygen_storage)
"oU" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/oxygen_storage)
"oV" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/hallways/eastairlock)
"oW" = (/obj/machinery/door/window{dir = 8},/obj/cable,/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"oX" = (/obj/stool/chair{dir = 4},/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"oY" = (/obj/table{icon_state = "sides"; dir = 8},/obj/table{icon_state = "alone"},/obj/item/weapon/paper{name = "Service"; pixel_x = 16; pixel_y = 16; info = "<p>We brought nothing into this world, and it is certain we can carry nothing out. The Lord gave, and the Lord hath taken away; blessed be the name of the Lord. <p><i>Tim. 6. 7. Job 1. 21.</i><p>As it was in the beginning, is now, and worlds without end. Amen."},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"oZ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/wall,/area)
"pa" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/medical)
"pb" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/medical)
"pc" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "id computer"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"pd" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"pe" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"pf" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"pg" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/medical)
"ph" = (/obj/machinery/alarm{pixel_y = -32},/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/medical)
"pi" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/medical)
"pj" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area)
"pk" = (/mob/monkey,/turf/station/floor,/area/toxinlab)
"pl" = (/obj/window{dir = 8},/obj/window{dir = 1},/obj/machinery/atmoalter/canister/anesthcanister,/turf/station/floor,/area/toxinlab)
"pm" = (/obj/item/weapon/card/data{name = "M-conv-H"; function = "worthless"; data = "SBSWAVVWFWVAZSFBS"; special = "human"},/obj/item/weapon/card/data{name = "H-conv-M"; function = "worthless"; data = "CDAFNSDHE"; special = "monkey"},/obj/window{dir = 1},/turf/station/floor,/area/toxinlab)
"pn" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/toxinlab)
"po" = (/obj/item/weapon/storage/disk_kit/disks,/turf/station/floor,/area/toxinlab)
"pp" = (/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/hallways/centralhall)
"pq" = (/obj/start{name = "Research Technician"},/turf/station/floor,/area/hallways/centralhall)
"pr" = (/obj/machinery/door/airlock,/turf/station/floor,/area/testlab1)
"ps" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/hallways/eastairlock)
"pt" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"pu" = (/obj/closet,/turf/station/floor,/area/hallways/eastairlock)
"pv" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/chapel)
"pw" = (/obj/machinery/firealarm{pixel_y = 32},/turf/station/floor,/area/chapel)
"px" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/machinery/power/apc{dir = 4},/turf/station/floor,/area/chapel)
"py" = (/obj/landmark{name = "CTF-wardrobe-Medical"},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/medical)
"pz" = (/obj/landmark{name = "CTF-wardrobe-Medical"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medical)
"pA" = (/obj/window{dir = 4},/obj/cable,/obj/machinery/power/apc,/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/medical)
"pB" = (/obj/stool/bed,/turf/station/floor,/area/medical)
"pC" = (/obj/stool/bed,/obj/item/weapon/radio/intercom{pixel_y = -32},/turf/station/floor,/area/medical)
"pD" = (/obj/machinery/atmoalter/siphs/scrubbers/port,/turf/station/floor,/area/medical)
"pE" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medical)
"pF" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/medical)
"pG" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/toxinlab)
"pH" = (/obj/sp_start{name = "gooddoggytreat"; desc = "Monkey in Med. Lab."; special = 3},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/toxinlab)
"pI" = (/obj/machinery/firealarm{pixel_y = -32},/obj/window{dir = 8},/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/toxinlab)
"pJ" = (/obj/item/weapon/card/data{name = "DNA-help"; function = "dna_seq"},/turf/station/floor,/area/toxinlab)
"pK" = (/obj/item/weapon/card/data{name = "C-Help"; function = "dna_help"},/turf/station/floor,/area/toxinlab)
"pL" = (/obj/item/weapon/card/data{name = "M-Mutate"; function = "data_mutate"; data = "14A"; special = ""},/obj/item/weapon/card/data{name = "S-Mutate"; function = "data_mutate"; data = "CDE"; special = ""},/obj/item/weapon/card/data{name = "A-Mutate"; function = "data_mutate"; data = "AEC"; special = ""},/turf/station/floor,/area/toxinlab)
"pM" = (/obj/start{name = "Research Assistant"},/turf/station/floor,/area/hallways/centralhall)
"pN" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/closet/l3closet,/turf/station/floor,/area/testlab1)
"pO" = (/turf/station/floor,/area/testlab1)
"pP" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/testlab1)
"pQ" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/testlab1)
"pR" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/pen,/turf/station/floor,/area/testlab1)
"pS" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/obj/item/weapon/timer,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/pill_canister/antitoxin,/turf/station/floor,/area/testlab1)
"pT" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/heater{heatrate = 1.5e+006},/turf/station/floor,/area/testlab1)
"pU" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/hallways/eastairlock)
"pV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/firedoor,/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/chapel)
"pW" = (/obj/machinery/door/window{dir = 4},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medical)
"pX" = (/obj/machinery/door/window{dir = 8},/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/medical)
"pY" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "UI-Replace"; function = "dna_replace"; special = "UI"},/obj/item/weapon/card/data{name = "UE-Replace"; function = "dna_replace"; special = "UE"},/obj/item/weapon/card/data{name = "SE-Replace"; function = "dna_replace"; special = "SE"},/obj/item/weapon/card/data{name = "SI-Replace"; function = "dna_replace"; special = "SI"},/obj/item/weapon/storage/disk_kit/disks2{name = "DNA-Replace"},/turf/station/floor,/area/toxinlab)
"pZ" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "Disk-Display"; function = "disk_dis"; data = ""; special = null},/obj/item/weapon/card/data{name = "Disk-Erase"; function = "disk_erase"; data = "12"; special = null},/obj/item/weapon/card/data{name = "Disk-Copy"; function = "disk_copy"; data = "12"; special = null},/obj/item/weapon/card/data{name = "Data-Clear"; function = "data_clear"; data = "12"; special = null},/obj/item/weapon/storage/disk_kit/disks2{name = "Disk-Controllers"},/turf/station/floor,/area/toxinlab)
"qa" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "UE-Human"; data = "493DB249EB6D13236100A37000800AB71"},/obj/item/weapon/card/data{name = "SI-Human"; data = "5BDFE293BA5500F9FFFD500AAFFE"},/obj/item/weapon/card/data{name = "SE-Human"; data = "CDE375C9A6C25A7DBDA50EC05AC6CEB63"},/obj/item/weapon/storage/disk_kit/disks2{name = "Human DNA"},/turf/station/floor,/area/toxinlab)
"qb" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "SE-Monkey"; data = "CDEAF5B90AADBC6BA8033DB0A7FD613FA"},/obj/item/weapon/card/data{name = "SI-Monkey"; data = "2B6696D2B127E5A4"},/obj/item/weapon/card/data{name = "UE-Monkey"; data = "C8FFFE7EC09D80AEDEDB9A5A0B4085B61"},/obj/item/weapon/storage/disk_kit/disks2{name = "Monkey DNA"},/turf/station/floor,/area/toxinlab)
"qc" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "SE-Add"; function = "dna_add"; special = "SE"},/obj/item/weapon/card/data{name = "SI-Add"; function = "dna_add"; special = "SI"},/obj/item/weapon/card/data{name = "UE-Add"; function = "dna_add"; special = "UE"},/obj/item/weapon/card/data{name = "UI-Add"; function = "dna_add"; special = "UI"},/obj/item/weapon/storage/disk_kit/disks2{name = "DNA-Add"},/turf/station/floor,/area/toxinlab)
"qd" = (/obj/table{icon_state = "sides"; dir = 1},/obj/item/weapon/card/data{name = "UE-Trunicate"; function = "dna_trun"; data = "32"; special = "UE"},/obj/item/weapon/card/data{name = "SI-Trunicate"; function = "dna_trun"; data = "16"; special = "SI"},/obj/item/weapon/card/data{name = "SE-Trunicate"; function = "dna_trun"; data = "32"; special = "SE"},/obj/item/weapon/card/data{name = "UI-Trunicate"; function = "dna_trun"; data = "12"; special = "UI"},/obj/item/weapon/storage/disk_kit/disks2{name = "DNA-Trunicate"},/turf/station/floor,/area/toxinlab)
"qe" = (/obj/machinery/door/window,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/hallways/centralhall)
"qf" = (/obj/machinery/door/airlock{access = "1300"},/turf/station/floor,/area/hallways/centralhall)
"qg" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/testlab1)
"qh" = (/obj/item/weapon/clipboard,/turf/station/floor,/area/testlab1)
"qi" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/testlab1)
"qj" = (/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/testlab1)
"qk" = (/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/hallways/eastairlock)
"ql" = (/obj/machinery/camera{name = ""; icon_state = "blank"; dir = 4; network = "AS"; c_tag = "target scan 2"; invuln = 1},/turf/space,/area)
"qm" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/station_teleport)
"qn" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/station_teleport)
"qo" = (/turf/station/floor,/area/station_teleport)
"qp" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/station_teleport)
"qq" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/radio/intercom{pixel_x = 32; freq = 140.2},/turf/station/floor,/area/station_teleport)
"qr" = (/obj/secloset/personal,/turf/station/floor,/area/crew_quarters)
"qs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/crew_quarters)
"qt" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/secloset/personal,/turf/station/floor,/area/crew_quarters)
"qu" = (/obj/machinery/alarm{pixel_y = 24},/obj/secloset/personal,/turf/station/floor,/area/crew_quarters)
"qv" = (/obj/machinery/computer/card,/turf/station/floor,/area/hallways/loungehall)
"qw" = (/turf/station/floor,/area/hallways/loungehall)
"qx" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/loungehall)
"qy" = (/obj/closet/emcloset,/turf/station/floor,/area/hallways/loungehall)
"qz" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area/hallways/loungehall)
"qA" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/loungehall)
"qB" = (/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/testlab1)
"qC" = (/obj/item/weapon/radio/intercom{pixel_x = 32; freq = 140.4},/turf/station/floor,/area/testlab1)
"qD" = (/obj/machinery/atmoalter/siphs/scrubbers/port,/turf/station/floor,/area/hallways/eastairlock)
"qE" = (/obj/machinery/camera{dir = 4; c_tag = "Teleporter"},/turf/station/floor,/area/station_teleport)
"qF" = (/obj/machinery/computer/teleporter,/turf/station/floor,/area/station_teleport)
"qG" = (/obj/machinery/teleport/station,/turf/station/floor,/area/station_teleport)
"qH" = (/obj/machinery/teleport/hub,/turf/station/floor,/area/station_teleport)
"qI" = (/obj/machinery/door/airlock{access = "4000"},/turf/station/floor,/area/station_teleport)
"qJ" = (/turf/station/floor,/area/crew_quarters)
"qK" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/crew_quarters)
"qL" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent{tag = "dbg"},/turf/station/floor,/area/crew_quarters)
"qM" = (/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/crew_quarters)
"qN" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/loungehall)
"qO" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/loungehall)
"qP" = (/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/hallways/loungehall)
"qQ" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/hallways/loungehall)
"qR" = (/obj/machinery/firealarm{pixel_y = 32},/turf/station/floor,/area/hallways/loungehall)
"qS" = (/obj/item/weapon/storage/toolbox,/turf/station/floor,/area/hallways/loungehall)
"qT" = (/obj/machinery/firealarm{pixel_x = 0; pixel_y = 32},/turf/station/floor,/area/hallways/loungehall)
"qU" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/hallways/loungehall)
"qV" = (/obj/item/weapon/radio/intercom{pixel_y = 32; freq = 140},/turf/station/floor,/area/hallways/labaccess)
"qW" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/hallways/labaccess)
"qX" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/hallways/centralhall)
"qY" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; cell_type = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/testlab1)
"qZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/testlab1)
"ra" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/testlab1)
"rb" = (/obj/start{name = "Toxin Researcher"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/testlab1)
"rc" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/testlab1)
"rd" = (/obj/machinery/door/airlock{access = "1300"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/testlab1)
"re" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"rf" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"rg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"rh" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "alone"},/obj/item/weapon/hand_tele,/obj/item/weapon/radio/beacon,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/station_teleport)
"ri" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{cell_type = 0},/turf/station/floor,/area/station_teleport)
"rj" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/station_teleport)
"rk" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/station_teleport)
"rl" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/crew_quarters)
"rm" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/crew_quarters)
"rn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/crew_quarters)
"ro" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/crew_quarters)
"rp" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/crew_quarters)
"rq" = (/obj/machinery/door/firedoor,/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/crew_quarters)
"rr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rs" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rt" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/hallways/loungehall)
"ru" = (/obj/machinery/atmoalter/siphs/fullairsiphon/port,/turf/station/floor,/area/hallways/loungehall)
"rv" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/siphs/scrubbers/port,/turf/station/floor,/area/hallways/loungehall)
"rw" = (/obj/machinery/light_switch{pixel_x = 24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"rx" = (/obj/machinery/light_switch{pixel_x = -24},/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/testlab1)
"ry" = (/obj/machinery/camera{dir = 8; c_tag = "Toxin Research Lab"},/obj/item/weapon/extinguisher,/turf/station/floor,/area/testlab1)
"rz" = (/obj/cable,/obj/machinery/power/apc,/turf/station/floor,/area/hallways/eastairlock)
"rA" = (/obj/machinery/atmoalter/siphs/fullairsiphon/port,/turf/station/floor,/area/hallways/eastairlock)
"rB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/crew_quarters)
"rC" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "4400"},/turf/station/floor,/area/crew_quarters)
"rD" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "4400"},/obj/machinery/light_switch{pixel_x = -24},/turf/station/floor,/area/crew_quarters)
"rE" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/hallways/loungehall)
"rF" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/loungehall)
"rG" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rH" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rI" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/hallways/loungehall)
"rJ" = (/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rK" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rL" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rM" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/loungehall)
"rN" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"rO" = (/obj/machinery/door/window{dir = 4},/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"rP" = (/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/hallways/centralhall)
"rQ" = (/obj/machinery/connector{tag = ""; suffix = ""},/obj/machinery/atmoalter/canister/poisoncanister{tag = ""; suffix = ""; c_status = 3},/turf/station/floor,/area/testlab1)
"rR" = (/obj/machinery/connector{tag = ""; suffix = ""},/turf/station/floor,/area/testlab1)
"rS" = (/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/testlab1)
"rT" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/watertank,/turf/station/floor,/area/testlab1)
"rU" = (/obj/machinery/atmoalter/siphs/fullairsiphon/port,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/hallways/eastairlock)
"rV" = (/obj/stool/bed,/obj/item/weapon/bedsheet,/obj/landmark/alterations{name = "monkey"; icon = 'monkey.dmi'; icon_state = "marker"},/turf/station/floor,/area/crew_quarters)
"rW" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/crew_quarters)
"rX" = (/obj/stool/bed,/obj/item/weapon/bedsheet,/turf/station/floor,/area/crew_quarters)
"rY" = (/obj/grille,/obj/window,/obj/window{dir = 1},/turf/station/floor,/area/hallways/loungehall)
"rZ" = (/obj/grille,/obj/window,/obj/window{dir = 1},/obj/window{dir = 4},/turf/station/floor,/area/hallways/loungehall)
"sa" = (/obj/machinery/door/window{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/loungehall)
"sb" = (/obj/grille,/obj/window,/obj/window{dir = 1},/obj/window{dir = 8},/turf/station/floor,/area/hallways/loungehall)
"sc" = (/obj/machinery/door/firedoor,/obj/machinery/firealarm{pixel_x = 32},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/security)
"sd" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "3000"},/turf/station/floor,/area/security)
"se" = (/obj/machinery/connector{p_dir = 2},/obj/machinery/atmoalter/canister/anesthcanister{c_per = 1e+006; c_status = 3},/turf/station/floor,/area/security)
"sf" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/south_access)
"sg" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/turf/station/floor,/area/testlab1)
"sh" = (/obj/item/weapon/wrench,/turf/station/floor,/area/testlab1)
"si" = (/obj/machinery/computer/atmosphere/siphonswitch,/obj/machinery/door_control{name = "Emergency Vent Control"; pixel_y = -28; id = "bd1"},/turf/station/floor,/area/testlab1)
"sj" = (/obj/machinery/door/window{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"sk" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/crew_quarters)
"sl" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/machinery/power/apc{dir = 4},/turf/station/floor,/area/crew_quarters)
"sm" = (/obj/table{icon_state = "alone"},/turf/station/floor,/area/crew_quarters)
"sn" = (/obj/rack,/obj/item/weapon/clothing/under/blue,/obj/item/weapon/radio/headset,/turf/station/floor,/area/crew_quarters)
"so" = (/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor,/area/lounge)
"sp" = (/turf/station/floor,/area/lounge)
"sq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/lounge)
"sr" = (/obj/watertank,/turf/station/floor,/area/lounge)
"ss" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/loungehall)
"st" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/siphs/fullairsiphon/port,/turf/station/floor,/area/hallways/loungehall)
"su" = (/obj/secloset/security1,/turf/station/floor,/area/security)
"sv" = (/obj/item/weapon/clipboard,/obj/item/weapon/paper/courtroom,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 1; cell_type = 2},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/security)
"sw" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/table,/obj/machinery/recharger,/obj/item/weapon/clothing/glasses/thermal,/obj/machinery/firealarm{pixel_y = 32},/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/security)
"sx" = (/obj/secloset/security2,/turf/station/floor,/area/security)
"sy" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/security)
"sz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/security)
"sA" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/security)
"sB" = (/turf/station/floor,/area/security)
"sC" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/r_wall,/area)
"sD" = (/obj/machinery/light_switch{pixel_x = 24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/south_access)
"sE" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/floor,/area/testlab1)
"sF" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/manifold{dir = 8},/turf/station/floor,/area/testlab1)
"sG" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/floor,/area/testlab1)
"sH" = (/obj/closet/emcloset,/turf/station/floor,/area/shuttle_airlock)
"sI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/shuttle_airlock)
"sJ" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/shuttle_airlock)
"sK" = (/obj/landmark{name = "Nuclear-Closet"},/turf/station/floor,/area/shuttle_airlock)
"sL" = (/turf/station/floor,/area/shuttle_airlock)
"sM" = (/obj/landmark/alterations{name = "prison shuttle"},/turf/station/floor,/area/shuttle_airlock)
"sN" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/floor,/area)
"sO" = (/obj/machinery/door/window{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/crew_quarters)
"sP" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/crew_quarters)
"sQ" = (/obj/machinery/light_switch{pixel_x = -24},/turf/station/floor,/area/lounge)
"sR" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/lounge)
"sS" = (/obj/stool,/turf/station/floor,/area/lounge)
"sT" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/lounge)
"sU" = (/obj/landmark{name = "CTF-wardrobe-Lounge"},/turf/station/floor,/area/lounge)
"sV" = (/obj/machinery/door/airlock{access = "0001"},/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/aircontrol)
"sW" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/secloset/security1,/turf/station/floor,/area/security)
"sX" = (/obj/start{name = "Forensic Technician"},/turf/station/floor,/area/security)
"sY" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/security)
"sZ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/security)
"ta" = (/obj/table,/obj/item/weapon/game_kit,/turf/station/floor,/area/brig)
"tb" = (/turf/station/floor,/area/brig)
"tc" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/closet/wardrobe/orange,/turf/station/floor,/area/brig)
"td" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/south_access)
"te" = (/obj/machinery/door/airlock{access = "1200"},/turf/station/floor,/area/testlab1)
"tf" = (/turf/station/floor{icon_state = "Floor3"},/area/testlab1)
"tg" = (/obj/landmark/alterations{name = "Experimental Technology"},/obj/machinery/vent{dir = 1; p_dir = 1},/turf/station/floor{icon_state = "Floor3"},/area/testlab1)
"th" = (/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor{icon_state = "Floor3"},/area/testlab1)
"ti" = (/obj/machinery/alarm{pixel_x = 32},/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor{icon_state = "Floor3"},/area/testlab1)
"tj" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/shuttle_airlock)
"tk" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/shuttle_airlock)
"tl" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/stool/bed,/turf/station/floor,/area/sleep_area_annexe)