-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtgstation.2.0.8.dmm
2885 lines (2883 loc) · 758 KB
/
tgstation.2.0.8.dmm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"aa" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ab" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ac" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ad" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ae" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"af" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ag" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ah" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ai" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aj" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ak" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"al" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"am" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"an" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ao" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ap" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aq" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ar" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"as" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"at" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"au" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"av" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aw" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ax" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ay" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"az" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aA" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aB" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aC" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aD" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aE" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aF" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aG" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aH" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aI" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aJ" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aK" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aL" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aM" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aN" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aO" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aP" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aQ" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aR" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aS" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aT" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aU" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aV" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aW" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aX" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aY" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aZ" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ba" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bb" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bc" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bd" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"be" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bf" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bg" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bh" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bi" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bj" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bk" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bl" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bm" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bn" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bo" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bp" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bq" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"br" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bs" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bt" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bu" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bv" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bw" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bx" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"by" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bz" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bA" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bB" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bC" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bD" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bE" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bF" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bG" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bH" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bI" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bJ" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bK" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bL" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bM" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bN" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bO" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bP" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bQ" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bR" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bS" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bT" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bU" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bV" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bW" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bX" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bY" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bZ" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ca" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cb" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cc" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cd" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ce" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cf" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cg" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ch" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ci" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cj" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ck" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cl" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cm" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cn" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"co" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cp" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cq" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cr" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cs" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ct" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cu" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cv" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cw" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cx" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cy" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cz" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cA" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cB" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cC" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cD" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cE" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cF" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cG" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cH" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cI" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area)
"cJ" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cK" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cL" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cM" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cN" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cO" = (/obj/machinery/simple_apc{load = 145},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cP" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cQ" = (/obj/item/bomb,/obj/item/bomb,/obj/item/bomb,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cR" = (/obj/item/bomb,/obj/item/bomb,/obj/item/bomb,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cS" = (/obj/structure/closet{color = "#cccccc"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cT" = (/obj/structure/closet{color = "#c6c6c4"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cU" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cV" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cW" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cX" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cY" = (/obj/structure/tactical_shield{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cZ" = (/obj/machinery/airlock/glassairlock{color = "#cccccc"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"da" = (/turf/space,/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"db" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area)
"dc" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dd" = (/turf/simulated/wall/newicon/window{icon_state = "window_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"de" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"df" = (/obj/machinery/airlock/glassairlock{color = "#f2f2ef"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dg" = (/obj/structure/table{icon_state = "e"},/obj/item/weapon/gun/energy/lasercannon{pixel_x = -8; pixel_y = 15},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dh" = (/obj/structure/table{icon_state = "we"},/obj/item/weapon/flasher,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"di" = (/obj/structure/table{icon_state = "we"},/obj/item/weapon/flasher,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dj" = (/obj/structure/table{icon_state = "w"},/obj/item/weapon/flasher,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dk" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dl" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dm" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dn" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"do" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dp" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dq" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dr" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ds" = (/obj/structure/table{icon_state = "e"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dt" = (/obj/structure/table{icon_state = "w"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"du" = (/obj/structure/table{color = "#f2f2ef"},/obj/item/weapon/stunbaton,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dv" = (/obj/structure/table{icon_state = "e"},/obj/item/weapon/stunbaton,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dw" = (/obj/structure/table{icon_state = "w"},/obj/item/weapon/stunbaton,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dx" = (/obj/structure/table{icon_state = "e"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dy" = (/obj/structure/table{icon_state = "w"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dz" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area)
"dA" = (/obj/structure/table{icon_state = "s"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dB" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dC" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dD" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dE" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dF" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dG" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dH" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dI" = (/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dJ" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dK" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dL" = (/obj/item/bomb,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dM" = (/obj/item/bomb/smokebomb,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dN" = (/obj/structure/table{icon_state = "ns"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dO" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dP" = (/obj/machinery/airlock/brig{color = "#f2f2ef"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dQ" = (/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dR" = (/obj/structure/table{icon_state = "ns"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dS" = (/obj/structure/table{icon_state = "s"},/obj/item/weapon/gun/energy/laser/taser,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dT" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dU" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dV" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dW" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dX" = (/obj/structure/table{icon_state = "ns"},/obj/item/weapon/gun/energy/laser/taser,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dY" = (/obj/structure/closet/sec{tag = "icon-sec (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dZ" = (/obj/structure/table{icon_state = "se"},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ea" = (/obj/structure/table{icon_state = "we"},/obj/machinery/consol/brigdoor_control{conid = 35},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eb" = (/obj/structure/table{icon_state = "w"},/obj/machinery/consol/camera_control{conid = 36},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ec" = (/obj/structure/closet/sec{tag = "icon-sec (EAST)"; dir = 4},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ed" = (/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ee" = (/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ef" = (/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eg" = (/obj/machinery/airlock/brig{color = "#a3a3a1"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eh" = (/obj/structure/table{icon_state = "n"},/obj/item/weapon/gun/energy/laser/taser,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ei" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ej" = (/obj/structure/stool/chair{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ek" = (/obj/structure/closet/sec{tag = "icon-sec (EAST)"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"el" = (/obj/structure/closet/sec{tag = "icon-sec (WEST)"; dir = 8},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"em" = (/obj/structure/table{color = "#c6c6c4"},/obj/machinery/printer{color = "#c6c6c4"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"en" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eo" = (/obj/structure/table{icon_state = "ne"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ep" = (/obj/structure/table{icon_state = "w"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eq" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"er" = (/obj/structure/closet{tag = "icon-closed (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area)
"es" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"et" = (/obj/structure/table{icon_state = "n"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eu" = (/obj/machinery/simpleonwall/recharger{tag = "icon-recharger1 (EAST)"; icon_state = "recharger1"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ev" = (/obj/structure/table{color = "#c6c6c4"},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ew" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor,/area)
"ex" = (/obj/structure/table{color = "#c6c6c4"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ey" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ez" = (/turf/simulated/wall/newicon/window{icon_state = "window_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eA" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eB" = (/turf/simulated/wall/newicon/window{icon_state = "window_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eC" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eD" = (/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eE" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eF" = (/turf/simulated/wall/newicon/window{icon_state = "window_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eG" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eH" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eI" = (/obj/machinery/radio/intercom{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eJ" = (/obj/machinery/airlock/brig,/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eK" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eL" = (/obj/machinery/vending/snacks{products = "Space FriesThe popcornThe cola"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eM" = (/obj/machinery/vending/snacks{products = "Space FriesThe popcornThe cola"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eN" = (/obj/structure/closet/fire_closet,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eO" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eP" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eQ" = (/obj/structure/stool/chair{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eR" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eS" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eT" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eU" = (/turf/space,/area)
"eV" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eW" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eX" = (/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eY" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"eZ" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fa" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fb" = (/obj/structure/table{icon_state = "se"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fc" = (/obj/structure/table{icon_state = "we"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fd" = (/obj/structure/table{icon_state = "sw"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fe" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ff" = (/obj/structure/closet{color = "#d8d8d6"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fg" = (/obj/structure/stool/chair{color = "#f2f2ef"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fh" = (/obj/structure/table/wood{icon_state = "s"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fi" = (/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fj" = (/obj/structure/closet/fire_closet,/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fk" = (/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fl" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/wood,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fm" = (/obj/machinery/simpleonwall/recharger{tag = "icon-recharger1 (EAST)"; icon_state = "recharger1"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fn" = (/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fo" = (/obj/structure/closet/sec{color = "#cccccc"},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fp" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fq" = (/obj/structure/table{icon_state = "ns"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fr" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fs" = (/obj/machinery/airlock/brig{color = "#f2f2ef"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ft" = (/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fu" = (/obj/structure/table/wood{icon_state = "ne"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fv" = (/obj/structure/table/wood{icon_state = "we"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fw" = (/obj/structure/table/wood{icon_state = "w"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fx" = (/obj/structure/stool/chair{color = "#cccccc"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fy" = (/turf/simulated/floor/wood,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fz" = (/obj/structure/closet{color = "#777776"},/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fA" = (/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fB" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fC" = (/obj/machinery/airlock/brig{color = "#777776"},/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fD" = (/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fE" = (/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fF" = (/obj/structure/stool/chair{color = "#c6c6c4"},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fG" = (/obj/structure/table{color = "#f2f2ef"},/obj/machinery/consol/camera_control{tag = "icon-sec_consol (EAST)"; icon_state = "sec_consol"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fH" = (/obj/structure/table{icon_state = "ne"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fI" = (/obj/structure/table{icon_state = "nw"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fJ" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fK" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fL" = (/obj/structure/table{icon_state = "s"},/obj/machinery/consol/brigdoor_control/echair{dir = 4; icon_state = "sec_consol"; id = 1123; tag = "icon-sec_consol (EAST)"},/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fM" = (/obj/structure/stool/chair/electro,/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fN" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fO" = (/obj/structure/table{icon_state = "s"},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fP" = (/obj/structure/table{icon_state = "s"},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4; icon_state = "intact"; tag = "icon-intact (WEST)"},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4; icon_state = "intact"; tag = "icon-intact (WEST)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fV" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fW" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fX" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ga" = (/obj/structure/stool/bed{color = "#f2f2ef"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gb" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gc" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gd" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ge" = (/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gf" = (/obj/structure/table/wood{icon_state = "s"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gg" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gh" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gi" = (/obj/botsignaler,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area)
"gj" = (/obj/structure/table{icon_state = "n"},/obj/item/weapon/reagent_containers/food/snacks/pill/sleeping,/turf/simulated/floor/red,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gk" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gl" = (/obj/structure/table{icon_state = "ne"},/obj/machinery/consol/brigdoor_control{dir = 1; icon_state = "consol_2"; id = 2; tag = ""},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gm" = (/obj/structure/table{icon_state = "we"},/obj/machinery/consol/brigdoor_control{dir = 1; icon_state = "consol_2"; id = 3; tag = ""},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gn" = (/obj/structure/table{icon_state = "nw"},/obj/machinery/consol/brigdoor_control{dir = 1; icon_state = "consol_2"; id = 1; tag = ""},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"go" = (/obj/structure/closet{tag = "icon-closed (NORTH)"; dir = 1},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gq" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{tag = "icon-off (EAST)"; icon_state = "off"; dir = 4},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gr" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{dir = 4; icon_state = "bl_intact"; tag = "icon-bl_intact (WEST)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gs" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{dir = 4; icon_state = "bl_intact"; tag = "icon-bl_intact (WEST)"},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gt" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{dir = 4; icon_state = "bl_intact"; tag = "icon-bl_intact (WEST)"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gu" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{dir = 4; icon_state = "bl_intact"; tag = "icon-bl_intact (WEST)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gv" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (SOUTHWEST)"; icon_state = "bl_intact"; dir = 10},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gx" = (/obj/machinery/airlock/brig{color = "#f2f2ef"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gy" = (/obj/structure/table/wood{icon_state = "n"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gz" = (/turf/simulated/floor/wood,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gA" = (/obj/structure/table/wood{icon_state = "n"},/obj/machinery/tablelamp,/turf/simulated/floor/wood,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gB" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gC" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gD" = (/obj/machinery/simple_apc{color = "#777776"; dir = 1; load = 145},/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gE" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gF" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gG" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gH" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gI" = (/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gJ" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gK" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gL" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gM" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gO" = (/obj/structure/table{color = "#f2f2ef"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gP" = (/obj/structure/stool/chair{color = "#f2f2ef"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gQ" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gR" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gS" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gT" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gU" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gV" = (/obj/structure/stool/chair{color = "#c6c6c4"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gW" = (/obj/structure/table{icon_state = "e"},/obj/item/weapon/handcuffs,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gX" = (/obj/structure/table{icon_state = "w"},/obj/machinery/printer{color = "#777776"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"gZ" = (/obj/machinery/vending/sectools{products = "The portable flashThe itemThe donut"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ha" = (/obj/structure/closet,/obj/machinery/flasher{dir = 4; icon_state = "flasher"; id = 1; tag = "icon-flasher (EAST)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hb" = (/obj/structure/stool/chair,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hc" = (/obj/structure/stool/bed{color = "#f2f2ef"},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hd" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"he" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hf" = (/obj/structure/sign{tag = "icon-symb5 (NORTH)"; icon_state = "symb5"; dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hg" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hh" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hi" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hj" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hk" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hl" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hm" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hn" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ho" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"hp" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"hq" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hr" = (/obj/structure/table{icon_state = "s"},/obj/machinery/tablelamp{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hs" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ht" = (/obj/machinery/airlock/brig{color = "#cccccc"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hu" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hv" = (/obj/jobmark{job = "security"; invisibility = 101},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hw" = (/obj/machinery/airlock/brig/briglock{color = "#f2f2ef"; id = 1; isprocessing = 1},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hx" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hy" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hz" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hA" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hB" = (/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hC" = (/obj/structure/table{icon_state = "n"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hD" = (/obj/machinery/simple_apc{load = 180},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hE" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hF" = (/turf/simulated/floor,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hH" = (/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hI" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hJ" = (/obj/machinery/airlock/glassairlock{color = "#f2f2ef"},/turf/simulated/floor/wood,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hK" = (/obj/machinery/airlock{color = "#f2f2ef"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hL" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hM" = (/obj/machinery/simple_apc{color = "#777776"; dir = 1; load = 145},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hN" = (/obj/machinery/radio/intercom{tag = "icon-intercom (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hO" = (/obj/structure/table,/turf/simulated/floor,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hP" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hQ" = (/obj/botsignaler,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hR" = (/obj/machinery/airlock/brig{color = "#777776"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hS" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hT" = (/obj/structure/stool/bed{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hU" = (/obj/structure/stool/bed{color = "#f2f2ef"},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hV" = (/obj/structure/stool/bed{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hW" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hX" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hY" = (/obj/structure/closet,/obj/machinery/flasher{dir = 4; icon_state = "flasher"; id = 2; tag = "icon-flasher (EAST)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"hZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ia" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ib" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ic" = (/obj/structure/table,/obj/item/weapon/radar,/turf/simulated/floor,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"id" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/machinery/tablelamp,/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ie" = (/obj/machinery/airlock/brig/briglock{color = "#f2f2ef"; id = 2; isprocessing = 1},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"if" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ig" = (/obj/structure/closet{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ih" = (/obj/structure/closet{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ii" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ij" = (/obj/machinery/airlock/brig{color = "#d8d8d6"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ik" = (/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"il" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"im" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"in" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"io" = (/obj/structure/table{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ip" = (/obj/structure/table{color = "#cccccc"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iq" = (/obj/structure/stool/bed{color = "#cccccc"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ir" = (/obj/critter/roach/mouse,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"is" = (/obj/machinery/airlock/brig/command,/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area)
"it" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iu" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iv" = (/obj/item/weapon/handcuffs,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iw" = (/obj/structure/table,/obj/item/weapon/radar,/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ix" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iy" = (/obj/structure/table,/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iz" = (/obj/botsignaler,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iA" = (/obj/machinery/airlock/green{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iB" = (/obj/machinery/airlock/green{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iC" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iD" = (/obj/structure/closet/books{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iE" = (/obj/structure/table{icon_state = "e"},/obj/item/weapon/storage/box/medbox,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iF" = (/obj/structure/table{icon_state = "we"},/obj/machinery/simpleonwall/recharger,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iG" = (/obj/structure/table{icon_state = "we"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iH" = (/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iI" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iJ" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iK" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iL" = (/obj/structure/closet,/obj/machinery/flasher{dir = 4; icon_state = "flasher"; id = 3; tag = "icon-flasher (EAST)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iM" = (/obj/machinery/atmospherics/unary/vent_scrubber{tag = "icon-off (EAST)"; icon_state = "off"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (EAST)"; icon_state = "manifold"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iO" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iP" = (/obj/machinery/light_switcher,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iQ" = (/obj/machinery/vending/snacks{products = "Space FriesThe popcornThe cola"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iR" = (/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iS" = (/turf/space,/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iT" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"iU" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"iV" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (EAST)"; icon_state = "fire_cabinet"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iW" = (/obj/item/weapon/soap,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iY" = (/obj/machinery/atmospherics/unary/vent_scrubber{tag = "icon-off (WEST)"; icon_state = "off"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"iZ" = (/obj/machinery/airlock/brig/briglock{color = "#f2f2ef"; id = 3; isprocessing = 1},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ja" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{tag = "icon-manifold (WEST)"; icon_state = "manifold"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jb" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jc" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"jd" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"je" = (/obj/structure/sink{color = "#c6c6c4"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jf" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jg" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jh" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ji" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jj" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jk" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jl" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"jm" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"jn" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jo" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jp" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jq" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{icon_state = "window_e2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jr" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{blocks_air = 1; tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"js" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jt" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ju" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jv" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jw" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jx" = (/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"jy" = (/obj/machinery/solar{tag = "icon-solars (EAST)"; dir = 4},/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jz" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jA" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jB" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jC" = (/obj/structure/table/wood{icon_state = "e"},/obj/machinery/consol/camera_control,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jD" = (/obj/structure/table/wood{icon_state = "we"},/obj/machinery/consol/message,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jE" = (/obj/structure/table/wood{icon_state = "sw"},/obj/machinery/tablelamp{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jF" = (/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jG" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jI" = (/obj/structure/closet{color = "#c6c6c4"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jJ" = (/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jK" = (/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jL" = (/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jM" = (/obj/machinery/airlock{color = "#f2f2ef"},/turf/simulated/floor{blocks_air = 1; tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jO" = (/obj/machinery/simple_apc,/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jP" = (/obj/machinery/airlock/space{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jQ" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jR" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jS" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jT" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jU" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jV" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jW" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jX" = (/obj/structure/table/wood{icon_state = "ns"},/obj/structure/decor{tag = "icon-cigarettes"; icon_state = "cigarettes"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jY" = (/obj/item/riflebullets/holobullet,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"jZ" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ka" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kb" = (/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kc" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kd" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ke" = (/obj/structure/table/wood{icon_state = "se"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kf" = (/obj/structure/table/wood{icon_state = "w"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kh" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ki" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kj" = (/obj/structure/sign{tag = "icon-retrowave"; icon_state = "retrowave"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kk" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kl" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"km" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"kn" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ko" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"kp" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"kq" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"kr" = (/obj/structure/closet/oldcloset{tag = "icon-oldcloset (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ks" = (/obj/item/clothing/suit/detective_suit,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kt" = (/obj/structure/table/wood{icon_state = "n"},/obj/item/riflebullets/energyrevolver,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ku" = (/obj/jobmark{job = "detective"},/obj/item/weapon/gun/energy/superoldrifle/revolver,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kv" = (/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kw" = (/obj/structure/table/wood{color = "#c6c6c4"},/obj/machinery/printer{color = "#c6c6c4"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kx" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ky" = (/obj/structure/table/wood{icon_state = "n"},/obj/machinery/consol/message{tag = "icon-shuttle (EAST)"; icon_state = "shuttle"; dir = 4},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kz" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; dir = 8},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kA" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kB" = (/obj/structure/table{color = "#f2f2ef"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-3"; icon_state = "3"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kC" = (/obj/structure/stool/chair{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kD" = (/obj/structure/stool/bed{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kE" = (/obj/structure/reagent_dispensers/watertank{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kF" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kG" = (/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kH" = (/obj/structure/closet{color = "#d8d8d6"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kI" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kJ" = (/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kK" = (/obj/structure/closet{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kL" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kM" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kN" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kO" = (/obj/structure/sign{tag = "icon-space"; icon_state = "space"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kP" = (/obj/machinery/airlock{charge = 211901; tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kQ" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kR" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kS" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kT" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kU" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kV" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kW" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kX" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kY" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"kZ" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"la" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lb" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lc" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ld" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"le" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lf" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lg" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lh" = (/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"li" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lj" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lk" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ll" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lm" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ln" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"lo" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"lp" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"lq" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lr" = (/turf/simulated/wall/newicon/window{icon_state = "window_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ls" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lt" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lu" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lv" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lw" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lx" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ly" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lz" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lA" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lB" = (/obj/structure/table/wood{color = "#f2f2ef"},/obj/item/riflebullets/holobullet,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lC" = (/obj/structure/table/wood{color = "#f2f2ef"},/obj/item/cigpacket,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lD" = (/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lE" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lF" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lG" = (/obj/botsignaler,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lH" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-3"; icon_state = "3"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lI" = (/turf/simulated/floor{tag = "icon-3"; icon_state = "3"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lJ" = (/obj/structure/table{color = "#cccccc"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lK" = (/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lL" = (/obj/structure/stool/bed{color = "#cccccc"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lM" = (/obj/structure/table{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lN" = (/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lO" = (/obj/structure/stool/bed{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-4"; icon_state = "4"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lP" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lQ" = (/obj/machinery/solar{tag = "icon-solars (WEST)"; dir = 8},/turf/unsimulated/floor/catwalk,/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lR" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lS" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lT" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lU" = (/obj/item/parasite_egg,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lV" = (/obj/structure/reagent_dispensers/dieseltank,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lW" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lX" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lY" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"lZ" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ma" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mb" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mc" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"md" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"me" = (/obj/machinery/solar{tag = "icon-solars (EAST)"; dir = 4},/turf/unsimulated/floor{tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mf" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mg" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mh" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mi" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"mj" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"mk" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ml" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mm" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mn" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mo" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mp" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mq" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mr" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ms" = (/obj/structure/decor{tag = "icon-decor_5"; icon_state = "decor_5"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mt" = (/obj/structure/decor{tag = "icon-decor_3"; icon_state = "decor_3"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mu" = (/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mv" = (/obj/structure/closet{tag = "icon-closed (NORTH)"; dir = 1},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mw" = (/obj/structure/table/wood{icon_state = "e"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mx" = (/obj/structure/table/wood{icon_state = "w"},/turf/simulated/floor{tag = "icon-wood"; icon_state = "wood"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"my" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mz" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mB" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mC" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (EAST)"; icon_state = "fire_cabinet"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mD" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mE" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mF" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mG" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mH" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mI" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mJ" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mK" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mL" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mM" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mN" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mO" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mP" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"mQ" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mR" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"mS" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"mT" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"mU" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"mV" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"mW" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"mX" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"mY" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"mZ" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"na" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"nb" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"nc" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nd" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; tag = "icon-carpet_2256"; icon_state = "carpet_2256"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ne" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nf" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ng" = (/obj/machinery/airlock/green{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-5"; icon_state = "5"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nh" = (/obj/structure/stool{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ni" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nj" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nk" = (/obj/structure/sign{tag = "icon-space"; icon_state = "space"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nl" = (/obj/machinery/airlock{charge = 211901; tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nm" = (/obj/structure/sign{tag = "icon-space"; icon_state = "space"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nn" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"no" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"np" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nq" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nr" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ns" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nt" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nu" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nv" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nw" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nx" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ny" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nz" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nA" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nB" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nC" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nD" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nE" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nF" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nG" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nH" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nI" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"nJ" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"nK" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"nL" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"nM" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"nN" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nS" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nT" = (/obj/machinery/airlock{color = "#777776"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nU" = (/obj/machinery/atmospherics/pipe/manifold/general/visible/blueair{tag = "icon-blueair_manifold (WEST)"; icon_state = "blueair_manifold"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nV" = (/obj/botsignaler,/obj/machinery/atmospherics/unary/vent_pump/high_volume{tag = "icon-off (WEST)"; icon_state = "off"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nW" = (/obj/structure/sign{icon_state = "monkey"; pixel_x = -12; pixel_y = 0; pixel_z = 12; tag = "icon-monkey"},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nX" = (/obj/structure/table{icon_state = "se"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nY" = (/obj/structure/table{icon_state = "we2"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"nZ" = (/obj/structure/table{icon_state = "sw"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oa" = (/obj/structure/stool{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ob" = (/obj/item/weapon/sign,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oc" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"od" = (/obj/machinery/lamp{pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oe" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"of" = (/obj/machinery/lamp{pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"og" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oh" = (/obj/machinery/camera{id = 8; tag = "icon-camera (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oi" = (/obj/structure/decor{tag = "icon-decor5"; icon_state = "decor5"},/obj/machinery/lamp{pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oj" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ok" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ol" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"om" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"on" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oo" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"op" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oq" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"or" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"os" = (/turf/simulated/wall/newicon{icon_state = "w_ns"},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ot" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ou" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ov" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ow" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ox" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oy" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oz" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oA" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oB" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oC" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"oD" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"oE" = (/obj/machinery/vending/tools{products = "The wrenchThe wirecuttersThe screwdriverThe weldingtoolThe crowbarThe saw"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oF" = (/obj/machinery/vending/modules{products = "The basic power controller (APC and power systems)The powerfull power controller (for industrial machines)The small power controller (for small machines)Alert module (rings if detected power)Alert module (rings if not detected power)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oG" = (/obj/machinery/electronic_creator,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oH" = (/obj/machinery/electronic_creator,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oI" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"oJ" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"oK" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"oL" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"oM" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"oN" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"oO" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oP" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oR" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oS" = (/obj/machinery/airlock{color = "#a3a3a1"},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oT" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oU" = (/obj/structure/table{icon_state = "ne"},/obj/item/cigpacket,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oV" = (/obj/structure/table{icon_state = "we1"},/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oW" = (/obj/structure/table{icon_state = "nw"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oX" = (/obj/structure/stool{color = "#cccccc"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oY" = (/obj/machinery/airlock/glassairlock{color = "#d8d8d6"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"oZ" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pa" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pb" = (/turf/simulated/wall/newicon/window{icon_state = "window_w2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pc" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pd" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pe" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pf" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"pg" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"ph" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"pi" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"pj" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"pk" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"pl" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"pm" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"pn" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"po" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"pp" = (/obj/machinery/radio/intercom{tag = "icon-intercom (EAST)"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pq" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pr" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ps" = (/obj/structure/closet/crate{color = "#777776"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pt" = (/obj/structure/table{icon_state = "e"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pu" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area)
"pv" = (/turf/simulated/wall/newicon{icon_state = "w_ns"},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pw" = (/obj/structure/table{icon_state = "e"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"px" = (/obj/structure/table{icon_state = "w"},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"py" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (NORTH)"; icon_state = "bl_intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pz" = (/obj/structure/table{color = "#f2f2ef"},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pA" = (/obj/structure/stool/chair{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-1"; icon_state = "1"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pB" = (/obj/structure/stool/bed{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-1"; icon_state = "1"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pC" = (/obj/structure/stool{color = "#c6c6c4"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pD" = (/obj/structure/closet{tag = "icon-closed (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pE" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pF" = (/obj/machinery/airlock{charge = 211901; tag = "icon-close (EAST)"; dir = 4},/turf/unsimulated/floor{blocks_air = 1; tag = "icon-catwalk"; icon_state = "catwalk"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pG" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pH" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4; isprocessing = 1},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pI" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pJ" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pK" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pL" = (/turf/simulated/floor,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pM" = (/turf/simulated/floor,/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pN" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pO" = (/obj/plantmark,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pP" = (/obj/item/weapon/fire_ext,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pQ" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"pR" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"pS" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"pT" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"pU" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"pV" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"pW" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"pX" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"pY" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"pZ" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"qa" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"qb" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"qc" = (/obj/machinery/portable_machinery{color = "#f2f2ef"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qd" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qe" = (/obj/structure/table{icon_state = "se"},/obj/item/weapon/screwdriver,/obj/item/device/flashlight,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qf" = (/obj/structure/table{icon_state = "we2"},/obj/item/ai_module/patrolbot,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qg" = (/obj/structure/table{icon_state = "sw"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qh" = (/obj/structure/reagent_dispensers/dieseltank{color = "#d8d8d6"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qi" = (/obj/machinery/airlock,/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qj" = (/obj/machinery/airlock,/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ql" = (/obj/machinery/airlock{color = "#c6c6c4"},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qm" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (NORTH)"; icon_state = "bl_intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qn" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-10"; icon_state = "10"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qo" = (/turf/simulated/floor{tag = "icon-10"; icon_state = "10"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qp" = (/obj/machinery/airlock/green{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qq" = (/obj/structure/closet{tag = "icon-closed (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1sd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qr" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qs" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"qt" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"qu" = (/turf/space,/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qv" = (/turf/space,/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qw" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qx" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qy" = (/obj/structure/closet/oxygen{tag = "icon-oxygen (NORTH)"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qz" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qA" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qB" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"qC" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qD" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qE" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qF" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qG" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qH" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"qI" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"qJ" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"qK" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qL" = (/obj/structure/table{icon_state = "ne"},/obj/item/ai_module/monkeyAI,/obj/item/ai_module/hunter,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qM" = (/obj/structure/table{icon_state = "we1"},/obj/item/module/flasher,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qN" = (/obj/structure/table{icon_state = "nw"},/obj/machinery/tablelamp{color = "#f2f2ef"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qO" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qQ" = (/obj/structure/closet/oxycrate{color = "#777776"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qR" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qS" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (NORTH)"; icon_state = "bl_intact"; dir = 1},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qT" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qU" = (/turf/simulated/floor{tag = "icon-13"; icon_state = "13"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qV" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qW" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qX" = (/obj/machinery/airlock{charge = 211901; tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qY" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"qZ" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"ra" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"rb" = (/turf/space,/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"rc" = (/turf/space,/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rd" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"re" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4; isprocessing = 1},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rf" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rg" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rh" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ri" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rj" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rk" = (/turf/simulated/floor,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rl" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rm" = (/obj/structure/sign{tag = "icon-symb5 (NORTH)"; icon_state = "symb5"; dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rn" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ro" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rp" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rq" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rr" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rs" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rt" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ru" = (/obj/plantmark,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rv" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rw" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (NORTH)"; icon_state = "bl_intact"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rx" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-10"; icon_state = "10"},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ry" = (/turf/simulated/floor{tag = "icon-1"; icon_state = "1"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rz" = (/obj/structure/stool/bed{color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rA" = (/obj/structure/washing,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rB" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rC" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"rD" = (/turf/space,/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"rE" = (/turf/space,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rF" = (/turf/space,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rG" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rH" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rI" = (/obj/structure/closet/sec{tag = "icon-sec (EAST)"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rJ" = (/obj/item/device/flashlight,/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rK" = (/obj/machinery/simpleonwall/recharger,/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rL" = (/obj/structure/table{color = "#d8d8d6"},/obj/machinery/consol/camera_control{conid = 28},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rM" = (/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rN" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rO" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rP" = (/obj/critter/mouse,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'ambigen11.ogg'; tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rQ" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rR" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rS" = (/obj/structure/sign{tag = "icon-high_voltage"; icon_state = "high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rT" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rU" = (/obj/machinery/vending/tools{products = "The wrenchThe wirecuttersThe screwdriverThe weldingtoolThe crowbarThe saw"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rV" = (/obj/item/weapon/fire_ext,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rW" = (/obj/structure/table{icon_state = "e"},/obj/item/cigpacket,/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rX" = (/obj/structure/table{icon_state = "we"},/obj/item/weapon/screwdriver,/obj/item/clothing/PDA,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rY" = (/obj/structure/table{icon_state = "we"},/obj/item/device/analyzer,/obj/item/device/flashlight,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"rZ" = (/obj/structure/table{icon_state = "we"},/obj/machinery/camera{id = 7; tag = "icon-camera (EAST)"; dir = 4},/obj/item/module/cubit_mining_module,/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sa" = (/obj/structure/table{icon_state = "we"},/obj/item/device/analyzer,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sb" = (/obj/structure/table{icon_state = "w"},/obj/item/weapon/storage/box/toolbox{tag = "icon-blue"; icon_state = "blue"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sc" = (/obj/machinery/vending/materials{tag = "icon-default (EAST)"; icon_state = ""; dir = 4},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sd" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"se" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sf" = (/obj/structure/decor{tag = "icon-decor55"; icon_state = "decor55"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sg" = (/obj/structure/closet/oxycrate{tag = "icon-crate_oxygen (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sh" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"si" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sj" = (/obj/machinery/atmospherics/pipe/simple/general/visible/blueair{tag = "icon-bl_intact (NORTH)"; icon_state = "bl_intact"; dir = 1},/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (EAST)"; icon_state = "fire_cabinet"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 1; tag = "/area/ship/deck_1sd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sm" = (/obj/structure/closet{tag = "icon-closed (EAST)"; dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{tag = "icon-1"; icon_state = "1"},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"so" = (/obj/structure/stool/bed{color = "#d8d8d6"},/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{tag = "icon-0"; icon_state = "0"},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ss" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"st" = (/obj/structure/washing,/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"su" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sQ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sV" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"sW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sX" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 4},/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'rick.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"sZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ta" = (/turf/simulated/wall/newicon{icon_state = "w_ns"},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tb" = (/turf/space,/area{!INVALID_VAR! = 5; tag = "/areasd_L5"; maptext_width = 32; maptext_height = 32})
"tc" = (/turf/space,/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1/hallwaysd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"td" = (/turf/simulated/floor,/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"te" = (/obj/structure/closet/sec{tag = "icon-sec (EAST)"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tf" = (/obj/item/weapon/crowbar,/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tg" = (/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station4.ogg'; !INVALID_VAR! = 4; tag = "/area/ship/deck_1/hallwaysd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"th" = (/obj/structure/stool/chair{color = "#cccccc"},/turf/simulated/floor/red,/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1/hallwaysd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ti" = (/turf/simulated/floor/red,/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tj" = (/obj/machinery/airlock/brig,/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station2.ogg'; tag = "/area/ship/deck_1/hallwaysd_L0"; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tk" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'rick.ogg'; !INVALID_VAR! = 1; tag = "/area/ship/deck_1/hallwaysd_L1"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"tl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station5.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1/hallwaysd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})