-
Notifications
You must be signed in to change notification settings - Fork 7
/
ss13h_new.dmp
3432 lines (3424 loc) · 611 KB
/
ss13h_new.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
"aaa" = (/turf/space,/area)
"aab" = (/obj/grille,/turf/station/floor,/area)
"aac" = (/obj/machinery/power/solar{id = 2},/turf/station/floor,/area)
"aad" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"aae" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"aaf" = (/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)
"aag" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"aah" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"aai" = (/turf/station/wall,/area)
"aaj" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/north_solar)
"aak" = (/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/north_solar)
"aal" = (/obj/machinery/door/airlock{access = "2000"},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/north_solar)
"aam" = (/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/north_solar)
"aan" = (/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/north_solar)
"aao" = (/turf/station/r_wall,/area)
"aap" = (/obj/move/airtunnel/connector/wall,/turf/space,/area/airtunnel1)
"aaq" = (/obj/machinery/camera{dir = 4; c_tag = "Northern Airlock"},/obj/machinery/at_indicator{pixel_x = -32; pixel_y = 0},/turf/station/floor,/area/north_solar)
"aar" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/north_solar)
"aas" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/north_solar)
"aat" = (/obj/machinery/power/smes{output = 12000; charge = 0; chargelevel = 12000; n_tag = "Aux. Solar Generator"},/turf/station/floor,/area/north_solar)
"aau" = (/obj/machinery/power/solar_control{id = 2},/turf/station/floor,/area/north_solar)
"aav" = (/obj/securearea,/turf/station/r_wall,/area)
"aaw" = (/obj/move/airtunnel/connector,/obj/machinery/alarm/indicator,/turf/space,/area/airtunnel1)
"aax" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/north_solar)
"aay" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/north_solar)
"aaz" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/north_solar)
"aaA" = (/obj/machinery/power/terminal{dir = 1},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/north_solar)
"aaB" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/at_indicator{pixel_y = 32},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area)
"aaC" = (/obj/machinery/door/airlock{access = "2000"},/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area)
"aaD" = (/obj/move/airtunnel/connector,/turf/space,/area/airtunnel1)
"aaE" = (/obj/machinery/door/airlock,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/north_solar)
"aaF" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/north_solar)
"aaG" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/north_solar)
"aaH" = (/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/floor,/area/north_solar)
"aaI" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "2000"},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/north_solar)
"aaJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area)
"aaK" = (/obj/machinery/light_switch{pixel_x = -24; pixel_y = 0},/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/north_solar)
"aaL" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/north_solar)
"aaM" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/north_solar)
"aaN" = (/turf/station/floor,/area/north_solar)
"aaO" = (/obj/machinery/alarm{pixel_y = 24},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/north_solar)
"aaP" = (/obj/machinery/door/airlock{access = "3000"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/north_solar)
"aaQ" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/r_wall,/area)
"aaR" = (/obj/machinery/door/airlock{access = "2000"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area)
"aaS" = (/obj/machinery/computer/airtunnel,/turf/station/floor,/area)
"aaT" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/r_wall,/area)
"aaU" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/r_wall,/area)
"aaV" = (/obj/machinery/camera{dir = 4; c_tag = "Air Tunnel West"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/r_wall,/area)
"aaW" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/r_wall,/area)
"aaX" = (/turf/station/r_wall,/area/airtunnel1)
"aaY" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/floor,/area/airtunnel1)
"aaZ" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area/airtunnel1)
"aba" = (/obj/machinery/camera{dir = 4; c_tag = "Air Tunnel East"},/turf/station/floor,/area/airtunnel1)
"abb" = (/turf/station/floor,/area/airtunnel1)
"abc" = (/obj/machinery/power/monitor,/turf/station/floor,/area/north_solar)
"abd" = (/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/north_solar)
"abe" = (/obj/machinery/power/apc,/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/north_solar)
"abf" = (/obj/machinery/firealarm{pixel_y = -32},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/north_solar)
"abg" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/north_solar)
"abh" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/north_solar)
"abi" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/north_solar)
"abj" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/r_wall,/area)
"abk" = (/obj/machinery/light_switch{pixel_x = -16; pixel_y = 0},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abl" = (/obj/machinery/turretid{pixel_x = 0; pixel_y = -24},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abm" = (/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abn" = (/obj/machinery/door/airlock{access = "2000"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abo" = (/obj/window{icon_state = "rwindow"; dir = 4; invisibility = 0; reinf = 1},/obj/machinery/turret,/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abp" = (/obj/machinery/turret,/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abq" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/wall,/area)
"abr" = (/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)
"abs" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/wall,/area)
"abt" = (/obj/machinery/door/airlock,/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_access)
"abu" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/wall,/area)
"abv" = (/obj/grille,/turf/space,/area)
"abw" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 8},/turf/space,/area/arrival/shuttle)
"abx" = (/obj/move/wall,/turf/space,/area/arrival/shuttle)
"aby" = (/obj/move/wall{icon_state = "wall2"},/turf/space,/area/arrival/shuttle)
"abz" = (/obj/machinery/shuttle/engine/propulsion/burst/right{dir = 8},/turf/space,/area/arrival/shuttle)
"abA" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/r_wall,/area)
"abB" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/securearea,/turf/station/r_wall,/area)
"abC" = (/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/r_wall,/area)
"abD" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/r_wall,/area)
"abE" = (/obj/grille,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"abF" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/wall,/area)
"abG" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/floor,/area/engine_access)
"abH" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"abI" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine_access)
"abJ" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 4},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"abK" = (/obj/machinery/pipes{tag = ""; icon_state = "6"; p_dir = 6},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"abL" = (/obj/move/wall{icon_state = "wall2"},/obj/machinery/pipes,/turf/space,/area/arrival/shuttle)
"abM" = (/obj/move/wall{icon_state = "wall2"},/obj/machinery/manifold{dir = 1},/turf/space,/area/arrival/shuttle)
"abN" = (/obj/machinery/shuttle/engine/propulsion{dir = 8},/turf/space,/area/arrival/shuttle)
"abO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille,/obj/machinery/camera{dir = 8; c_tag = "AI Upload Airlock Entrance"},/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"abP" = (/obj/machinery/turret,/turf/station/floor,/area/turret_protected/ai_upload)
"abQ" = (/obj/machinery/door/window{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"abR" = (/obj/shuttle/door,/turf/space,/area/arrival/shuttle)
"abS" = (/obj/machinery/pipes,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"abT" = (/obj/machinery/manifold{dir = 1},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"abU" = (/obj/move/wall{icon_state = "wall2"},/obj/machinery/manifold,/turf/space,/area/arrival/shuttle)
"abV" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/grille,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"abW" = (/obj/machinery/camera{name = "AI Upload Halls"; dir = 8; c_tag = "AI Upload Station"},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"abX" = (/obj/machinery/power/apc{dir = 1},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/turret_protected/ai_upload)
"abY" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/turret_protected/ai_upload)
"abZ" = (/obj/machinery/computer/aiupload,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/turret_protected/ai_upload)
"aca" = (/obj/machinery/light_switch{pixel_y = 24},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/turret_protected/ai_upload)
"acb" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "5555"},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/ai_upload)
"acc" = (/obj/machinery/door/airlock{access = "5555"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/ai_upload)
"acd" = (/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"ace" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/wall,/area)
"acf" = (/obj/machinery/at_indicator{pixel_y = 32},/turf/station/floor,/area/engine_access)
"acg" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/engine_access)
"ach" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/engine_access)
"aci" = (/obj/machinery/shuttle/engine/propulsion{dir = 4},/turf/space,/area/arrival/shuttle)
"acj" = (/obj/machinery/manifold,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"ack" = (/obj/machinery/manifold{dir = 8},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acl" = (/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acm" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 8},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acn" = (/obj/shuttle/door,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aco" = (/obj/machinery/shuttle/engine/propulsion/burst/left{dir = 8},/turf/space,/area/arrival/shuttle)
"acp" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/turret_protected/ai_upload)
"acq" = (/turf/station/floor,/area/turret_protected/ai_upload)
"acr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/turret_protected/ai_upload)
"acs" = (/obj/machinery/door/window{dir = 4},/obj/machinery/turretid{pixel_x = 24},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"act" = (/obj/secloset/personal,/obj/machinery/camera{dir = 4; c_tag = "Crew Shuttle Disembarkment Hall North"},/turf/station/floor,/area/engine_access)
"acu" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine_access)
"acv" = (/turf/station/floor,/area/engine_access)
"acw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine_access)
"acx" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acy" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acz" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/obj/machinery/atmoalter/canister/co2canister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acA" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 4},/turf/space,/area/arrival/shuttle)
"acB" = (/obj/rack,/obj/item/weapon/aiModule/protectStation,/turf/station/floor,/area/turret_protected/ai_upload)
"acC" = (/obj/rack,/obj/item/weapon/aiModule/prototypeEngineOffline,/turf/station/floor,/area/turret_protected/ai_upload)
"acD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/rack,/obj/item/weapon/aiModule/quarantine,/turf/station/floor,/area/turret_protected/ai_upload)
"acE" = (/turf/station/wall,/area/turret_protected/computer_core)
"acF" = (/obj/secloset/personal,/turf/station/floor,/area/engine_access)
"acG" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 1},/turf/space,/area/arrival/shuttle)
"acH" = (/obj/rack,/obj/item/weapon/aiModule/safeguard,/turf/station/floor,/area/turret_protected/ai_upload)
"acI" = (/obj/rack,/obj/item/weapon/aiModule/teleporterOffline,/turf/station/floor,/area/turret_protected/ai_upload)
"acJ" = (/obj/machinery/camera{dir = 8; c_tag = "AI Upload Station"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/rack,/obj/item/weapon/aiModule/oneHuman,/turf/station/floor,/area/turret_protected/ai_upload)
"acK" = (/obj/machinery/light_switch{pixel_y = 24},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acL" = (/obj/machinery/power/apc{dir = 1; access = "5555/5555/5555"},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acM" = (/obj/item/weapon/radio/intercom{name = "Station Intercom (Radio) #1"; desc = "Address with \[1]"; pixel_x = 0; pixel_y = 32; freq = 145.7; number = 1},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acN" = (/obj/item/weapon/radio/intercom{name = "Station Intercom (Radio) #2"; desc = "Address with \[2]"; pixel_x = 0; pixel_y = 32; number = 2},/obj/start{name = "AI"},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acO" = (/obj/item/weapon/radio/intercom{name = "Station Intercom (Radio) #3"; desc = "Address with #3"; pixel_x = 0; pixel_y = 32; freq = 144.9; number = 3},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acP" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acQ" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"acR" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine_access)
"acS" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine_access)
"acT" = (/obj/closet/wardrobe/mixed,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acU" = (/obj/secloset/personal,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acV" = (/obj/machinery/power/smes,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"acW" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "5555"},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"acX" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "5555"},/obj/machinery/turretid{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/turret_protected/ai_upload)
"acY" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/turret_protected/ai_upload)
"acZ" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "5555"},/turf/station/floor,/area/turret_protected/ai_upload)
"ada" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/turret,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/turret_protected/ai_upload)
"adb" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "5555"},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adc" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"add" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"ade" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adf" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/turret,/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adg" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adh" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/engine_access)
"adi" = (/obj/stool/chair{dir = 8},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/start)
"adj" = (/obj/move/wall{icon_state = "diagonalWall"},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"adk" = (/obj/grille,/turf/station/floor,/area/engine)
"adl" = (/obj/window{icon_state = "rwindow"; dir = 4; invisibility = 0; reinf = 1},/turf/station/floor,/area/turret_protected/ai_upload_foyer)
"adm" = (/obj/machinery/light_switch{pixel_x = 16; pixel_y = 0},/turf/station/floor,/area/turret_protected/ai_upload)
"adn" = (/turf/station/r_wall,/area/turret_protected/ai_upload)
"ado" = (/obj/machinery/door/airlock{access = "5555"},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/turret_protected/ai_upload)
"adp" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/station/r_wall,/area/turret_protected/ai_upload)
"adq" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/station/r_wall,/area)
"adr" = (/obj/grille,/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{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"ads" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"adt" = (/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/r_wall,/area)
"adu" = (/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/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adv" = (/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/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adw" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adx" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"ady" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/turret,/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adz" = (/obj/machinery/camera{dir = 2; c_tag = "Crew Shuttle"},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"adA" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "6"},/obj/lattice,/turf/space,/area/engine)
"adB" = (/obj/machinery/pipes/heat_exch,/obj/lattice,/turf/space,/area/engine)
"adC" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "10"},/obj/lattice,/turf/space,/area/engine)
"adD" = (/turf/station/r_wall,/area/engine)
"adE" = (/obj/rack,/obj/item/weapon/aiModule/reset,/turf/station/floor,/area/turret_protected/ai_upload)
"adF" = (/obj/rack,/obj/item/weapon/aiModule/protectStation,/obj/item/weapon/aiModule/safeguard,/obj/item/weapon/aiModule/prototypeEngineOffline,/obj/item/weapon/aiModule/teleporterOffline,/obj/item/weapon/aiModule/quarantine,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/reset,/turf/station/floor,/area/turret_protected/ai_upload)
"adG" = (/obj/grille,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"adH" = (/obj/grille,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"adI" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adJ" = (/obj/machinery/power/monitor,/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adK" = (/obj/machinery/turretid,/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adL" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adM" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/station/floor,/area/engine_access)
"adN" = (/obj/machinery/power/apc{dir = 1},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine_access)
"adO" = (/obj/machinery/door/window,/turf/station/floor,/area/engine_access)
"adP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/door/firedoor,/obj/machinery/door/window,/turf/station/floor,/area/hallways/eastairlock)
"adQ" = (/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/start)
"adR" = (/obj/machinery/power/generator{name = "Shuttle Pilot"; desc = "A shuttle auto-pilot computer core."},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"adS" = (/obj/machinery/computer/hologram_comp,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"adT" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "5"},/obj/lattice,/turf/space,/area/engine)
"adU" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/obj/lattice,/turf/space,/area/engine)
"adV" = (/obj/grille,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"adW" = (/obj/machinery/turret,/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adX" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adY" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"adZ" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"aea" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor/grid{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"aeb" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor{name = "airlessFloor"; oxygen = 0; n2 = 0},/area/turret_protected/computer_core)
"aec" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "9"},/obj/lattice,/turf/space,/area/engine)
"aed" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/r_wall,/area)
"aee" = (/obj/move/wall{icon_state = "diagonalWall"},/turf/space,/area/arrival/shuttle)
"aef" = (/obj/move/wall{icon_state = "diagonalWall"; dir = 1},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeg" = (/obj/closet/wardrobe,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeh" = (/turf/space,/area/engine)
"aei" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/obj/grille,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"aej" = (/obj/grille,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"aek" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/obj/grille,/turf/station/floor{name = "airlessFloor"; icon_state = "Floor1"; intact = 0; oxygen = 0; n2 = 0; checkfire = 0; health = 100; burnt = 1},/area)
"ael" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/r_wall,/area/engine)
"aem" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/r_wall,/area/engine)
"aen" = (/obj/machinery/connector{p_dir = 2},/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeo" = (/obj/machinery/connector{p_dir = 2},/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aep" = (/obj/machinery/connector{p_dir = 2},/obj/machinery/atmoalter/canister/co2canister,/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeq" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/r_wall,/area/engine)
"aer" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{dir = 4; c_tag = "Engine Hallway (W)"},/turf/station/floor,/area/engine/engine_hallway)
"aes" = (/turf/station/floor,/area/engine/engine_hallway)
"aet" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_hallway)
"aeu" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine/engine_hallway)
"aev" = (/obj/landmark/alterations{name = "id computer"},/turf/station/floor,/area/engine/engine_hallway)
"aew" = (/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)
"aex" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/grille,/turf/station/floor,/area)
"aey" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/r_wall,/area)
"aez" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/mob/drone,/turf/station/floor,/area/engine_access)
"aeA" = (/obj/window{dir = 10},/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine_access)
"aeB" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/engine_access)
"aeC" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/r_wall,/area/engine)
"aeD" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"aeE" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"aeF" = (/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_hallway)
"aeG" = (/obj/machinery/firealarm{pixel_y = -32},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"aeH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/r_wall,/area/engine)
"aeI" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_gas_storage)
"aeJ" = (/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)
"aeK" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/engine/engine_gas_storage)
"aeL" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/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)
"aeM" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/engine/floor,/area/aux_engine)
"aeN" = (/turf/station/engine/floor,/area/aux_engine)
"aeO" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/compressor,/turf/station/floor,/area/aux_engine)
"aeP" = (/obj/window{icon_state = "rwindow"; dir = 4; invisibility = 0; reinf = 1},/obj/machinery/power/turbine,/turf/station/floor,/area/aux_engine)
"aeQ" = (/obj/window{icon_state = "rwindow"; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"aeR" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/dispenser,/turf/station/floor,/area/eva_storage)
"aeS" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/dispenser,/turf/station/floor,/area/eva_storage)
"aeT" = (/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)
"aeU" = (/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,/obj/machinery/camera{c_tag = "EVA Storage"},/turf/station/floor,/area/eva_storage)
"aeV" = (/obj/machinery/door/airlock{access = "0002"},/turf/station/floor,/area/engine_access)
"aeW" = (/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeX" = (/obj/machinery/manifold{dir = 2},/turf/station/command/floor{icon_state = "Floor2"},/area/arrival/shuttle)
"aeY" = (/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/engine/generator)
"aeZ" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/obj/machinery/junction{dir = 1},/turf/station/floor,/area/engine/generator)
"afa" = (/turf/station/wall,/area/engine)
"afb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/wall,/area/engine)
"afc" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/engine/engine_hallway)
"afd" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_gas_storage)
"afe" = (/turf/station/floor,/area/engine/engine_gas_storage)
"aff" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/engine/engine_gas_storage)
"afg" = (/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)
"afh" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/aux_engine)
"afi" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/aux_engine)
"afj" = (/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)
"afk" = (/obj/machinery/power/smes{charge = 0; online = 0; n_tag = "Aux. No. 1"},/turf/station/floor,/area/aux_engine)
"afl" = (/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)
"afm" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"afn" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"afo" = (/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)
"afp" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/eva_storage)
"afq" = (/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)
"afr" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/engine_access)
"afs" = (/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"aft" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/generator)
"afu" = (/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)
"afv" = (/obj/machinery/manifold{dir = 4},/turf/station/floor,/area/engine/generator)
"afw" = (/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)
"afx" = (/obj/item/weapon/radio/intercom{pixel_y = 32},/turf/station/floor,/area/engine/generator)
"afy" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/power/monitor,/turf/station/floor,/area/engine/generator)
"afz" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/engine/generator)
"afA" = (/obj/machinery/power/terminal{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/engine/generator)
"afB" = (/obj/machinery/power/smes{n_tag = "Main No. 1"},/turf/station/floor,/area/engine/generator)
"afC" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/obj/machinery/camera{dir = 4; c_tag = "Generator Room (East)"},/turf/station/floor,/area/engine/generator)
"afD" = (/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)
"afE" = (/obj/landmark{name = "CTF-supply-Engine"},/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/engine/engine_hallway)
"afF" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_gas_storage)
"afG" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_gas_storage)
"afH" = (/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)
"afI" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/aux_engine)
"afJ" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/turf/station/floor,/area/aux_engine)
"afK" = (/obj/machinery/power/smes{charge = 0; online = 0; n_tag = "Aux. No. 2"},/turf/station/floor,/area/aux_engine)
"afL" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/r_wall,/area)
"afM" = (/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)
"afN" = (/turf/station/floor,/area/eva_storage)
"afO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/eva_storage)
"afP" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/eva_storage)
"afQ" = (/obj/cable,/obj/machinery/power/apc{dir = 4},/turf/station/floor,/area/eva_storage)
"afR" = (/obj/machinery/computer/engine{id = 3; access = "5000/0030"},/turf/station/floor,/area/engine/prototype_engine)
"afS" = (/obj/machinery/connector{tag = ""; suffix = ""},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"afT" = (/obj/machinery/power/apc{dir = 4; cell_type = 0},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"afU" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/generator)
"afV" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/generator)
"afW" = (/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/generator)
"afX" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/engine/generator)
"afY" = (/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)
"afZ" = (/obj/machinery/power/smes{n_tag = "Main No. 2"},/turf/station/floor,/area/engine/generator)
"aga" = (/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)
"agb" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/wall,/area/engine)
"agc" = (/obj/landmark{name = "CTF-base-Engine"},/turf/station/floor,/area/engine/engine_hallway)
"agd" = (/obj/closet/emcloset,/turf/station/floor,/area/engine/engine_hallway)
"age" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine/engine_gas_storage)
"agf" = (/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)
"agg" = (/obj/machinery/vent{tag = "2"; dir = 4; p_dir = 4},/turf/station/engine/floor,/area/aux_engine)
"agh" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/machinery/pipes,/obj/machinery/meter,/turf/station/engine/floor,/area/aux_engine)
"agi" = (/obj/machinery/valve{dir = 4; id = "auxv1"},/turf/station/floor,/area/aux_engine)
"agj" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/turf/station/floor,/area/aux_engine)
"agk" = (/turf/station/floor,/area/aux_engine)
"agl" = (/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)
"agm" = (/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)
"agn" = (/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)
"ago" = (/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)
"agp" = (/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)
"agq" = (/obj/landmark/alterations{name = "barrier"},/turf/station/wall,/area)
"agr" = (/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/engine_access)
"ags" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine_access)
"agt" = (/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agu" = (/obj/machinery/manifold{dir = 8},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agv" = (/obj/machinery/door_control{pixel_x = 28; pixel_y = 0; id = "smallengine"},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agw" = (/obj/machinery/camera{dir = 4; c_tag = "Generator Room (West)"},/turf/station/floor,/area/engine/generator)
"agx" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/generator)
"agy" = (/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine/generator)
"agz" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/turf/station/floor,/area/engine/generator)
"agA" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/generator)
"agB" = (/obj/machinery/pipes{tag = ""; icon_state = "6"; p_dir = 6},/turf/station/floor,/area/engine/generator)
"agC" = (/obj/machinery/power/terminal{dir = 4},/obj/cable,/turf/station/floor,/area/engine/generator)
"agD" = (/obj/machinery/power/smes{n_tag = "Main No. 3"},/turf/station/floor,/area/engine/generator)
"agE" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine/generator)
"agF" = (/obj/machinery/atmoalter/canister/co2canister,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/engine/engine_gas_storage)
"agG" = (/obj/machinery/atmoalter/canister/co2canister,/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"agH" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/item/weapon/radio/intercom{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"agI" = (/obj/machinery/atmoalter/canister/poisoncanister,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_gas_storage)
"agJ" = (/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"agK" = (/obj/machinery/connector{dir = 4; p_dir = 4},/turf/station/floor,/area/aux_engine)
"agL" = (/obj/machinery/manifold{dir = 8},/turf/station/floor,/area/aux_engine)
"agM" = (/obj/machinery/camera{dir = 4; c_tag = "Control Access"},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"agN" = (/turf/station/floor,/area/controlaccess)
"agO" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"agP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/controlaccess)
"agQ" = (/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/engine/prototype_engine)
"agR" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/obj/machinery/junction{dir = 1},/turf/station/floor,/area/engine/prototype_engine)
"agS" = (/obj/machinery/pipes{tag = ""; icon_state = "6"; p_dir = 6},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/camera{dir = 4; c_tag = "Prototype Engine"},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agT" = (/obj/machinery/pipes,/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agU" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agV" = (/obj/machinery/valve{dir = 1; id = "auxv1"},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agW" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"agX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/door/airlock{access = "5030"; locked = 1},/turf/station/floor,/area/engine/prototype_engine)
"agY" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine/generator)
"agZ" = (/turf/station/floor,/area/engine/generator)
"aha" = (/obj/machinery/circulator{status = 0},/turf/station/floor,/area/engine/generator)
"ahb" = (/obj/machinery/power/generator,/turf/station/floor,/area/engine/generator)
"ahc" = (/obj/machinery/circulator{icon_state = "circ2-off"; side = 2; status = 0},/turf/station/floor,/area/engine/generator)
"ahd" = (/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/floor,/area/engine/generator)
"ahe" = (/obj/machinery/connector,/turf/station/floor,/area/engine/generator)
"ahf" = (/obj/machinery/firealarm{pixel_x = 32},/obj/machinery/power/monitor,/turf/station/floor,/area/engine/generator)
"ahg" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "2030"},/turf/station/floor,/area/engine/engine_gas_storage)
"ahh" = (/obj/machinery/door/poddoor{name = "hatch"; id = "aux1"},/turf/station/engine/floor,/area/aux_engine)
"ahi" = (/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)
"ahj" = (/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)
"ahk" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/atmosphere/siphonswitch,/turf/station/floor,/area/aux_engine)
"ahl" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"ahm" = (/obj/machinery/door/firedoor,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/controlaccess)
"ahn" = (/obj/machinery/door,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/engine_access)
"aho" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/engine_access)
"ahp" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine_access)
"ahq" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine_access)
"ahr" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/engine_access)
"ahs" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/prototype_engine)
"aht" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ahu" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ahv" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ahw" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ahx" = (/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)
"ahy" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/turf/station/floor,/area/engine)
"ahz" = (/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)
"ahA" = (/obj/machinery/pipes,/obj/machinery/meter,/turf/station/floor,/area/engine/generator)
"ahB" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/floor,/area/engine/generator)
"ahC" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/floor,/area/engine/generator)
"ahD" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/obj/machinery/meter,/turf/station/floor,/area/engine/generator)
"ahE" = (/obj/machinery/light_switch{pixel_x = 24; pixel_y = 0},/turf/station/floor,/area/engine/generator)
"ahF" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/wall,/area/engine)
"ahG" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"ahH" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/camera{dir = 4; c_tag = "Engine Hall (Center)"},/turf/station/floor,/area/engine/engine_hallway)
"ahI" = (/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)
"ahJ" = (/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)
"ahK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"ahL" = (/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)
"ahM" = (/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)
"ahN" = (/obj/machinery/igniter,/turf/station/engine/floor,/area/aux_engine)
"ahO" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/engine/floor,/area/aux_engine)
"ahP" = (/obj/machinery/atmoalter/siphs/scrubbers,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/engine/floor,/area/aux_engine)
"ahQ" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/floor,/area/aux_engine)
"ahR" = (/obj/machinery/door_control{pixel_x = 28; pixel_y = 0; id = "aux1"},/turf/station/floor,/area/aux_engine)
"ahS" = (/obj/window,/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/controlaccess)
"ahT" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/controlaccess)
"ahU" = (/obj/window,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"ahV" = (/obj/window,/turf/station/floor,/area/controlaccess)
"ahW" = (/obj/window,/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/controlaccess)
"ahX" = (/obj/window{dir = 8},/obj/window{dir = 4},/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area)
"ahY" = (/obj/machinery/connector{dir = 4; p_dir = 4},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ahZ" = (/obj/machinery/circulator{status = 0},/turf/station/floor,/area/engine/prototype_engine)
"aia" = (/obj/machinery/power/generator,/turf/station/floor,/area/engine/prototype_engine)
"aib" = (/obj/machinery/circulator{icon_state = "circ2-off"; side = 2; status = 0},/turf/station/floor,/area/engine/prototype_engine)
"aic" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/obj/machinery/gas_sensor{id = 3},/obj/machinery/igniter,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine)
"aid" = (/obj/machinery/vent{dir = 1; p_dir = 1},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine)
"aie" = (/obj/grille,/obj/machinery/door/poddoor{name = "hatch"; icon_state = "pdoor0"; opacity = 0; density = 0; p_open = 1; id = "smallengine"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine)
"aif" = (/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)
"aig" = (/obj/table,/obj/item/weapon/clipboard,/obj/item/weapon/paper/engine{pixel_x = 4; pixel_y = 6},/obj/item/weapon/cell{charge = 100},/obj/item/weapon/flashlight,/turf/station/floor,/area/engine/generator)
"aih" = (/obj/closet/emcloset,/turf/station/floor,/area/engine/generator)
"aii" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/generator)
"aij" = (/obj/machinery/pipes{tag = ""; icon_state = "10"; p_dir = 10},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/generator)
"aik" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/turf/station/floor,/area/engine/generator)
"ail" = (/obj/machinery/light_switch{pixel_y = 24},/turf/station/floor,/area/engine/engine_hallway)
"aim" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_hallway)
"ain" = (/obj/machinery/door/window,/turf/station/floor,/area/engine/engine_hallway)
"aio" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/engine/engine_hallway)
"aip" = (/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)
"aiq" = (/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)
"air" = (/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)
"ais" = (/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)
"ait" = (/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/aux_engine)
"aiu" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/aux_engine)
"aiv" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark{name = "CTF-wardrobe-CR"},/turf/station/floor,/area/controlaccess)
"aiw" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/controlaccess)
"aix" = (/obj/machinery/computer/secure_data,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/control_room)
"aiy" = (/obj/machinery/computer/card,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"aiz" = (/obj/table,/obj/item/weapon/paper/Map,/obj/item/weapon/radio/intercom,/turf/station/floor,/area/control_room)
"aiA" = (/obj/machinery/computer/communications,/turf/station/floor,/area/control_room)
"aiB" = (/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)
"aiC" = (/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)
"aiD" = (/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)
"aiE" = (/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/paper_bin,/turf/station/floor,/area/control_room)
"aiF" = (/obj/table{icon_state = "corners"; dir = 5},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"aiG" = (/obj/window{dir = 4},/obj/window{dir = 8},/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/control_room)
"aiH" = (/obj/machinery/camera{dir = 4; c_tag = "Prototype Engine"},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"aiI" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"aiJ" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/machinery/junction{dir = 1},/turf/station/floor,/area/engine)
"aiK" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/inlet,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/machinery/door/poddoor{name = "hatch"; icon_state = "pdoor0"; opacity = 0; density = 0; id = "smallengine_inlet"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine)
"aiL" = (/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)
"aiM" = (/obj/machinery/valve{dir = 1; id = "auxv1"},/turf/station/floor,/area/engine/generator)
"aiN" = (/obj/watertank,/turf/station/floor,/area/engine/engine_hallway)
"aiO" = (/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor,/area/engine/engine_hallway)
"aiP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor,/area/engine/engine_hallway)
"aiQ" = (/obj/landmark{name = "CTF-wardrobe-Engine"},/turf/station/floor,/area/engine/engine_hallway)
"aiR" = (/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)
"aiS" = (/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)
"aiT" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/engine/engine_hallway)
"aiU" = (/obj/item/weapon/extinguisher,/obj/window{dir = 4},/turf/station/floor,/area/engine/engine_hallway)
"aiV" = (/obj/table,/obj/machinery/cell_charger,/turf/station/floor,/area/engine/engine_hallway)
"aiW" = (/obj/item/weapon/extinguisher,/turf/station/floor,/area/engine/engine_hallway)
"aiX" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/aux_engine)
"aiY" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/aux_engine)
"aiZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2020"},/turf/station/floor,/area/aux_engine)
"aja" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark{name = "CTF-wardrobe-CR"},/turf/station/floor,/area/controlaccess)
"ajb" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/controlaccess)
"ajc" = (/turf/station/floor,/area/control_room)
"ajd" = (/obj/stool/chair{dir = 1},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"aje" = (/obj/stool/chair{dir = 1},/turf/station/floor,/area/control_room)
"ajf" = (/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)
"ajg" = (/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)
"ajh" = (/obj/machinery/manifold{dir = 2},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"aji" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/obj/machinery/door_control{pixel_x = 28; pixel_y = 0; id = "smallengine_inlet"},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ajj" = (/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/r_wall,/area/engine)
"ajk" = (/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)
"ajl" = (/obj/grille,/obj/window{icon_state = "rwindow"; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/turf/station/floor,/area/engine)
"ajm" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/engine/engine_hallway)
"ajn" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/aux_engine)
"ajo" = (/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,/obj/item/weapon/flashlight,/turf/station/floor,/area/aux_engine)
"ajp" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/aux_engine)
"ajq" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/controlaccess)
"ajr" = (/obj/window{dir = 10},/obj/item/weapon/extinguisher,/turf/station/floor,/area/control_room)
"ajs" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/control_room)
"ajt" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/control_room)
"aju" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/control_room)
"ajv" = (/obj/stool/chair{dir = 4},/obj/start{name = "Head of Research"},/turf/station/floor,/area/control_room)
"ajw" = (/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)
"ajx" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/engine/prototype_engine)
"ajy" = (/obj/machinery/pipes{tag = ""; icon_state = "6"; p_dir = 6},/turf/station/r_wall,/area/engine)
"ajz" = (/obj/machinery/pipes{tag = ""; icon_state = "9"; p_dir = 9},/turf/station/r_wall,/area/engine)
"ajA" = (/turf/station/floor,/area/repair_bay)
"ajB" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/repair_bay)
"ajC" = (/obj/machinery/alarm{pixel_y = 24},/obj/weldfueltank,/turf/station/floor,/area/repair_bay)
"ajD" = (/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)
"ajE" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ajF" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "6"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ajG" = (/obj/machinery/pipes/heat_exch,/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ajH" = (/obj/machinery/pipes/heat_exch,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ajI" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "10"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ajJ" = (/obj/machinery/door/poddoor{id = "ex"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ajK" = (/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"})
"ajL" = (/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"})
"ajM" = (/obj/item/weapon/radio/intercom{pixel_y = 32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ajN" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/engine,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ajO" = (/obj/machinery/light_switch{pixel_y = 24},/turf/station/floor,/area/engine/engine_storage)
"ajP" = (/turf/station/floor,/area/engine/engine_storage)
"ajQ" = (/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)
"ajR" = (/obj/machinery/door/airlock{access = "2020"},/turf/station/floor,/area/engine/engine_storage)
"ajS" = (/mob/drone,/turf/station/floor,/area/engine/engine_storage)
"ajT" = (/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)
"ajU" = (/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)
"ajV" = (/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)
"ajW" = (/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)
"ajX" = (/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)
"ajY" = (/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)
"ajZ" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"aka" = (/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable,/turf/station/floor,/area/controlaccess)
"akb" = (/obj/machinery/door/window,/turf/station/floor,/area/controlaccess)
"akc" = (/obj/landmark{name = "CTF-base-CR"},/turf/station/floor,/area/control_room)
"akd" = (/obj/table,/obj/item/weapon/paper/jobs,/obj/item/weapon/storage/id_kit,/turf/station/floor,/area/control_room)
"ake" = (/obj/table,/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/glasses/sunglasses,/turf/station/floor,/area/control_room)
"akf" = (/obj/table,/turf/station/floor,/area/control_room)
"akg" = (/obj/stool/chair{dir = 4},/obj/start{name = "Captain"},/turf/station/floor,/area/control_room)
"akh" = (/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)
"aki" = (/obj/machinery/pipes,/turf/station/r_wall,/area/engine)
"akj" = (/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/repair_bay)
"akk" = (/obj/machinery/door/airlock,/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/repair_bay)
"akl" = (/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/machinery/pod{dir = 8},/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/repair_bay)
"akm" = (/obj/machinery/camera{dir = 8; c_tag = "Pod repair bay"},/turf/station/floor,/area/repair_bay)
"akn" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "6"},/obj/machinery/pipes{tag = ""; icon_state = "3"; p_dir = 3},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"ako" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "9"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"akp" = (/obj/window{icon_state = "rwindow"; dir = 1; reinf = 1},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akq" = (/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"})
"akr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"aks" = (/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akt" = (/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"})
"aku" = (/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)
"akv" = (/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)
"akw" = (/obj/watertank,/turf/station/floor,/area/controlaccess)
"akx" = (/obj/window{dir = 4},/turf/station/floor,/area/controlaccess)
"aky" = (/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/control_room)
"akz" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/control_room)
"akA" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/control_room)
"akB" = (/obj/stool/chair{dir = 4},/obj/start{name = "Head of Personnel"},/turf/station/floor,/area/control_room)
"akC" = (/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)
"akD" = (/obj/item/weapon/multitool,/turf/station/floor{icon_state = "Floor1"; intact = 0; checkfire = 0; health = 100; burnt = 1},/area/repair_bay)
"akE" = (/obj/item/weapon/storage/toolbox,/obj/item/weapon/crowbar,/turf/station/floor,/area/repair_bay)
"akF" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "3"},/obj/machinery/pipes{tag = ""; icon_state = "5"; p_dir = 9},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"akG" = (/obj/machinery/gas_sensor{id = 1},/obj/machinery/inlet{dir = 8},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"akH" = (/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)
"akI" = (/obj/machinery/pipes,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"akJ" = (/obj/machinery/pipes,/obj/machinery/meter,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"akK" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/valve{dir = 4},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akL" = (/obj/machinery/manifold{dir = 8},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akM" = (/obj/start{name = "Engineer"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akN" = (/obj/machinery/computer/drone_control,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"akO" = (/obj/closet/emcloset,/turf/station/floor,/area/tech_storage)
"akP" = (/obj/closet/emcloset,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/tech_storage)
"akQ" = (/obj/closet/wardrobe/yellow,/turf/station/floor,/area/tech_storage)
"akR" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/storage/toolbox,/obj/item/weapon/clothing/glasses/meson,/obj/item/weapon/flashlight,/turf/station/floor,/area/tech_storage)
"akS" = (/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},/obj/item/weapon/flashlight,/turf/station/floor,/area/tech_storage)
"akT" = (/obj/table{icon_state = "sides"; dir = 2},/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/storage/toolbox/electrical,/turf/station/floor,/area/tech_storage)
"akU" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/clothing/glasses/sunglasses,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/clothing/ears/earmuffs,/turf/station/floor,/area/tech_storage)
"akV" = (/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/controlaccess)
"akW" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/controlaccess)
"akX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/controlaccess)
"akY" = (/obj/window{dir = 4},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"akZ" = (/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)
"ala" = (/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)
"alb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/control_room)
"alc" = (/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)
"ald" = (/obj/stool/chair,/turf/station/floor,/area/control_room)
"ale" = (/obj/table{icon_state = "corners"; dir = 9},/obj/item/weapon/bottle/rejuvenators,/obj/item/weapon/syringe,/turf/station/floor,/area/control_room)
"alf" = (/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)
"alg" = (/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)
"alh" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/repair_bay)
"ali" = (/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)
"alj" = (/obj/machinery/pipes/heat_exch{tag = ""; icon_state = "5"},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"alk" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"all" = (/obj/machinery/connector{tag = ""; icon_state = "connector"; dir = 1; p_dir = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"alm" = (/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"})
"aln" = (/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor,/area/engine/engine_hallway)
"alo" = (/obj/machinery/door/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/engine/engine_storage)
"alp" = (/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)
"alq" = (/obj/start{name = "Station Technician"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/tech_storage)
"alr" = (/turf/station/floor,/area/tech_storage)
"als" = (/obj/stool,/turf/station/floor,/area/tech_storage)
"alt" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/radio/intercom{pixel_x = 32},/turf/station/floor,/area/tech_storage)
"alu" = (/obj/machinery/door/firedoor,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"alv" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/paper/courtroom,/turf/station/floor,/area/control_room)
"alw" = (/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)
"alx" = (/obj/landmark{name = "CTF-supply-CR"},/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/control_room)
"aly" = (/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)
"alz" = (/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)
"alA" = (/obj/machinery/computer/airtunnel,/turf/station/floor,/area/control_room)
"alB" = (/obj/machinery/computer/engine,/turf/station/floor,/area/control_room)
"alC" = (/obj/table{icon_state = "corners"; dir = 10},/obj/machinery/recharger,/turf/station/floor,/area/control_room)
"alD" = (/obj/table{icon_state = "corners"; dir = 6},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area/control_room)
"alE" = (/obj/machinery/door/airlock,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/repair_bay)
"alF" = (/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/obj/machinery/camera{dir = 4; c_tag = "Main Engine"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"alG" = (/obj/machinery/atmoalter/siphs/scrubbers,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"alH" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/weldfueltank,/turf/station/floor,/area/engine/engine_storage)
"alI" = (/obj/item/weapon/storage/backpack,/turf/station/floor,/area/engine/engine_storage)
"alJ" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/autolathe,/turf/station/floor,/area/engine/engine_storage)
"alK" = (/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)
"alL" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/tech_storage)
"alM" = (/obj/start{name = "Technical Assistant"},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/tech_storage)
"alN" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/tech_storage)
"alO" = (/obj/weldfueltank,/turf/station/floor,/area/tech_storage)
"alP" = (/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)
"alQ" = (/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)
"alR" = (/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area)
"alS" = (/obj/machinery/door/poddoor,/turf/station/engine/floor,/area/escapezone)
"alT" = (/obj/machinery/mass_driver{dir = 8},/obj/item/weapon/tank/oxygentank,/turf/station/engine/floor,/area/escapezone)
"alU" = (/obj/machinery/door/window,/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/engine/floor,/area/escapezone)
"alV" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/escapezone)
"alW" = (/obj/machinery/computer/pod{name = "Mass Driver"},/turf/station/floor,/area/escapezone)
"alX" = (/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)
"alY" = (/obj/table{icon_state = "alone"},/obj/item/weapon/clipboard,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver,/obj/item/weapon/analyzer,/obj/item/weapon/flashlight,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"alZ" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ama" = (/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"})
"amb" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/wall,/area/engine)
"amc" = (/obj/landmark/alterations{name = "Security Locker"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"amd" = (/obj/closet/emcloset,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_hallway)
"ame" = (/obj/item/weapon/sheet/metal{amount = 50},/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)
"amf" = (/obj/item/weapon/sheet/metal{amount = 50},/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)
"amg" = (/obj/item/weapon/sheet/metal{amount = 50},/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)
"amh" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/tech_storage)
"ami" = (/obj/grille,/obj/window,/obj/window{dir = 1},/turf/station/floor,/area)
"amj" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/controlaccess)
"amk" = (/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)
"aml" = (/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)
"amm" = (/obj/machinery/atmoalter/canister/poisoncanister{t_status = 1; t_per = 100000},/turf/station/floor,/area)
"amn" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/escapezone)
"amo" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/escapezone)
"amp" = (/obj/item/weapon/hand_tele,/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"amq" = (/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"amr" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 10; reinf = 1},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"ams" = (/obj/machinery/door_control{pixel_x = 0; pixel_y = 28; id = "ex2"},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"amt" = (/obj/closet/wardrobe/yellow,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"amu" = (/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/engine/engine_hallway)
"amv" = (/obj/weldfueltank,/turf/station/floor,/area/engine/engine_hallway)
"amw" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/controlaccess)
"amx" = (/obj/machinery/door/window,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/controlaccess)
"amy" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/computer/security,/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/secure_storage)
"amz" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"amA" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/secure_storage)
"amB" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/stool/bed,/obj/item/weapon/bedsheet,/turf/station/floor,/area/secure_storage)
"amC" = (/obj/machinery/computer/prison_shuttle,/turf/station/floor,/area/secure_storage)
"amD" = (/obj/item/weapon/ammo/a357,/turf/station/floor,/area)
"amE" = (/obj/machinery/door/poddoor{id = 2},/turf/station/engine/floor,/area/escapezone)
"amF" = (/obj/machinery/mass_driver{dir = 8; id = 2},/obj/machinery/pod,/turf/station/engine/floor,/area/escapezone)
"amG" = (/obj/machinery/computer/pod{id = 2},/turf/station/floor,/area/escapezone)
"amH" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/escapezone)
"amI" = (/obj/machinery/computer/engine,/turf/station/floor,/area/escapezone)
"amJ" = (/obj/machinery/computer/communications,/turf/station/floor,/area/escapezone)
"amK" = (/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"amL" = (/obj/machinery/gas_sensor{id = 2},/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"amM" = (/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"})
"amN" = (/obj/machinery/connector{dir = 8; p_dir = 8},/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"amO" = (/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"})
"amP" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"amQ" = (/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"})
"amR" = (/obj/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire,/turf/station/floor,/area/engine/engine_hallway)
"amS" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/controlaccess)
"amT" = (/obj/machinery/power/monitor,/turf/station/floor,/area/secure_storage)
"amU" = (/turf/station/floor,/area/secure_storage)
"amV" = (/obj/secloset/captains,/turf/station/floor,/area/secure_storage)
"amW" = (/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)
"amX" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"amY" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"amZ" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"ana" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/escapezone)
"anb" = (/obj/machinery/igniter,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"anc" = (/obj/machinery/computer/engine{id = 2},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"and" = (/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"})
"ane" = (/obj/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor,/area/engine/engine_hallway)
"anf" = (/obj/watertank,/turf/station/floor,/area/hallways/labaccess)
"ang" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/hallways/labaccess)
"anh" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"ani" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"anj" = (/obj/cable,/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/controlaccess)
"ank" = (/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)
"anl" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/controlaccess)
"anm" = (/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)
"ann" = (/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)
"ano" = (/obj/secloset/highsec,/turf/station/floor,/area/secure_storage)
"anp" = (/obj/machinery/door/poddoor{id = 3},/turf/station/engine/floor,/area/escapezone)
"anq" = (/obj/machinery/mass_driver{dir = 8; id = 3},/obj/machinery/pod{id = 3},/turf/station/engine/floor,/area/escapezone)
"anr" = (/obj/machinery/computer/pod{id = 3},/turf/station/floor,/area/escapezone)
"ans" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/radio/intercom{pixel_x = -32},/turf/station/floor,/area/escapezone)
"ant" = (/turf/station/floor,/area/escapezone)
"anu" = (/obj/cable,/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/escapezone)
"anv" = (/obj/item/weapon/gun/revolver,/obj/grille,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"anw" = (/obj/machinery/atmoalter/siphs/fullairsiphon,/turf/station/engine/floor{oxygen = 3.6e+006; poison = 0; n2 = 0},/area/engine/combustion)
"anx" = (/obj/machinery/injector{dir = 4},/turf/station/wall,/area/engine/engine_control{linkarea = "engine/combustion"})
"any" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/alarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"anz" = (/obj/machinery/firealarm{pixel_y = -32},/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"anA" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/engine/engine_control{linkarea = "engine/combustion"})
"anB" = (/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"})
"anC" = (/turf/station/floor,/area/hallways/labaccess)
"anD" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"anE" = (/obj/machinery/light_switch{pixel_x = 24},/turf/station/floor,/area/hallways/labaccess)
"anF" = (/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)
"anG" = (/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/secure_storage)
"anH" = (/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area)
"anI" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/escapezone)
"anJ" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/escapezone)
"anK" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/escapezone)
"anL" = (/obj/machinery/camera{dir = 4; c_tag = "Engine Hall (South)"},/turf/station/floor,/area/engine/engine_hallway)
"anM" = (/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor,/area/engine/engine_hallway)
"anN" = (/obj/machinery/door/airlock{access = "2000"},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/engine)
"anO" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2000"},/turf/station/floor,/area/hallways/labaccess)
"anP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/hallways/labaccess)
"anQ" = (/obj/machinery/firealarm{pixel_x = 32},/turf/station/floor,/area/hallways/labaccess)
"anR" = (/obj/weldfueltank,/turf/station/floor,/area/toolstorage)
"anS" = (/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)
"anT" = (/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)
"anU" = (/obj/table{icon_state = "sides"; dir = 2},/obj/bedsheetbin,/turf/station/floor,/area/toolstorage)
"anV" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper_bin{amount = 50},/obj/item/weapon/wrapping_paper,/obj/item/weapon/flashlight,/turf/station/floor,/area/toolstorage)
"anW" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/storage/gl_kit,/obj/item/weapon/t_scanner,/turf/station/floor,/area/toolstorage)
"anX" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/obj/item/weapon/clipboard,/turf/station/floor,/area/toolstorage)
"anY" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/cable_coil,/turf/station/floor,/area/toolstorage)
"anZ" = (/obj/item/weapon/sheet/metal{amount = 50},/turf/station/floor,/area/toolstorage)
"aoa" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/multitool,/turf/station/floor,/area/toolstorage)
"aob" = (/turf/station/floor,/area/toolstorage)
"aoc" = (/obj/machinery/autolathe,/turf/station/floor,/area/toolstorage)
"aod" = (/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)
"aoe" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/secure_storage)
"aof" = (/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/secure_storage)
"aog" = (/obj/item/weapon/storage/handcuff_kit,/turf/station/floor,/area/secure_storage)
"aoh" = (/turf/station/floor,/area)
"aoi" = (/obj/machinery/door/poddoor{id = 4},/turf/station/engine/floor,/area/escapezone)
"aoj" = (/obj/machinery/mass_driver{dir = 8; id = 4},/obj/machinery/pod,/turf/station/engine/floor,/area/escapezone)
"aok" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/escapezone)
"aol" = (/obj/machinery/computer/pod{id = 4},/turf/station/floor,/area/escapezone)
"aom" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/escapezone)
"aon" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/escapezone)
"aoo" = (/obj/item/weapon/extinguisher,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/escapezone)
"aop" = (/obj/machinery/door/airlock,/obj/landmark/alterations{name = "barrier"},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/escapezone)
"aoq" = (/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)
"aor" = (/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)
"aos" = (/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)
"aot" = (/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)
"aou" = (/obj/machinery/alarm{pixel_y = -32},/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/obj/cable{icon_state = "0-8"; d2 = 8},/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable,/turf/station/floor,/area/engine/engine_hallway)
"aov" = (/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)
"aow" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"aox" = (/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)
"aoy" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/item/weapon/infra_sensor,/turf/station/floor,/area/toolstorage)
"aoz" = (/obj/item/weapon/timer,/obj/item/weapon/radio/beacon,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"aoA" = (/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)
"aoB" = (/obj/item/weapon/timer,/obj/item/weapon/crowbar,/turf/station/floor,/area/toolstorage)
"aoC" = (/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"aoD" = (/obj/item/weapon/crowbar,/turf/station/floor,/area/toolstorage)
"aoE" = (/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)
"aoF" = (/obj/item/weapon/igniter,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"aoG" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/signaler,/turf/station/floor,/area/toolstorage)
"aoH" = (/obj/item/weapon/igniter,/obj/item/weapon/crowbar,/turf/station/floor,/area/toolstorage)
"aoI" = (/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)
"aoJ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/closet/emcloset,/turf/station/floor,/area/secure_storage)
"aoK" = (/obj/closet/emcloset,/turf/station/floor,/area/secure_storage)
"aoL" = (/obj/closet/emcloset,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/secure_storage)
"aoM" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/closet/emcloset,/turf/station/floor,/area/secure_storage)
"aoN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/escapezone)
"aoO" = (/obj/machinery/door/firedoor,/turf/station/floor,/area/hallways/labaccess)
"aoP" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"aoQ" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/toolstorage)
"aoR" = (/obj/item/weapon/infra_sensor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"aoS" = (/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)
"aoT" = (/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)
"aoU" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/storage/backpack,/obj/item/weapon/crowbar,/obj/item/weapon/clothing/gloves/black,/turf/station/floor,/area/toolstorage)
"aoV" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/radio/signaler,/obj/item/weapon/radio/beacon,/turf/station/floor,/area/toolstorage)
"aoW" = (/obj/item/weapon/sheet/metal{amount = 50},/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)
"aoX" = (/obj/item/weapon/sheet/metal{amount = 50},/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)
"aoY" = (/obj/item/weapon/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/electrical,/turf/station/floor,/area/toolstorage)
"aoZ" = (/obj/machinery/camera{dir = 8; c_tag = "Autolathe"},/obj/item/weapon/sheet/metal{amount = 50},/turf/station/floor,/area/toolstorage)
"apa" = (/obj/closet{name = "coffin"},/turf/station/floor,/area/chapel)
"apb" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/closet{name = "coffin"},/turf/station/floor,/area/chapel)
"apc" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 24},/turf/station/floor,/area/chapel)
"apd" = (/turf/station/floor,/area/chapel)
"ape" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/chapel)
"apf" = (/obj/landmark/alterations{name = "blob-directive"; icon_state = "x3"},/turf/station/floor,/area)
"apg" = (/obj/machinery/door/window{dir = 4},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/toolstorage)
"aph" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 5},/turf/station/floor,/area/hallways/eastairlock)
"api" = (/obj/stool/chair,/turf/station/floor,/area/hallways/eastairlock)
"apj" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"apk" = (/turf/station/floor,/area/hallways/eastairlock)
"apl" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/eastairlock)
"apm" = (/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"apn" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"apo" = (/obj/machinery/camera{name = ""; icon_state = "blank"; dir = 4; network = "AS"; c_tag = "target scan 4"; invuln = 1},/turf/space,/area)
"app" = (/obj/machinery/door,/turf/station/floor,/area/morgue)
"apq" = (/obj/window{dir = 1},/obj/window,/obj/grille,/obj/landmark/alterations{name = "barrier"},/turf/station/floor,/area/medical)
"apr" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/obj/machinery/door/airlock{access = "2000"},/turf/station/floor,/area/medical)
"aps" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/labaccess)
"apt" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/centralhall)
"apu" = (/turf/station/floor,/area/hallways/centralhall)
"apv" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"apw" = (/obj/machinery/alarm{pixel_y = 24},/turf/station/floor,/area/hallways/centralhall)
"apx" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/centralhall)
"apy" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/regular,/turf/station/floor,/area/hallways/eastairlock)
"apz" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper/courtroom,/turf/station/floor,/area/hallways/eastairlock)
"apA" = (/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)
"apB" = (/obj/machinery/computer/pod{name = "Burial"; id = "chap1"; time = 60},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"apC" = (/obj/machinery/door,/turf/station/floor,/area/chapel)
"apD" = (/obj/morgue,/turf/station/floor,/area/morgue)
"apE" = (/turf/station/floor,/area/morgue)
"apF" = (/obj/landmark/alterations{name = "Experimental Technology"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apG" = (/obj/item/weapon/flasks/coolant,/obj/item/weapon/flasks/oxygen,/obj/item/weapon/flasks/plasma,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apH" = (/obj/window{dir = 4},/obj/closet/wardrobe/white,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apI" = (/obj/secloset/medical1,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apJ" = (/obj/machinery/computer/med_data,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apK" = (/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apL" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2000"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apM" = (/obj/machinery/camera{c_tag = "Medical Bay"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apN" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apO" = (/obj/table{icon_state = "corners"; dir = 10},/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apP" = (/obj/table{icon_state = "sides"},/obj/item/weapon/storage/firstaid/fire,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apQ" = (/obj/table{icon_state = "corners"; dir = 6},/obj/item/weapon/storage/firstaid/regular,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"apR" = (/obj/machinery/alarm{pixel_y = 24},/obj/closet/wardrobe/white,/turf/station/floor,/area/medicalresearch)
"apS" = (/obj/closet/l3closet,/turf/station/floor,/area/medicalresearch)
"apT" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/medicalresearch)
"apU" = (/obj/machinery/atmoalter/canister/anesthcanister,/turf/station/floor,/area/medicalresearch)
"apV" = (/obj/machinery/computer/med_data,/turf/station/floor,/area/medicalresearch)
"apW" = (/obj/machinery/firealarm{pixel_y = 32},/turf/station/floor,/area/medicalresearch)
"apX" = (/obj/machinery/computer/atmosphere/siphonswitch,/obj/machinery/camera{c_tag = "Medical Lab"},/turf/station/floor,/area/medicalresearch)
"apY" = (/obj/secloset/medical1,/turf/station/floor,/area/medicalresearch)
"apZ" = (/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/medicalresearch)
"aqa" = (/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/medicalresearch)
"aqb" = (/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/medicalresearch)
"aqc" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/toxin,/turf/station/floor,/area/medicalresearch)
"aqd" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/paper_bin,/turf/station/floor,/area/medicalresearch)
"aqe" = (/obj/machinery/alarm,/turf/station/floor,/area/hallways/labaccess)
"aqf" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"aqg" = (/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)
"aqh" = (/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)
"aqi" = (/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)
"aqj" = (/obj/cable,/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-8"; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"aqk" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"aql" = (/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"aqm" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"aqn" = (/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)
"aqo" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"aqp" = (/obj/machinery/door/firedoor,/obj/machinery/door/window,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"aqq" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"aqr" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/eastairlock)
"aqs" = (/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)
"aqt" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/hallways/eastairlock)
"aqu" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/stool/chair{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"aqv" = (/obj/grille,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"aqw" = (/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)
"aqx" = (/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"aqy" = (/obj/stool/chair{dir = 8},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"aqz" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"aqA" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/morgue)
"aqB" = (/obj/machinery/freezer,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqC" = (/obj/machinery/pipes/flexipipe,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqD" = (/obj/machinery/cryo_cell,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqE" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqF" = (/obj/landmark/alterations{name = "recharger"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqG" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqH" = (/obj/table{icon_state = "sides"; dir = 4},/obj/window{dir = 4},/obj/item/weapon/bottle/antitoxins,/obj/item/weapon/bottle/antitoxins,/obj/item/weapon/healthanalyzer,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqI" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqJ" = (/obj/item/weapon/brutepack,/obj/item/weapon/ointment,/obj/item/weapon/ointment,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqK" = (/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/medicalresearch)
"aqL" = (/turf/station/floor,/area/medicalresearch)
"aqM" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/medicalresearch)
"aqN" = (/obj/stool/chair,/turf/station/floor,/area/medicalresearch)
"aqO" = (/obj/machinery/camera{dir = 4; c_tag = "Central Hallway"},/turf/station/floor,/area/hallways/labaccess)
"aqP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"aqQ" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/hallways/centralhall)
"aqR" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"aqS" = (/obj/machinery/camera{dir = 8; c_tag = "Assembly Room"},/obj/item/weapon/radio/intercom{pixel_x = 32},/turf/station/floor,/area/hallways/eastairlock)
"aqT" = (/obj/table{icon_state = "sides"; dir = 4},/obj/window{icon_state = "rwindow"; dir = 8; reinf = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"aqU" = (/obj/stool/chair{dir = 4},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"aqV" = (/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)
"aqW" = (/obj/landmark/alterations{name = "Security Locker"},/obj/machinery/door/window{icon = 'security.dmi'; dir = 2; access = "2000"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqX" = (/obj/stool/chair,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqY" = (/obj/table{icon_state = "sides"; dir = 4},/obj/item/weapon/paper/Toxin,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aqZ" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"ara" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arb" = (/obj/stool/chair{dir = 8},/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arc" = (/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/medicalresearch)
"ard" = (/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/medicalresearch)
"are" = (/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/medicalresearch)
"arf" = (/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/medicalresearch)
"arg" = (/obj/machinery/power/apc{dir = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/turf/station/floor,/area/hallways/labaccess)
"arh" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/hallways/centralhall)
"ari" = (/obj/machinery/alarm{pixel_y = 24},/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/oxygen_storage)
"arj" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/oxygen_storage)
"ark" = (/obj/machinery/dispenser,/turf/station/floor,/area/oxygen_storage)
"arl" = (/obj/machinery/dispenser,/obj/machinery/camera{c_tag = "Toxin Gas Storage"},/turf/station/floor,/area/oxygen_storage)
"arm" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/floor,/area/oxygen_storage)
"arn" = (/obj/cable{icon_state = "0-8"; d2 = 8},/obj/machinery/power/apc{dir = 1},/turf/station/floor,/area/oxygen_storage)
"aro" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/oxygen_storage)
"arp" = (/obj/machinery/atmoalter/canister/oxygencanister,/turf/station/floor,/area/oxygen_storage)
"arq" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "corners"; dir = 9},/turf/station/floor,/area/hallways/eastairlock)
"arr" = (/obj/table{icon_state = "corners"; dir = 5},/turf/station/floor,/area/hallways/eastairlock)
"ars" = (/obj/table{icon_state = "corners"; dir = 9},/turf/station/floor,/area/hallways/eastairlock)
"art" = (/obj/window{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"aru" = (/obj/window,/turf/space,/area)
"arv" = (/obj/grille,/obj/window,/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"arw" = (/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)
"arx" = (/obj/window,/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"ary" = (/obj/machinery/door/window{dir = 4},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"arz" = (/obj/machinery/camera{dir = 8; c_tag = "Chapel"},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"arA" = (/obj/machinery/camera{dir = 8; c_tag = "Morgue"},/turf/station/floor,/area/morgue)
"arB" = (/obj/machinery/sleeper,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arC" = (/obj/machinery/computer/sleep_console,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arD" = (/obj/window{dir = 4},/obj/landmark/alterations{name = "Security Locker"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arE" = (/obj/table{icon_state = "sides"; dir = 2},/obj/item/weapon/paper/Toxin,/obj/item/weapon/pill_canister/epilepsy,/obj/item/weapon/pill_canister/cough,/obj/item/weapon/dropper,/obj/item/weapon/bottle/rejuvenators,/obj/window,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arF" = (/obj/table{icon_state = "sides"; dir = 2},/obj/window,/obj/item/weapon/clipboard,/obj/item/weapon/syringe,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arG" = (/obj/table{icon_state = "sides"; dir = 2},/obj/window,/obj/item/weapon/pen,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arH" = (/obj/table{icon_state = "corners"; dir = 6},/obj/window,/obj/window{dir = 4},/obj/item/weapon/bottle/rejuvenators,/obj/item/weapon/syringe,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arI" = (/obj/start{name = "Medical Doctor"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arJ" = (/obj/machinery/firealarm{pixel_x = 32},/obj/stool/chair{dir = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"arK" = (/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/medicalresearch)
"arL" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/medicalresearch)
"arM" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/firealarm{pixel_y = -32},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medicalresearch)
"arN" = (/obj/item/weapon/radio/intercom{pixel_y = -32},/turf/station/floor,/area/medicalresearch)
"arO" = (/obj/window,/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/medicalresearch)
"arP" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/medicalresearch)
"arQ" = (/obj/machinery/door/window{dir = 8},/turf/station/floor,/area/medicalresearch)
"arR" = (/obj/window,/obj/secloset/medical2,/turf/station/floor,/area/medicalresearch)
"arS" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/window,/turf/station/floor,/area/medicalresearch)
"arT" = (/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/medicalresearch)
"arU" = (/obj/window,/obj/cable{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/station/floor,/area/medicalresearch)
"arV" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"arW" = (/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)
"arX" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/hallways/labaccess)
"arY" = (/obj/machinery/alarm{pixel_y = 24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/centralhall)
"arZ" = (/obj/machinery/atmoalter/canister/poisoncanister,/turf/station/floor,/area/oxygen_storage)
"asa" = (/turf/station/floor,/area/oxygen_storage)
"asb" = (/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/oxygen_storage)
"asc" = (/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"asd" = (/obj/stool/chair{dir = 1},/obj/machinery/firealarm{pixel_x = -32},/turf/station/floor,/area/hallways/eastairlock)
"ase" = (/obj/stool/chair{dir = 1},/turf/station/floor,/area/hallways/eastairlock)
"asf" = (/obj/machinery/door/poddoor{name = "Burial lock"; id = "chap1"},/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"asg" = (/turf/station/floor{icon_state = "Floor1"; intact = 0},/area)
"ash" = (/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"asi" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"asj" = (/obj/machinery/mass_driver{dir = 8; id = "chap1"},/obj/machinery/door/window,/turf/station/floor{icon_state = "Floor1"; intact = 0},/area/chapel)
"ask" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/morgue)
"asl" = (/obj/landmark{name = "CTF-supply-Medical"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asm" = (/obj/machinery/door/window,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asn" = (/obj/landmark{name = "CTF-base-Medical"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"aso" = (/obj/stool/chair{dir = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asp" = (/obj/window{dir = 1},/turf/station/floor,/area/medicalresearch)
"asq" = (/obj/window{dir = 4},/obj/secloset/animal,/turf/station/floor,/area/medicalresearch)
"asr" = (/obj/window{dir = 1},/obj/window{dir = 8},/obj/machinery/dna_scanner,/turf/station/floor,/area/medicalresearch)
"ass" = (/obj/window{dir = 1},/obj/machinery/scan_console,/turf/station/floor,/area/medicalresearch)
"ast" = (/obj/window{dir = 1},/obj/machinery/computer/dna,/turf/station/floor,/area/medicalresearch)
"asu" = (/obj/window{dir = 1},/obj/machinery/restruct,/turf/station/floor,/area/medicalresearch)
"asv" = (/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/medicalresearch)
"asw" = (/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)
"asx" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"asy" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/machinery/atmoalter/canister/n2canister,/turf/station/floor,/area/oxygen_storage)
"asz" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/landmark/alterations{name = "blobstart"; icon_state = "x3"},/turf/station/floor,/area/hallways/eastairlock)
"asA" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/hallways/eastairlock)
"asB" = (/obj/machinery/light_switch{pixel_y = -24},/turf/station/floor,/area/hallways/eastairlock)
"asC" = (/obj/table{icon_state = "corners"; dir = 9},/obj/window{dir = 8},/turf/station/floor,/area/hallways/eastairlock)
"asD" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/table{icon_state = "sides"; dir = 1},/turf/station/floor,/area/hallways/eastairlock)
"asE" = (/obj/window{dir = 1},/turf/space,/area)
"asF" = (/obj/grille,/obj/window{dir = 1},/obj/window{icon_state = "rwindow"; dir = 4; reinf = 1},/turf/station/floor,/area)
"asG" = (/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)
"asH" = (/obj/window{dir = 1},/obj/window{dir = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"asI" = (/obj/window{dir = 1},/turf/station/floor{icon_state = "Floor3"},/area/chapel)
"asJ" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc,/turf/station/floor,/area/morgue)
"asK" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor,/area/morgue)
"asL" = (/obj/landmark/alterations{name = "Experimental Technology"},/obj/window{dir = 4},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asM" = (/obj/start{name = "Medical Assistant"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asN" = (/obj/item/weapon/storage/toolbox,/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asO" = (/obj/machinery/door/firedoor,/obj/machinery/door/window{icon = 'security.dmi'; access = "1300"},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"asP" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/machinery/door/window{icon = 'security.dmi'; access = "1300"},/turf/station/floor,/area/medicalresearch)
"asQ" = (/obj/machinery/door/firedoor,/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/medicalresearch)
"asR" = (/obj/window,/turf/station/floor,/area/medicalresearch)
"asS" = (/obj/machinery/door/window{icon = 'security.dmi'; dir = 4; access = "1100"},/turf/station/floor,/area/medicalresearch)
"asT" = (/obj/start{name = "Medical Researcher"},/obj/window,/turf/station/floor,/area/medicalresearch)
"asU" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/window,/turf/station/floor,/area/medicalresearch)
"asV" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/turf/station/floor,/area/medicalresearch)
"asW" = (/obj/machinery/door/window,/turf/station/floor,/area/medicalresearch)
"asX" = (/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/medicalresearch)
"asY" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/turf/station/floor,/area/hallways/labaccess)
"asZ" = (/obj/cable,/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable{icon_state = "0-4"; d2 = 4},/turf/station/floor,/area/hallways/labaccess)
"ata" = (/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)
"atb" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "1-8"; d1 = 1; d2 = 8},/turf/station/floor,/area/hallways/centralhall)
"atc" = (/obj/watertank,/turf/station/floor,/area/oxygen_storage)
"atd" = (/obj/machinery/light_switch{pixel_y = -24},/obj/cable{icon_state = "1-2"; d1 = 1; d2 = 2},/turf/station/floor,/area/oxygen_storage)
"ate" = (/obj/machinery/door/window{dir = 4},/turf/station/floor,/area/hallways/eastairlock)
"atf" = (/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)
"atg" = (/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)
"ath" = (/obj/cable{icon_state = "0-4"; d2 = 4},/obj/cable{icon_state = "0-2"; d2 = 2},/obj/cable,/turf/station/wall,/area)
"ati" = (/obj/machinery/atmoalter/siphs/scrubbers/air_filter,/obj/cable{icon_state = "2-8"; d1 = 2; d2 = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"atj" = (/obj/window{dir = 4},/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "2-4"; d1 = 2; d2 = 4},/turf/station/floor{icon_state = "Floor2"},/area/medical)
"atk" = (/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{icon_state = "Floor2"},/area/medical)
"atl" = (/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent,/obj/cable{icon_state = "4-8"; d1 = 4; d2 = 8},/turf/station/floor{icon_state = "Floor2"},/area/medical)