diff --git a/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs b/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs
index 6ee890a7e9..0c29a0f5da 100644
--- a/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs
+++ b/Content.Server/Shuttles/Components/StationCargoShuttleComponent.cs
@@ -15,5 +15,5 @@ public sealed partial class StationCargoShuttleComponent : Component
// YAML is filled out so mappers don't have to read here.
[DataField(required: true)]
- public ResPath Path = new("/Maps/Shuttles/cargo.yml");
+ public ResPath Path = new("/Maps/White/Shuttles/cargo.yml"); // WD
}
diff --git a/Content.Server/_White/AddImplant/AddImplantComponent.cs b/Content.Server/_White/AddImplant/AddImplantComponent.cs
new file mode 100644
index 0000000000..b5ff2d3021
--- /dev/null
+++ b/Content.Server/_White/AddImplant/AddImplantComponent.cs
@@ -0,0 +1,14 @@
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
+
+namespace Content.Server._White.AddImplant;
+
+///
+/// WD.
+///
+[RegisterComponent]
+public sealed partial class AddImplantComponent : Component
+{
+ [DataField("implants", customTypeSerializer: typeof(PrototypeIdHashSetSerializer))]
+ public HashSet Implants { get; private set; } = new();
+}
diff --git a/Content.Server/_White/AddImplant/AddImplantSystem.cs b/Content.Server/_White/AddImplant/AddImplantSystem.cs
new file mode 100644
index 0000000000..34ee6eae10
--- /dev/null
+++ b/Content.Server/_White/AddImplant/AddImplantSystem.cs
@@ -0,0 +1,21 @@
+
+using Content.Shared.Examine;
+using Content.Shared.Implants;
+
+namespace Content.Server._White.AddImplant;
+
+public sealed class AddImplantSystem : EntitySystem
+{
+ [Dependency] private readonly SharedSubdermalImplantSystem _implantSystem = default!;
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnMapInit);
+ }
+ public void OnMapInit(Entity ent, ref MapInitEvent args)
+ {
+ _implantSystem.AddImplants(ent.Owner, ent.Comp.Implants);
+ RemComp(ent.Owner);
+ }
+}
diff --git a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs
index b1dfbd0662..2017b7a4b1 100644
--- a/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs
+++ b/Content.Server/_White/ERTRecruitment/ERTMapComponent.cs
@@ -11,6 +11,5 @@ public sealed partial class ERTMapComponent : Component
[ViewVariables]
public EntityUid? Shuttle;
- public static ResPath OutpostMap = new("/Maps/ERT/ERTStation.yml");
- //public static ResPath ShuttleMap = new("/Maps/ERT/ERTShuttle.yml");
+ public static ResPath OutpostMap = new("/Maps/White/ERTStation.yml");
}
diff --git a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs
index 03fa050b42..83ab47e691 100644
--- a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs
+++ b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs
@@ -137,7 +137,7 @@ public sealed class ERTRecruitmentRule : StationEventSystem
+/// WD.
+///
+[RegisterComponent]
+public sealed partial class ContractorIDCardComponent : Component
+{
+ [DataField]
+ public string Details = string.Empty;
+}
diff --git a/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs b/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs
new file mode 100644
index 0000000000..0306333d04
--- /dev/null
+++ b/Content.Server/_White/FillIDCard/ContractorIDCardSystem.cs
@@ -0,0 +1,24 @@
+
+using Content.Shared.Examine;
+
+namespace Content.Server._White.ContractorIDCard;
+
+public sealed class ContractorIDCardSystem : EntitySystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnExamined);
+ }
+ public void OnExamined(Entity ent, ref ExaminedEvent args)
+ {
+ if (!args.IsInDetailsRange)
+ return;
+
+ if (ent.Comp.Details == string.Empty)
+ return;
+
+ args.PushMarkup(ent.Comp.Details);
+ }
+}
diff --git a/Content.Server/_White/FillIDCard/FillIDCardComponent.cs b/Content.Server/_White/FillIDCard/FillIDCardComponent.cs
new file mode 100644
index 0000000000..21844b80e1
--- /dev/null
+++ b/Content.Server/_White/FillIDCard/FillIDCardComponent.cs
@@ -0,0 +1,11 @@
+namespace Content.Server._White.FillIDCard;
+
+///
+/// WD.
+///
+[RegisterComponent]
+public sealed partial class FillIDCardComponent : Component
+{
+ [DataField]
+ public bool IsContractor = false;
+}
diff --git a/Content.Server/_White/FillIDCard/FillIDCardSystem.cs b/Content.Server/_White/FillIDCard/FillIDCardSystem.cs
new file mode 100644
index 0000000000..b9b289f0fa
--- /dev/null
+++ b/Content.Server/_White/FillIDCard/FillIDCardSystem.cs
@@ -0,0 +1,72 @@
+
+using Content.Server._White.ContractorIDCard;
+using Content.Server.Access.Systems;
+using Content.Server.Forensics;
+using Content.Server.PDA;
+using Content.Shared.Access.Components;
+using Content.Shared.Inventory;
+using Content.Shared.PDA;
+using Robust.Server.Containers;
+using Robust.Shared.Timing;
+
+namespace Content.Server._White.FillIDCard;
+
+public sealed class FillIDCardSystem : EntitySystem
+{
+ [Dependency] private readonly InventorySystem _inventorySystem = default!;
+ [Dependency] private readonly PdaSystem _pdaSystem = default!;
+ [Dependency] private readonly ContainerSystem _containerSystem = default!;
+ [Dependency] private readonly IdCardSystem _idCardSystem = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnMapInit);
+ }
+
+ private void OnMapInit(Entity ent, ref MapInitEvent args)
+ {
+ Timer.Spawn(15000, () => ItDoBeDoing(ent)); // 15 seconds and yes this is bad // TODO Make it less dogshit
+ }
+
+ private void ItDoBeDoing(Entity ent)
+ {
+ if (!TryComp(ent.Owner, out var targetMeta))
+ {
+ RemComp(ent.Owner);
+ return;
+ }
+
+ if (!_inventorySystem.TryGetSlotEntity(ent.Owner, "id", out var idcardSlot))
+ {
+ RemComp(ent.Owner);
+ return;
+ }
+
+ if (TryComp(idcardSlot, out var pda))
+ {
+ _pdaSystem.SetOwnerName((EntityUid) idcardSlot, pda, targetMeta.EntityName);
+
+ _containerSystem.TryGetContainer((EntityUid) idcardSlot, "PDA-id", out var container);
+
+ if (container != null)
+ {
+ var idCardInPda = container.ContainedEntities[0];
+ _idCardSystem.TryChangeFullName(idCardInPda, targetMeta.EntityName);
+ }
+ }
+ else if (HasComp(idcardSlot))
+ {
+ _idCardSystem.TryChangeFullName((EntityUid) idcardSlot, targetMeta.EntityName);
+ if (ent.Comp.IsContractor)
+ {
+ EnsureComp((EntityUid) idcardSlot, out var comp);
+ if (TryComp(ent.Owner, out var fingerprintComponent) && TryComp(ent.Owner, out var dnaComponent))
+ comp.Details = $"На карте имеется следующая информация:\nВладелец карты: {targetMeta.EntityName}\nОтпечаток пальцев владельца: {fingerprintComponent.Fingerprint}\nДНК владельца: {dnaComponent.DNA}";
+ }
+ }
+
+ RemComp(ent.Owner);
+ }
+}
diff --git a/Content.Server/_White/GhostRecruitment/GhostRecruitmentSystem.cs b/Content.Server/_White/GhostRecruitment/GhostRecruitmentSystem.cs
index e0eed417f2..a373566f76 100644
--- a/Content.Server/_White/GhostRecruitment/GhostRecruitmentSystem.cs
+++ b/Content.Server/_White/GhostRecruitment/GhostRecruitmentSystem.cs
@@ -67,8 +67,9 @@ public sealed class GhostRecruitmentSystem : EntitySystem
/// Arranges the ghosts that agreed by roles.
///
/// name of recruitment.
+ /// Minimal playtime to be eligible for recruitment.
/// is success?
- public bool EndRecruitment(string recruitmentName)
+ public bool EndRecruitment(string recruitmentName, TimeSpan? overallPlaytime)
{
var spawners = GetEventSpawners(recruitmentName).ToList();
@@ -88,6 +89,9 @@ public sealed class GhostRecruitmentSystem : EntitySystem
if (!TryComp(uid, out var actorComponent))
continue;
+ if (overallPlaytime != null && _playTimeTracking.GetOverallPlaytime(actorComponent.PlayerSession) < overallPlaytime)
+ continue;
+
// if there are too many recruited, then just skip
if (count >= spawners.Count || count >= maxCount)
continue;
diff --git a/Resources/Audio/White/Ambience/Fly/mosquito.ogg b/Resources/Audio/White/Ambience/Fly/mosquito.ogg
new file mode 100644
index 0000000000..93963e2f3c
Binary files /dev/null and b/Resources/Audio/White/Ambience/Fly/mosquito.ogg differ
diff --git a/Resources/Changelog/ChangelogWhite.yml b/Resources/Changelog/ChangelogWhite.yml
index dbd018dafe..92381034c4 100644
--- a/Resources/Changelog/ChangelogWhite.yml
+++ b/Resources/Changelog/ChangelogWhite.yml
@@ -1,22 +1,4 @@
Entries:
-- author: martell-gh
- changes:
- - message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043A\u0430\u0440\u0442\u0438\u043D\
- \u043A\u0430 \u0432 \u043B\u043E\u0431\u0431\u0438 \u043C\u0435\u043D\u044F\u0435\
- \u0442\u0441\u044F"
- type: Add
- id: 168
- time: '2024-02-29T15:52:07.0000000+00:00'
- url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/142
-- author: rhailrake
- changes:
- - message: Old music.
- type: Add
- - message: lobby tweaks.
- type: Tweak
- id: 169
- time: '2024-02-29T17:36:08.0000000+00:00'
- url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/149
- author: nairsark
changes:
- message: RCD can place floor on platings
@@ -9016,3 +8998,97 @@
id: 667
time: '2025-03-10T18:00:35.0000000+00:00'
url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/858
+- author: CaypenNow
+ changes:
+ - message: "\u0422\u0435\u043F\u0435\u0440\u044C \u043E\u0431\u043C\u0430\u043D\u043A\
+ \u0438 \u0441\u0438\u043D\u0434\u0438\u043A\u0430\u0442\u0430 \u0438\u043C\u0435\
+ \u044E\u0442 \u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0439 \u0441\
+ \u043F\u0440\u0430\u0439\u0442."
+ type: Fix
+ id: 668
+ time: '2025-03-15T18:20:14.0000000+00:00'
+ url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/919
+- author: BIG_Zi_348
+ changes:
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0440\u0438\
+ \u043A\u043E\u043B\u044B \u0434\u043B\u044F \u0430\u0434\u043C\u0438\u043D \u0441\
+ \u043F\u0430\u0432\u043D\u0430."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043A\u043E\u043D\
+ \u0441\u043E\u043B\u0438 \u0434\u0430\u043B\u044C\u043D\u0435\u0439 \u0441\u0432\
+ \u044F\u0437\u0438 \u043D\u0430 \u0448\u0430\u0442\u0442\u043B\u044B."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043E\u0431\u044A\
+ \u0435\u043A\u0442\u044B \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0430 \u0434\
+ \u043B\u044F \u0433\u043E\u0441\u0442-\u0440\u043E\u043B\u0435\u0439 \u0441\u043E\
+ \ \u0441\u0432\u043E\u0438\u043C\u0438 \u0448\u0430\u0442\u0442\u043B\u0430\u043C\
+ \u0438."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0438\u043C\u043F\u043B\
+ \u0430\u043D\u0442 \u0437\u0430\u0449\u0438\u0442\u044B \u0440\u0430\u0437\u0443\
+ \u043C\u0430 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u043E\u043C\u0443\
+ \ \u043A\u0430\u043F\u0438\u0442\u0430\u043D\u0443."
+ type: Add
+ - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0438\u043D\u0434\
+ \u0438\u0432\u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u0435 \u0434\u043E\
+ \u0441\u0442\u0443\u043F\u044B \u0434\u043B\u044F \u0433\u043E\u0441\u0442-\u0440\
+ \u043E\u043B\u0435\u0439 \u0441\u043E \u0441\u0432\u043E\u0438\u043C\u0438 \u0448\
+ \u0430\u0442\u0442\u043B\u0430\u043C\u0438."
+ type: Add
+ - message: "\u041F\u0443\u0442\u0435\u0448\u0435\u0441\u0442\u0432\u0443\u044E\u0449\
+ \u0438\u043C \u043A\u043B\u043E\u0443\u043D\u0430\u043C \u0434\u043E\u0431\u0430\
+ \u0432\u043B\u0435\u043D \u0438\u043C\u043F\u043B\u0430\u043D\u0442 \u0433\u0440\
+ \u0443\u0441\u0442\u043D\u043E\u0433\u043E \u0442\u0440\u043E\u043C\u0431\u043E\
+ \u043D\u0430 \u0438 \u043A\u043E\u043C\u043F\u043E\u043D\u0435\u043D\u0442 \u043D\
+ \u0435\u0443\u043A\u043B\u044E\u0436\u0435\u0441\u0442\u0438 (\u0448\u0440\u0438\
+ \u0444\u0442 Comic Sans, \u0441\u043C\u0435\u0448\u043D\u044B\u0435 \u0437\u0432\
+ \u0443\u043A\u0438 \u0432\u043E \u0432\u0440\u0435\u043C\u044F \u0441\u043D\u0430\
+ \ \u0438 \u043F\u0440\u043E\u0447.)."
+ type: Add
+ - message: "\u0413\u043E\u0441\u0442-\u0440\u043E\u043B\u0438 \u0441\u043E \u0441\
+ \u0432\u043E\u0438\u043C\u0438 \u0448\u0430\u0442\u0442\u043B\u0430\u043C\u0438\
+ \ \u043F\u043E\u043B\u0443\u0447\u0438\u043B\u0438 \u0438\u043D\u0434\u0438\u0432\
+ \u0438\u0434\u0443\u0430\u043B\u044C\u043D\u044B\u0435 ID \u043A\u0430\u0440\
+ \u0442\u044B."
+ type: Tweak
+ - message: "\u041F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u044B\u0435 \u0433\u043B\
+ \u0430\u0432\u044B \u0442\u0435\u043F\u0435\u0440\u044C \u043C\u043E\u0433\u0443\
+ \u0442 \u0431\u044B\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u043B\u044E\
+ \u0434\u044C\u043C\u0438."
+ type: Tweak
+ - message: "\u041F\u043E\u0442\u0435\u0440\u044F\u043D\u043D\u044B\u0435 \u0433\u043B\
+ \u0430\u0432\u044B \u0431\u043E\u043B\u0435\u0435 \u043D\u0435 \u0438\u043C\u0435\
+ \u044E\u0442 \u0441\u0442\u0430\u043D\u0446\u0438\u043E\u043D\u043D\u044B\u0445\
+ \ \u0434\u043E\u0441\u0442\u0443\u043F\u043E\u0432 \u0438 \u0440\u0430\u0431\
+ \u043E\u0442\u0430\u044E\u0449\u0438\u0445 \u043A\u043B\u044E\u0447\u0435\u0439\
+ \ \u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u0438\u044F."
+ type: Tweak
+ - message: "\u041C\u0430\u0433 \u0442\u0435\u043F\u0435\u0440\u044C \u0438\u043C\
+ \u0435\u0435\u0442 \u0438\u043C\u043C\u0443\u043D\u0438\u0442\u0435\u0442 \u043A\
+ \ \u0438\u043C\u043F\u043B\u0430\u043D\u0442\u0435\u0440\u0443 \u043C\u0430\u0439\
+ \u043D\u0434\u0441\u043B\u0435\u0439\u0432."
+ type: Tweak
+ - message: "\u0421\u0442\u043E\u0438\u043C\u043E\u0441\u0442\u044C \u0438\u043C\u043F\
+ \u043B\u0430\u043D\u0442\u0430 \u043C\u0430\u0439\u043D\u0434\u0441\u043B\u0435\
+ \u0439\u0432 \u0432\u043E\u0437\u0440\u043E\u0441\u043B\u0430 \u0434\u043E 10\
+ \ \u0442\u043A."
+ type: Tweak
+ - message: "\u0418\u0437\u043C\u0435\u043D\u0451\u043D \u043D\u0430\u0431\u043E\u0440\
+ \ \u0432\u043E\u0440\u0430 \u0441 \u0438\u043C\u043F\u043B\u0430\u043D\u0442\
+ \u0430\u043C\u0438 \u043F\u043E\u0434\u0447\u0438\u043D\u0435\u043D\u0438\u044F\
+ ."
+ type: Tweak
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u043B\u043E\
+ \u0433\u0438\u043A\u0430 \u043F\u043E\u0434\u0431\u043E\u0440\u0430 \u044F\u0434\
+ \u0435\u0440\u043D\u044B\u0445 \u043E\u043F\u0435\u0440\u0430\u0442\u0438\u0432\
+ \u043D\u0438\u043A\u043E\u0432."
+ type: Fix
+ - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0430 \u043B\u043E\
+ \u043A\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F."
+ type: Fix
+ - message: "\u0423\u0431\u0440\u0430\u043D \u043F\u0430\u0446\u0438\u0444\u0438\u0437\
+ \u043C \u0443 \u0432\u043E\u0440\u0430."
+ type: Remove
+ id: 669
+ time: '2025-03-16T19:35:42.0000000+00:00'
+ url: https://api.github.com/repos/frosty-dev/ss14-core/pulls/922
diff --git a/Resources/Locale/ru-RU/_white/mercenary.ftl b/Resources/Locale/ru-RU/_white/mercenary.ftl
index 6936d94a8f..4da592d747 100644
--- a/Resources/Locale/ru-RU/_white/mercenary.ftl
+++ b/Resources/Locale/ru-RU/_white/mercenary.ftl
@@ -35,5 +35,31 @@ ent-DoorElectronicsMercenary = { ent-DoorElectronics }
.desc = { ent-DoorElectronics.desc }
ent-AirlockMercenaryLocked = { ent-Airlock }
- .suffix = Наёмник, Закрыт
- .desc = { ent-Airlock.desc } В углу имеется небольшой символ Администрации сектора.
+ .desc = { ent-Airlock.desc }
+
+ent-AirlockMercenaryGlassLocked = { ent-AirlockGlass }
+ .desc = { ent-AirlockGlass.desc }
+
+ent-AirlockMercenaryShuttleLocked = { ent-AirlockShuttle }
+ .desc = { ent-AirlockShuttle.desc }
+
+ent-AirlockMercenaryGlassShuttleLocked = { ent-AirlockGlassShuttle }
+ .desc = { ent-AirlockGlassShuttle.desc }
+
+ent-WindoorMercenaryLocked = { ent-Windoor }
+ .desc = { ent-Windoor.desc }
+
+ent-WindoorSecureMercenaryLocked = { ent-WindoorSecure }
+ .desc = { ent-WindoorSecure.desc }
+
+ent-PlasmaWindoorMercenaryLocked = { ent-WindoorPlasma }
+ .desc = { ent-WindoorPlasma.desc }
+
+ent-UraniumWindoorMercenaryLocked = { ent-WindoorUranium }
+ .desc = { ent-WindoorUranium.desc }
+
+ent-PlasmaWindoorSecureMercenaryLocked = { ent-WindoorSecurePlasma }
+ .desc = { ent-WindoorSecurePlasma.desc }
+
+ent-UraniumWindoorSecureMercenaryLocked = { ent-WindoorSecureUranium }
+ .desc = { ent-WindoorSecureUranium.desc }
diff --git a/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl
new file mode 100644
index 0000000000..63e7ef6d9e
--- /dev/null
+++ b/Resources/Locale/ru-RU/_white/prototypes/entities/clothing/ears/headsets.ftl
@@ -0,0 +1,10 @@
+ent-ClothingHeadsetAltCommandAnotherSector = { ent-ClothingHeadsetAltCommand }
+ .desc = { ent-ClothingHeadsetAltCommand.desc }
+ent-ClothingHeadsetCMOAnotherSector = { ent-ClothingHeadsetCMO }
+ .desc = { ent-ClothingHeadsetCMO.desc }
+ent-ClothingHeadsetRDAnotherSector = { ent-ClothingHeadsetRD }
+ .desc = { ent-ClothingHeadsetRD.desc }
+ent-ClothingHeadsetCargoAnotherSector = { ent-ClothingHeadsetCargo }
+ .desc = { ent-ClothingHeadsetCargo.desc }
+ent-ClothingHeadsetContractor = гарнитура контрактника
+ .desc = { ent-ClothingHeadsetGrey.desc }
diff --git a/Resources/Locale/ru-RU/_white/radio/radio.ftl b/Resources/Locale/ru-RU/_white/radio/radio.ftl
new file mode 100644
index 0000000000..d717050b37
--- /dev/null
+++ b/Resources/Locale/ru-RU/_white/radio/radio.ftl
@@ -0,0 +1,10 @@
+ent-EncryptionKeyStationMasterAnotherSector = { ent-EncryptionKeyStationMaster }
+ .desc = { ent-EncryptionKeyStationMaster.desc } К сожалению, коды шифрования в этом секторе другие.
+ent-EncryptionKeyMedicalAnotherSector = { ent-EncryptionKeyMedical }
+ .desc = { ent-EncryptionKeyMedical.desc } К сожалению, коды шифрования в этом секторе другие.
+ent-EncryptionKeyCommandAnotherSector = { ent-EncryptionKeyCommand }
+ .desc = { ent-EncryptionKeyCommand.desc } К сожалению, коды шифрования в этом секторе другие.
+ent-EncryptionKeyScienceAnotherSector = { ent-EncryptionKeyScience }
+ .desc = { ent-EncryptionKeyScience.desc } К сожалению, коды шифрования в этом секторе другие.
+ent-EncryptionKeyCargoAnotherSector = { ent-EncryptionKeyCargo }
+ .desc = { ent-EncryptionKeyCargo.desc } К сожалению, коды шифрования в этом секторе другие.
diff --git a/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl b/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl
index 3df37da0ea..c734a5475f 100644
--- a/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl
+++ b/Resources/Locale/ru-RU/_white/recipes/structures/airlocks.ftl
@@ -2,4 +2,70 @@ ent-airlockExternal = { ent-AirlockExternal }
.desc = { ent-AirlockExternal.desc }
ent-airlockExternalGlass = стеклянный внешний шлюз
- .desc = { ent-airlockExternal.desc}
\ No newline at end of file
+ .desc = { ent-airlockExternal.desc }
+
+ent-DoorElectronicsClownContractor = { ent-DoorElectronics }
+ .desc = { ent-DoorElectronics.desc }
+
+ent-AirlockClownContractorLocked = { ent-Airlock }
+ .desc = { ent-Airlock.desc }
+
+ent-AirlockClownContractorGlassLocked = { ent-AirlockGlass }
+ .desc = { ent-AirlockGlass.desc }
+
+ent-AirlockClownContractorShuttleLocked = { ent-AirlockShuttle }
+ .desc = { ent-AirlockShuttle.desc }
+
+ent-AirlockClownContractorGlassShuttleLocked = { ent-AirlockGlassShuttle }
+ .desc = { ent-AirlockGlassShuttle.desc }
+
+ent-WindoorClownContractorLocked = { ent-Windoor }
+ .desc = { ent-Windoor.desc }
+
+ent-WindoorSecureClownContractorLocked = { ent-WindoorSecure }
+ .desc = { ent-WindoorSecure.desc }
+
+ent-PlasmaWindoorClownContractorLocked = { ent-WindoorPlasma }
+ .desc = { ent-WindoorPlasma.desc }
+
+ent-UraniumWindoorClownContractorLocked = { ent-WindoorUranium }
+ .desc = { ent-WindoorUranium.desc }
+
+ent-PlasmaWindoorSecureClownContractorLocked = { ent-WindoorSecurePlasma }
+ .desc = { ent-WindoorSecurePlasma.desc }
+
+ent-UraniumWindoorSecureClownContractorLocked = { ent-WindoorSecureUranium }
+ .desc = { ent-WindoorSecureUranium.desc }
+
+ent-DoorElectronicsChefContractor = { ent-DoorElectronics }
+ .desc = { ent-DoorElectronics.desc }
+
+ent-AirlockChefContractorLocked = { ent-Airlock }
+ .desc = { ent-Airlock.desc }
+
+ent-AirlockChefContractorGlassLocked = { ent-AirlockGlass }
+ .desc = { ent-AirlockGlass.desc }
+
+ent-AirlockChefContractorShuttleLocked = { ent-AirlockShuttle }
+ .desc = { ent-AirlockShuttle.desc }
+
+ent-AirlockChefContractorGlassShuttleLocked = { ent-AirlockGlassShuttle }
+ .desc = { ent-AirlockGlassShuttle.desc }
+
+ent-WindoorChefContractorLocked = { ent-Windoor }
+ .desc = { ent-Windoor.desc }
+
+ent-WindoorSecureChefContractorLocked = { ent-WindoorSecure }
+ .desc = { ent-WindoorSecure.desc }
+
+ent-PlasmaWindoorChefContractorLocked = { ent-WindoorPlasma }
+ .desc = { ent-WindoorPlasma.desc }
+
+ent-UraniumWindoorChefContractorLocked = { ent-WindoorUranium }
+ .desc = { ent-WindoorUranium.desc }
+
+ent-PlasmaWindoorSecureChefContractorLocked = { ent-WindoorSecurePlasma }
+ .desc = { ent-WindoorSecurePlasma.desc }
+
+ent-UraniumWindoorSecureChefContractorLocked = { ent-WindoorSecureUranium }
+ .desc = { ent-WindoorSecureUranium.desc }
diff --git a/Resources/Locale/ru-RU/_white/recruitment.ftl b/Resources/Locale/ru-RU/_white/recruitment.ftl
index 5d9faeb516..5173dfa99f 100644
--- a/Resources/Locale/ru-RU/_white/recruitment.ftl
+++ b/Resources/Locale/ru-RU/_white/recruitment.ftl
@@ -1,5 +1,5 @@
accept-ert-window-title = Набор в отряды ОБР!
-accept-ert-window-prompt-text-part = Готовы ли вы стать частью отряда ОБР? Если вы не уверенны то лучше скажите НЕТ!
+accept-ert-window-prompt-text-part = Готовы ли вы стать частью отряда ОБР? Если вы не уверены то лучше скажите НЕТ!
ert-accept-message = Внимание! Мы получили запрос на Отряд Быстрого Реагирования. Запрос одобрен! Ожидайте.
ert-deny-message = Внимание! Мы получили запрос на Отряд Быстрого Реагирования. Запрос отклонён! Мы не можем отправить его сейчас.
diff --git a/Resources/Locale/ru-RU/job/job-description.ftl b/Resources/Locale/ru-RU/job/job-description.ftl
index 2c97531cae..2f2635b98a 100644
--- a/Resources/Locale/ru-RU/job/job-description.ftl
+++ b/Resources/Locale/ru-RU/job/job-description.ftl
@@ -11,10 +11,10 @@ job-description-cargotech = Оформиляйте заказы, осущест
job-description-ce = Руководите инженерным отделом, чтобы гарантировать идеальную работу систем энергоснабжения, чистоту атмосферы, и целостность корпуса станции.
job-description-centcomoff = Выступите в качестве посла на новейшей современной космической станции во флоте НаноТрейзен.
job-description-chaplain = Проповедуйте доброе слово вашего божества и религии и проводите духовное исцеление.
-job-description-chef = Keep the station fed with a variety of food items, butcher dead animals to ensure ammonia doesn't leak, and help keep the bar lively.
-job-description-chemist = Produce medicinal drugs for the doctors to use, research ethically dubious rare chemicals, and produce weapons of war when enemies of the station arrive.
-job-description-clown = Entertain the crew through elaborate slapstick routines or terrible jokes.
-job-description-cmo = Manage the resources and personnel of the medical department to keep the crew alive.
+job-description-chef = Кормите экипаж станции разными блюдами, разделывайте мёртвых животных так, чтобы не просачивался аммиак, и помогайте поддерживать бар в оживлённом состоянии.
+job-description-chemist = Создавайте лекарства для врачей, исследуйте сомнительные с точки зрения этики редкие химикаты, и производите боевые отравляющие вещества когда на станцию летят враги.
+job-description-clown = Развлекайте экипаж ужасными шутками и изощрённым карикатурным паясничеством.
+job-description-cmo = Руководите медицинским отделом, чтобы сохранить жизни и здоровье экипажа.
job-description-paramedic = Спасайте тяжелораненых пациентов по всей станции, а иногда и за ее пределами. Стабилизируйте их, отвозите в медотсек, и возвращайтесь в патруль!
job-description-detective = Исследуйте места преступлений с помощью криминалистических инструментов, убедитесь, что виновный клоун найден, да и просто загадочно курите в стороне.
job-description-doctor = Диагностируйте и лечите персонал станции с помощью лекарственных препаратов, вакцин и лекарств от болезней, а также клонируйте мертвых.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl
index e42f4bcdcd..4ff30835a4 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/backpacks.ftl
@@ -41,3 +41,9 @@ ent-ClothingBackpackCluwne = проклятое Хихиканье Фон Хон
.suffix = Неснимаемое
ent-ClothingBackpackDeathSquadFilled = рюкзак отряда смерти
.desc = Содержит набор самых опасных агентов Центкома.
+ent-ClothingBackpackMedicalAnotherSector = { ent-ClothingBackpackMedical }
+ .desc = { ent-ClothingBackpackMedical.desc }
+ent-ClothingBackpackCaptainAnotherSector = { ent-ClothingBackpackCaptain }
+ .desc = { ent-ClothingBackpackCaptain.desc }
+ent-ClothingBackpackScienceAnotherSector = { ent-ClothingBackpackScience }
+ .desc = { ent-ClothingBackpackScience.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl
index 23724d4750..561ec4f2fd 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/back/satchel.ftl
@@ -26,3 +26,9 @@ ent-ClothingBackpackSatchelVirology = сумка вирусолога
.desc = Сумка из гипоаллергенных волокон. Он разработан для того, чтобы помочь предотвратить распространение болезни. Пахнет обезьяной.
ent-ClothingBeltStorageWaistbag = кожаная поясная сумка
.desc = Кожаная поясная сумка, предназначенная для переноски мелких предметов.
+ent-ClothingBackpackSatchelMedicalAnotherSector = { ent-ClothingBackpackSatchelMedical }
+ .desc = { ent-ClothingBackpackSatchelMedical.desc }
+ent-ClothingBackpackSatchelCaptainAnotherSector = { ent-ClothingBackpackSatchelCaptain }
+ .desc = { ent-ClothingBackpackSatchelCaptain.desc }
+ent-ClothingBackpackSatchelScienceAnotherSector = { ent-ClothingBackpackSatchelScience }
+ .desc = { ent-ClothingBackpackSatchelScience.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl
index a0db22cb5e..7730957d9f 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl
@@ -93,3 +93,11 @@ ent-MaidPDA = ПДА прислуги
.desc = Сияет от собственной чистоты.
ent-BomzhPDA = убитый ПДА
.desc = Жизнь прошла, и все что остаётся делать - это двигаться вперед.
+ent-CargoPDAAnotherSector = { ent-CargoPDA }
+ .desc = { ent-CargoPDA.desc }
+ent-CMOPDAAnotherSector = { ent-CMOPDA }
+ .desc = { ent-CMOPDA.desc }
+ent-CaptainPDAAnotherSector = { ent-CaptainPDA }
+ .desc = { ent-CaptainPDA.desc }
+ent-RnDPDAAnotherSector = { ent-RnDPDA }
+ .desc = { ent-RnDPDA.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl
index 64eb33bbf9..8aa9bab67b 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/identification_cards.ftl
@@ -94,7 +94,3 @@ ent-CluwneIDCard = ID карта клувна
.suffix = Неснимаемое
ent-ResearchAssistantIDCard = ID карта научного ассистента
.desc = { ent-IDCardStandard.desc }
-ent-MaidIDCard = ID карта прислуги
- .desc = { ent-IDCardStandard.desc }
-ent-BomzhIDCard = грязная ID карта
- .desc = Старая и грязная карта дожившая до нашего времени.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl
index 272755b58a..f3380b4bf8 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/misc/space_cash.ftl
@@ -15,3 +15,9 @@ ent-SpaceCash1000 = кредиты
ent-SpaceCash1000000 = кредиты
.suffix = 1000000
.desc = { ent-SpaceCash.desc }
+ent-SpaceCash20000 = кредиты
+ .suffix = 20000
+ .desc = { ent-SpaceCash.desc }
+ent-SpaceCash30000 = кредиты
+ .suffix = 30000
+ .desc = { ent-SpaceCash.desc }
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl
index da1b875c47..4d12474f05 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/white/entities/objects/misc/identification_cards.ftl
@@ -3,3 +3,27 @@ ent-IAAIDCard = ID карта агента внутренних дел
ent-MercenaryIDCard = ID карта резидента
.desc = Карта резидента выдаётся Администрацией сектора. Позволяет записывать данные для временного оформления и имеет доступ к личному судну владельца.
+
+ent-ClownIDCardContractor = { ent-MercenaryIDCard }
+ .desc = { ent-MercenaryIDCard.desc }
+
+ent-ChefIDCardContractor = { ent-MercenaryIDCard }
+ .desc = { ent-MercenaryIDCard.desc }
+
+ent-MaidIDCard = ID карта прислуги
+ .desc = { ent-IDCardStandard.desc }
+
+ent-BomzhIDCard = грязная ID карта
+ .desc = Старая и грязная карта дожившая до нашего времени.
+
+ent-CargoIDCardAnotherSector = { ent-CargoIDCard }
+ .desc = { ent-CargoIDCard.desc }
+
+ent-CMOIDCardAnotherSector = { ent-CMOIDCard }
+ .desc = { ent-CMOIDCard.desc }
+
+ent-CaptainIDCardAnotherSector = { ent-CaptainIDCard }
+ .desc = { ent-CaptainIDCard.desc }
+
+ent-RDIDCardAnotherSector = { ent-RDIDCard }
+ .desc = { ent-RDIDCard.desc }
diff --git a/Resources/Locale/ru-RU/thief/backpack.ftl b/Resources/Locale/ru-RU/thief/backpack.ftl
index 566e2ce90c..db2f5b9c3d 100644
--- a/Resources/Locale/ru-RU/thief/backpack.ftl
+++ b/Resources/Locale/ru-RU/thief/backpack.ftl
@@ -56,9 +56,9 @@ thief-backpack-category-smuggler-description =
thief-backpack-category-slavery-name = набор рабовладельца
thief-backpack-category-slavery-description =
- Набор, состоящий из трёх имплантеров подчинения
- и стильной одежды рабовладельца.
- Собери собственную армию послушных рабов!
+ Набор для кукловода.
+ Включает в себя имплант подчинения, стильный прикид рабовладельца,
+ мыло для удаления своих отпечатков и особые ключи шифрования.
thief-backpack-category-hitech-name = высокотехнологичный набор
thief-backpack-category-hitech-description =
diff --git a/Resources/Maps/ERT/Old/ERTStation.yml b/Resources/Maps/ERT/Old/ERTStation.yml
deleted file mode 100644
index 3e031f7ca1..0000000000
--- a/Resources/Maps/ERT/Old/ERTStation.yml
+++ /dev/null
@@ -1,18857 +0,0 @@
-meta:
- format: 5
- postmapinit: false
-tilemap:
- 0: Space
- 24: FloorDark
- 29: FloorDarkMono
- 49: FloorKitchen
- 53: FloorMetalDiamond
- 70: FloorSteel
- 81: FloorTechMaint2
- 83: FloorWhite
- 88: FloorWhiteMono
- 93: FloorWood
- 95: Lattice
- 96: Plating
-entities:
-- proto: ""
- entities:
- - uid: 1
- components:
- - type: MetaData
- - pos: -3.9375005,-1.5
- parent: 2522
- type: Transform
- - chunks:
- 0,0:
- ind: 0,0
- tiles: MQAAADEAAAAxAAAAYAAAAGAAAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAADEAAAAxAAAAMQAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAXwAAAF8AAABgAAAAMQAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAHQAAAB0AAAAdAAAAYAAAAAAAAAAAAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAdAAAAHQAAAB0AAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAAAdAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAGAAAAAYAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAFEAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAGAAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABgAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAA==
- 0,-1:
- ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAAAAMQAAADEAAABgAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAADEAAAAxAAAAMQAAAGAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAxAAAAMQAAADEAAABgAAAAYAAAAF8AAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAMQAAADEAAAAxAAAAYAAAAB0AAABgAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA==
- -1,0:
- ind: -1,0
- tiles: HQAAAGAAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAGAAAAAdAAAAUwAAAFMAAABgAAAAMQAAAFMAAABgAAAAUwAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAYAAAADEAAABgAAAAYAAAAFMAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABYAAAAYAAAAFMAAABgAAAAUwAAAGAAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAARgAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAARgAAAEYAAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAABgAAAAUwAAAFMAAABTAAAAUwAAAFMAAABTAAAAUwAAAGAAAABGAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFMAAABTAAAAYAAAAGAAAABTAAAAYAAAAGAAAABGAAAAYAAAABgAAABgAAAAHQAAAB0AAAAdAAAAHQAAAGAAAABTAAAAYAAAAGAAAAAdAAAAUwAAAB0AAABgAAAAHQAAAB0AAABgAAAAYAAAAB0AAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAHQAAAFMAAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAAYAAAAB0AAAAdAAAAYAAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAB0AAABgAAAAYAAAAGAAAABgAAAARgAAAGAAAABGAAAARgAAAGAAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAAA1AAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAAEYAAABGAAAANQAAAGAAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABGAAAAYAAAAEYAAABGAAAARgAAAEYAAABGAAAARgAAADUAAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAAAdAAAAHQAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAEYAAABGAAAAYAAAAGAAAABgAAAAHQAAAEYAAABGAAAAUQAAAEYAAABGAAAAAAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABGAAAARgAAAA==
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAYAAAABgAAAAYAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAHQAAAGAAAAAxAAAAMQAAADEAAAAxAAAAAAAAAGAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAABgAAAAMQAAADEAAAAxAAAAMQAAAAAAAABgAAAAGAAAABgAAAAdAAAAGAAAAB0AAAAdAAAAHQAAAB0AAAAdAAAAYAAAADEAAAAxAAAAMQAAADEAAABgAAAAYAAAABgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAAxAAAAHQAAAGAAAABTAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAHQAAAGAAAAAdAAAAHQAAAB0AAABgAAAAMQAAAA==
- -1,1:
- ind: -1,1
- tiles: AAAAAF8AAAAAAAAAYAAAAB0AAABGAAAARgAAAB0AAAAdAAAAYAAAAB0AAABGAAAAHQAAAGAAAABgAAAARgAAAAAAAABfAAAAAAAAAGAAAAAdAAAARgAAAEYAAAAdAAAAHQAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAABfAAAAXwAAAF8AAABfAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAEYAAAAdAAAAYAAAAB0AAABGAAAAAAAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABGAAAAHQAAAGAAAAAdAAAARgAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAB0AAABgAAAAHQAAAEYAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAABgAAAAYAAAAB0AAABGAAAAXwAAAAAAAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAARgAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAABfAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- 0,1:
- ind: 0,1
- tiles: YAAAAGAAAABGAAAARgAAAGAAAABgAAAAYAAAAEYAAABgAAAAYAAAAB0AAABGAAAARgAAAB0AAABgAAAAHQAAAB0AAABgAAAARgAAAEYAAAAdAAAAYAAAAEYAAABGAAAARgAAAGAAAAAdAAAAHQAAAB0AAAAdAAAAYAAAAB0AAAAdAAAAYAAAAEYAAABgAAAAYAAAAGAAAABGAAAARgAAAEYAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAHQAAAGAAAABGAAAARgAAAB0AAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB0AAABgAAAARgAAAGAAAABgAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAYAAAAEYAAABGAAAAHQAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAGAAAABGAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAUwAAAFMAAABTAAAAYAAAAEYAAABGAAAARgAAAB0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAFMAAABTAAAAUwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABgAAAAYAAAAGAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- -2,0:
- ind: -2,0
- tiles: AAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAB0AAABgAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAUwAAAFMAAABgAAAAYAAAAGAAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAUwAAAGAAAABTAAAAUwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAB0AAABTAAAAUwAAAFMAAABTAAAAUwAAAFMAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAGAAAAAdAAAAUwAAAFMAAABTAAAAYAAAAFMAAABTAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAGAAAABgAAAAHQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAADUAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAA1AAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAANQAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAA==
- 0,2:
- ind: 0,2
- tiles: AAAAAF8AAAAAAAAAAAAAAAAAAABgAAAARgAAAEYAAABGAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAYAAAAEYAAABGAAAARgAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAGAAAABGAAAARgAAAEYAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAHQAAAGAAAAAdAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- -2,-1:
- ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAABgAAAAHQAAAFMAAABTAAAAHQAAAGAAAAAdAAAAUwAAAA==
- 1,0:
- ind: 1,0
- tiles: AAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAFEAAABgAAAAXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- 1,1:
- ind: 1,1
- tiles: RgAAAB0AAABgAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEYAAAAdAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- 1,-1:
- ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- -2,1:
- ind: -2,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAXwAAAAAAAAAAAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAAAAAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfAAAAAAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
- type: MapGrid
- - type: Broadphase
- - angularDamping: 0.05
- linearDamping: 0.05
- fixedRotation: False
- bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
- - type: OccluderTree
- - type: SpreaderGrid
- - type: Shuttle
- - type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
- path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
- version: 2
- nodes:
- - node:
- color: '#52B4E9FF'
- id: Bot
- decals:
- 92: -23,-1
- 93: -23,0
- 94: -23,1
- 95: -20,1
- 96: -20,0
- 97: -20,-1
- 106: -23,4
- - node:
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 120: -1,8
- 121: 0,8
- 122: 1,8
- 123: 2,8
- 124: 3,8
- 125: 3,7
- 126: 2,7
- 127: 1,7
- 128: 0,7
- 129: -1,7
- 138: -8,13
- 141: -9,9
- 143: -12,7
- 144: -13,7
- 145: -14,7
- 146: -14,8
- 159: -12,15
- 160: -12,16
- 161: -12,17
- 162: -8,17
- 163: -9,17
- 164: -9,16
- 165: -8,16
- 166: -8,15
- 167: -9,15
- 201: -6,14
- 253: 4,21
- 254: 4,19
- 255: 4,17
- 413: 15,16
- 414: 15,17
- 415: 17,17
- 416: 17,16
- 421: 10,17
- 422: 13,17
- 473: 11,6
- 474: 10,6
- 502: 11,12
- 561: -2,8
- 562: -2,7
- 563: 4,8
- 564: 4,7
- - node:
- color: '#52B4E996'
- id: BotGreyscale
- decals:
- 535: -12,-3
- 565: -11,-5
- - node:
- color: '#52B4E9FF'
- id: BotGreyscale
- decals:
- 42: -8,-1
- 43: -9,1
- 46: -5,0
- 47: -5,-1
- 48: -6,7
- 49: -6,8
- 50: -4,8
- 51: -4,7
- 52: -13,1
- 53: -12,1
- 54: -12,-1
- 55: -13,-1
- 80: -18,-1
- 81: -16,-1
- - node:
- color: '#A020F0FF'
- id: BotGreyscale
- decals:
- 512: 10,2
- 513: 11,2
- 514: 12,2
- - node:
- color: '#52B4E9FF'
- id: Box
- decals:
- 104: -23,3
- 105: -23,5
- - node:
- color: '#FFFFFFFF'
- id: Box
- decals:
- 130: 1,10
- 139: -9,13
- 140: -8,9
- 142: -11,7
- 193: -6,15
- 194: -6,16
- 195: -6,17
- 196: -6,18
- 197: -4,18
- 198: -4,17
- 199: -4,16
- 200: -4,15
- 219: -2,20
- 220: -2,19
- 221: -2,18
- 222: -2,17
- 223: 0,20
- 224: 0,19
- 225: 0,18
- 226: 0,17
- 417: 12,17
- 418: 11,17
- 419: 10,16
- 420: 13,16
- 467: 12,8
- 468: 13,8
- 469: 14,8
- 470: 14,6
- 471: 13,6
- 472: 12,6
- 494: 10,12
- 495: 11,10
- 496: 12,12
- 497: 13,12
- 498: 14,12
- 499: 14,10
- 500: 13,10
- 501: 12,10
- 541: -2,21
- 542: -2,22
- 543: 0,21
- 544: 0,22
- 545: -6,19
- 546: -6,20
- 547: -4,19
- 548: -4,20
- - node:
- color: '#52B4E996'
- id: BoxGreyscale
- decals:
- 525: -10,-3
- 526: -9,-3
- 527: -8,-3
- 528: -7,-3
- 529: -6,-3
- 530: -6,-5
- 531: -7,-5
- 532: -8,-5
- 533: -10,-5
- 534: -9,-5
- - node:
- color: '#52B4E9FF'
- id: BoxGreyscale
- decals:
- 40: -7,-1
- 41: -9,-1
- 44: -3,-1
- 45: -4,-1
- 56: -11,1
- 57: -11,-1
- 78: -18,0
- 79: -16,0
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelCornerNe
- decals:
- 503: 12,4
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelCornerNw
- decals:
- 504: 10,4
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelCornerSe
- decals:
- 507: 12,3
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelCornerSw
- decals:
- 506: 10,3
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelLineN
- decals:
- 505: 11,4
- - node:
- color: '#A020F0FF'
- id: BrickTileSteelLineS
- decals:
- 508: 11,3
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNe
- decals:
- 259: 4,24
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerNw
- decals:
- 260: 2,24
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSe
- decals:
- 262: 4,23
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteCornerSw
- decals:
- 264: 2,23
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineN
- decals:
- 261: 3,24
- - node:
- color: '#FFFFFFFF'
- id: BrickTileWhiteLineS
- decals:
- 263: 3,23
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 278: 8,23
- 279: 8,21
- 280: 8,30
- 281: 8,32
- - node:
- color: '#FFFFFFFF'
- id: Caution
- decals:
- 282: 8,34
- 283: 6,34
- - node:
- color: '#FFFFFFFF'
- id: Delivery
- decals:
- 284: 9,30
- 285: 9,32
- 286: 9,23
- 287: 8,35
- 288: 6,35
- - node:
- color: '#FFFFFFFF'
- id: DirtHeavy
- decals:
- 441: 8,11
- 446: -1,3
- 447: -3,-3
- 460: -1,14
- 466: 17,15
- - node:
- color: '#FFFFFFFF'
- id: DirtLight
- decals:
- 435: -5,10
- 436: 2,12
- 437: 6,10
- 438: 0,9
- 442: 8,2
- 443: 7,7
- 444: -1,5
- 445: 2,3
- 448: 1,-2
- 453: 7,28
- 454: 8,17
- 455: 7,24
- 456: 8,33
- 457: 6,31
- 458: 2,20
- 459: 3,14
- 461: -5,15
- 462: -1,18
- 463: 11,15
- - node:
- color: '#FFFFFFFF'
- id: DirtMedium
- decals:
- 439: -1,12
- 440: 6,4
- 449: 2,-3
- 450: 6,21
- 451: 8,22
- 452: 6,29
- 464: 13,15
- 465: 16,17
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerNe
- decals:
- 227: 4,15
- 289: 8,15
- 374: 8,33
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerNw
- decals:
- 228: -2,15
- 290: 6,15
- 315: -1,5
- 337: -6,12
- 373: 6,33
- 386: -4,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerSe
- decals:
- 235: 4,14
- 304: 8,2
- 353: 8,17
- 384: -2,-5
- 557: 4,9
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelCornerSw
- decals:
- 234: -2,14
- 308: 4,2
- 313: -1,3
- 335: -6,10
- 352: 6,17
- 383: -4,-5
- 558: -2,9
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelEndE
- decals:
- 388: 2,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelEndN
- decals:
- 242: 2,22
- 399: 1,1
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelEndS
- decals:
- 241: 2,16
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerNe
- decals:
- 404: 1,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerNw
- decals:
- 323: 6,5
- 351: 6,12
- 403: 1,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerSe
- decals:
- 330: 4,10
- 396: -2,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelInnerSw
- decals:
- 322: 4,3
- 329: 6,10
- 334: -2,10
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineE
- decals:
- 243: 2,21
- 244: 2,20
- 245: 2,19
- 246: 2,18
- 247: 2,17
- 292: 8,14
- 293: 8,13
- 294: 8,12
- 295: 8,11
- 296: 8,10
- 297: 8,9
- 298: 8,8
- 299: 8,7
- 300: 8,6
- 301: 8,5
- 302: 8,4
- 303: 8,3
- 355: 8,18
- 356: 8,19
- 357: 8,20
- 376: 8,29
- 377: 8,28
- 378: 8,27
- 379: 8,25
- 380: 8,25
- 381: 8,24
- 382: 8,26
- 387: -2,-4
- 397: 1,-2
- 398: 1,-1
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineN
- decals:
- 229: -1,15
- 230: 0,15
- 231: 1,15
- 232: 2,15
- 233: 3,15
- 291: 7,15
- 316: 0,5
- 317: 1,5
- 318: 3,5
- 319: 2,5
- 320: 4,5
- 321: 5,5
- 338: -5,12
- 339: -4,12
- 340: -3,12
- 341: -1,12
- 342: -2,12
- 343: 1,12
- 344: 0,12
- 345: 2,12
- 346: 3,12
- 347: 5,12
- 348: 4,12
- 375: 7,33
- 392: 0,-3
- 393: -1,-3
- 394: -2,-3
- 395: -3,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineS
- decals:
- 236: -1,14
- 237: 0,14
- 238: 1,14
- 239: 2,14
- 240: 3,14
- 305: 7,2
- 306: 6,2
- 307: 5,2
- 309: 3,3
- 310: 2,3
- 311: 1,3
- 312: 0,3
- 328: 5,10
- 331: -3,10
- 332: -4,10
- 333: -5,10
- 354: 7,17
- 385: -3,-5
- 389: 1,-3
- 390: 0,-3
- 391: -1,-3
- - node:
- color: '#FFFFFFFF'
- id: MiniTileSteelLineW
- decals:
- 248: 2,17
- 249: 2,18
- 250: 2,19
- 251: 2,20
- 252: 2,21
- 314: -1,4
- 324: 6,6
- 325: 6,7
- 326: 6,8
- 327: 6,9
- 336: -6,11
- 349: 6,13
- 350: 6,14
- 358: 6,18
- 359: 6,19
- 360: 6,20
- 361: 6,21
- 362: 6,22
- 363: 6,23
- 364: 6,24
- 365: 6,25
- 366: 6,26
- 367: 6,27
- 368: 6,28
- 369: 6,29
- 370: 6,30
- 371: 6,31
- 372: 6,32
- 400: 1,-2
- 401: 1,-1
- 402: 1,0
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteCornerNe
- decals:
- 107: -20,5
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteCornerNe
- decals:
- 1: -8,6
- 12: -3,5
- 27: -11,5
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteCornerNe
- decals:
- 169: -10,13
- 173: -8,12
- 184: -11,9
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteCornerNw
- decals:
- 108: -22,5
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteCornerNw
- decals:
- 0: -9,6
- 26: -18,5
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteCornerNw
- decals:
- 168: -11,13
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteCornerSe
- decals:
- 109: -20,3
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteCornerSe
- decals:
- 10: -3,3
- 18: -11,3
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteCornerSe
- decals:
- 170: -8,11
- 183: -11,8
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteCornerSw
- decals:
- 110: -22,3
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteCornerSw
- decals:
- 4: -9,3
- 19: -18,3
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteCornerSw
- decals:
- 171: -11,11
- 181: -13,8
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteEndE
- decals:
- 112: -21,2
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteEndN
- decals:
- 36: -14,1
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteEndS
- decals:
- 37: -14,-1
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteEndW
- decals:
- 111: -22,2
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteEndW
- decals:
- 180: -14,9
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteInnerNe
- decals:
- 17: -8,5
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteInnerNe
- decals:
- 175: -10,12
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteInnerSw
- decals:
- 187: -13,9
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteLineE
- decals:
- 114: -20,4
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteLineE
- decals:
- 11: -3,4
- 34: -11,4
- 38: -14,0
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteLineN
- decals:
- 113: -21,5
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteLineN
- decals:
- 13: -4,5
- 14: -5,5
- 15: -6,5
- 16: -7,5
- 28: -17,5
- 29: -16,5
- 30: -15,5
- 31: -14,5
- 32: -13,5
- 33: -12,5
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteLineN
- decals:
- 174: -9,12
- 185: -12,9
- 186: -13,9
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteLineS
- decals:
- 115: -21,3
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteLineS
- decals:
- 5: -8,3
- 6: -7,3
- 7: -6,3
- 8: -5,3
- 9: -4,3
- 20: -17,3
- 21: -16,3
- 22: -15,3
- 23: -14,3
- 24: -12,3
- 25: -13,3
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteLineS
- decals:
- 176: -9,11
- 177: -10,11
- 182: -12,8
- - node:
- color: '#0E7F1BFF'
- id: MiniTileWhiteLineW
- decals:
- 116: -22,4
- - node:
- color: '#52B4E9FF'
- id: MiniTileWhiteLineW
- decals:
- 2: -9,5
- 3: -9,4
- 35: -18,4
- 39: -14,0
- - node:
- color: '#EFB341FF'
- id: MiniTileWhiteLineW
- decals:
- 172: -11,12
- - node:
- color: '#FFFFFFFF'
- id: WarnBox
- decals:
- 147: -18,10
- 148: -16,10
- 149: -18,8
- - node:
- color: '#52B4E9FF'
- id: WarnCornerGreyscaleSW
- decals:
- 70: -4,0
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerNE
- decals:
- 425: 12,16
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerNW
- decals:
- 426: 11,16
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSW
- decals:
- 190: -13,8
- - node:
- color: '#52B4E996'
- id: WarnCornerSmallGreyscaleNE
- decals:
- 540: -13,-4
- - node:
- color: '#52B4E996'
- id: WarnCornerSmallGreyscaleNW
- decals:
- 539: -11,-4
- - node:
- color: '#52B4E9FF'
- id: WarnCornerSmallGreyscaleNW
- decals:
- 69: -8,0
- - node:
- color: '#52B4E996'
- id: WarnCornerSmallGreyscaleSE
- decals:
- 568: -12,-4
- - node:
- color: '#52B4E9FF'
- id: WarnCornerSmallGreyscaleSE
- decals:
- 90: -16,1
- 91: -17,1
- - node:
- color: '#52B4E9FF'
- id: WarnCornerSmallGreyscaleSW
- decals:
- 73: -4,1
- 88: -18,1
- 89: -17,1
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSmallNE
- decals:
- 275: 8,29
- 276: 8,20
- 411: 16,15
- 428: 12,15
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSmallNW
- decals:
- 410: 16,15
- 427: 11,15
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSmallSE
- decals:
- 274: 8,33
- 277: 8,24
- 493: 10,11
- - node:
- color: '#FFFFFFFF'
- id: WarnCornerSmallSW
- decals:
- 192: -13,9
- - node:
- color: '#52B4E9FF'
- id: WarnLineE
- decals:
- 101: -21,-1
- 102: -21,0
- 103: -21,1
- - node:
- color: '#FFFFFFFF'
- id: WarnLineE
- decals:
- 156: -10,15
- 157: -10,16
- 158: -10,17
- 207: -5,15
- 208: -5,16
- 209: -5,17
- 210: -5,18
- 211: -1,17
- 212: -1,18
- 213: -1,19
- 214: -1,20
- 256: 3,17
- 257: 3,19
- 258: 3,21
- 265: 8,30
- 266: 8,31
- 267: 8,32
- 268: 8,21
- 269: 8,22
- 270: 8,23
- 407: 16,16
- 408: 16,17
- 492: 10,10
- 553: -5,19
- 554: -5,20
- 555: -1,21
- 556: -1,22
- - node:
- color: '#52B4E996'
- id: WarnLineGreyscaleE
- decals:
- 537: -13,-3
- 567: -12,-5
- - node:
- color: '#52B4E9FF'
- id: WarnLineGreyscaleE
- decals:
- 76: -5,7
- 77: -5,8
- 82: -17,-1
- 83: -17,0
- - node:
- color: '#52B4E996'
- id: WarnLineGreyscaleN
- decals:
- 515: -10,-4
- 516: -9,-4
- 517: -8,-4
- 518: -7,-4
- 519: -6,-4
- 536: -12,-4
- - node:
- color: '#52B4E9FF'
- id: WarnLineGreyscaleN
- decals:
- 58: -11,0
- 59: -12,0
- 60: -13,0
- 67: -9,0
- - node:
- color: '#52B4E996'
- id: WarnLineGreyscaleS
- decals:
- 520: -6,-4
- 521: -7,-4
- 522: -8,-4
- 523: -9,-4
- 524: -10,-4
- 566: -11,-4
- - node:
- color: '#52B4E9FF'
- id: WarnLineGreyscaleS
- decals:
- 61: -11,0
- 62: -12,0
- 63: -13,0
- 64: -8,0
- 65: -7,0
- 66: -9,0
- 71: -3,0
- 72: -5,1
- 86: -18,1
- 87: -16,1
- - node:
- color: '#A020F0FF'
- id: WarnLineGreyscaleS
- decals:
- 509: 10,3
- 510: 11,3
- 511: 12,3
- - node:
- color: '#52B4E996'
- id: WarnLineGreyscaleW
- decals:
- 538: -11,-3
- - node:
- color: '#52B4E9FF'
- id: WarnLineGreyscaleW
- decals:
- 68: -8,1
- 74: -5,7
- 75: -5,8
- 84: -17,-1
- 85: -17,0
- - node:
- color: '#FFFFFFFF'
- id: WarnLineN
- decals:
- 131: -1,9
- 132: 0,9
- 133: 1,9
- 134: 2,9
- 135: 3,9
- 188: -11,8
- 189: -12,8
- 191: -14,9
- 478: 14,7
- 479: 13,7
- 480: 12,7
- 481: 11,7
- 482: 10,7
- 488: 14,11
- 489: 13,11
- 490: 12,11
- 491: 11,11
- 559: -2,9
- 560: 4,9
- - node:
- color: '#52B4E996'
- id: WarnLineS
- decals:
- 117: -22,3
- 118: -22,4
- 119: -22,5
- - node:
- color: '#52B4E9FF'
- id: WarnLineS
- decals:
- 98: -22,-1
- 99: -22,0
- 100: -22,1
- - node:
- color: '#FFFFFFFF'
- id: WarnLineS
- decals:
- 153: -11,15
- 154: -11,16
- 155: -11,17
- 202: -5,14
- 203: -5,15
- 204: -5,16
- 205: -5,17
- 206: -5,18
- 215: -1,17
- 216: -1,18
- 217: -1,19
- 218: -1,20
- 405: 16,16
- 406: 16,17
- 549: -5,19
- 550: -5,20
- 551: -1,21
- 552: -1,22
- - node:
- color: '#FFFFFFFF'
- id: WarnLineW
- decals:
- 136: -8,8
- 137: -9,8
- 150: -18,7
- 151: -17,7
- 152: -16,7
- 178: -8,12
- 179: -9,12
- 271: 8,34
- 272: 7,34
- 273: 6,34
- 409: 15,15
- 412: 17,15
- 423: 10,15
- 424: 13,15
- 475: 14,7
- 476: 13,7
- 477: 12,7
- 483: 14,11
- 484: 13,11
- 485: 12,11
- 486: 11,11
- 487: 10,11
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerNe
- decals:
- 432: 17,13
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSe
- decals:
- 431: 17,12
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinCornerSw
- decals:
- 430: 16,12
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinEndN
- decals:
- 429: 16,14
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinInnerNe
- decals:
- 434: 16,13
- - node:
- color: '#FFFFFFFF'
- id: WoodTrimThinLineW
- decals:
- 433: 16,13
- type: DecalGrid
- - version: 2
- data:
- tiles:
- 0,0:
- 0: 65535
- 1,0:
- 0: 65535
- 2,0:
- 0: 65525
- 0,1:
- 0: 65535
- 0,2:
- 0: 65535
- 0,3:
- 0: 65535
- 1,1:
- 0: 65535
- 1,2:
- 0: 65535
- 1,3:
- 0: 65535
- 2,1:
- 0: 65535
- 2,2:
- 0: 65535
- 2,3:
- 0: 65535
- 3,0:
- 0: 13298
- 3,1:
- 0: 65523
- 3,2:
- 0: 65535
- 3,3:
- 0: 65535
- 0,-2:
- 0: 65297
- 0,-1:
- 0: 65535
- 1,-1:
- 0: 48015
- -4,0:
- 0: 65535
- -4,1:
- 0: 65535
- -4,2:
- 0: 65535
- -4,3:
- 0: 45055
- -3,0:
- 0: 65535
- -3,1:
- 0: 65535
- -3,2:
- 0: 65535
- -3,3:
- 0: 65535
- -2,0:
- 0: 65535
- -2,1:
- 0: 65535
- -2,2:
- 0: 65535
- -2,3:
- 0: 65535
- -1,0:
- 0: 65535
- -1,1:
- 0: 65535
- -1,2:
- 0: 65535
- -1,3:
- 0: 65535
- -4,-1:
- 0: 65518
- -3,-1:
- 0: 65535
- -2,-1:
- 0: 65535
- -2,-2:
- 0: 65416
- -1,-2:
- 0: 65280
- -1,-1:
- 0: 65535
- -4,4:
- 0: 20394
- -3,4:
- 0: 12287
- -2,4:
- 0: 61439
- -1,4:
- 0: 65535
- -1,5:
- 0: 61183
- 0,4:
- 0: 65535
- 0,5:
- 0: 65535
- 0,6:
- 0: 61694
- 1,4:
- 0: 65535
- 1,5:
- 0: 65535
- 1,6:
- 0: 65279
- 1,7:
- 0: 61422
- 2,4:
- 0: 16383
- 2,5:
- 0: 13107
- 2,6:
- 0: 13107
- 2,7:
- 0: 13107
- 3,4:
- 0: 4095
- -6,0:
- 0: 65535
- -6,1:
- 0: 36863
- -6,2:
- 0: 3976
- -5,0:
- 0: 65535
- -5,1:
- 0: 65535
- -5,2:
- 0: 61439
- -5,3:
- 0: 12030
- 1,8:
- 0: 61422
- 2,8:
- 0: 13107
- -6,-1:
- 0: 65314
- -5,-1:
- 0: 65348
- 4,2:
- 0: 61680
- 4,3:
- 0: 63351
- 4,4:
- 0: 3959
- 0,-3:
- 0: 7936
- 1,-3:
- 0: 12544
- 1,-2:
- 0: 34958
- 2,-1:
- 0: 17487
- 3,-1:
- 0: 8879
- -4,-3:
- 0: 12032
- -4,-2:
- 0: 60962
- -3,-3:
- 0: 20224
- -3,-2:
- 0: 65348
- -2,-3:
- 0: 36608
- -1,-3:
- 0: 3840
- -4,5:
- 0: 62788
- -3,5:
- 0: 61986
- -2,5:
- 0: 62190
- -2,6:
- 0: 1578
- -1,6:
- 0: 58083
- -1,7:
- 0: 140
- 0,7:
- 0: 12048
- -7,0:
- 0: 7953
- -7,1:
- 0: 7953
- -7,2:
- 0: 19555
- -7,3:
- 0: 34948
- -6,3:
- 0: 4336
- 0,8:
- 0: 3618
- -7,-1:
- 0: 7959
- -7,-2:
- 0: 51200
- -6,-2:
- 0: 12032
- -5,-2:
- 0: 18244
- -5,-3:
- 0: 51200
- 4,0:
- 0: 35956
- 4,1:
- 0: 240
- 5,0:
- 0: 4096
- 5,1:
- 0: 12561
- 5,2:
- 0: 63734
- 5,3:
- 0: 63624
- 5,4:
- 0: 3976
- 4,-1:
- 0: 25360
- -6,4:
- 0: 35939
- -6,5:
- 0: 8
- -5,5:
- 0: 2247
- -5,4:
- 0: 11810
- uniqueMixes:
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.824879
- - 82.10312
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- chunkSize: 4
- type: GridAtmosphere
- - type: GasTileOverlay
- - type: RadiationGridResistance
- - uid: 2522
- components:
- - type: MetaData
- - type: Transform
- - type: Map
- - type: PhysicsMap
- - type: GridTree
- - type: MovedGrids
- - type: Broadphase
- - type: OccluderTree
- - type: LoadedMap
-- proto: AdvMopItem
- entities:
- - uid: 3
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: AirAlarm
- entities:
- - uid: 15
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,8.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 913
- - 914
- - 912
- - 901
- - 911
- - 902
- type: DeviceNetwork
- - devices:
- - 1374
- - 1356
- - 1376
- - 1345
- - 1350
- - 1377
- - 1349
- - 1375
- - 1360
- - 1384
- - 1401
- - 1364
- - 1402
- - 1365
- - 913
- - 914
- - 912
- - 901
- - 911
- - 902
- type: DeviceList
- - uid: 16
- components:
- - pos: -14.5,6.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 903
- - 917
- type: DeviceNetwork
- - devices:
- - 1355
- - 1378
- - 1381
- - 1346
- - 1353
- - 1380
- - 1379
- - 1354
- - 1382
- - 1351
- - 1383
- - 1352
- - 913
- - 915
- - 916
- - 917
- - 918
- - 903
- type: DeviceList
- - uid: 17
- components:
- - pos: 1.5,16.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 1336
- - 1391
- - 1335
- - 1392
- - 1394
- - 1333
- - 1393
- - 1334
- - 1395
- - 1332
- type: DeviceNetwork
- - devices:
- - 926
- - 927
- - 928
- - 929
- - 907
- - 1336
- - 1391
- - 1335
- - 1392
- - 1394
- - 1333
- - 1393
- - 1334
- - 1395
- - 1332
- type: DeviceList
- - uid: 18
- components:
- - pos: -12.5,10.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceNetwork
- - devices:
- - 1329
- - 1367
- - 1396
- - 1361
- - 1366
- - 1328
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceList
- - uid: 19
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,9.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 937
- - 935
- type: DeviceNetwork
- - devices:
- - 1368
- - 1330
- - 1331
- - 1369
- - 1387
- - 1342
- - 1370
- - 1343
- - 1373
- - 1344
- - 905
- - 906
- - 925
- - 921
- - 920
- - 919
- - 922
- - 923
- - 924
- - 935
- - 937
- type: DeviceList
- - uid: 20
- components:
- - rot: -1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceNetwork
- - devices:
- - 1359
- - 1372
- - 1358
- - 1371
- - 1386
- - 1347
- - 1399
- - 1362
- - 1385
- - 1348
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceList
-- proto: AirlockAtmosphericsGlassLocked
- entities:
- - uid: 21
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,9.5
- parent: 1
- type: Transform
-- proto: AirlockChemistry
- entities:
- - uid: 22
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,2.5
- parent: 1
- type: Transform
-- proto: AirlockCommandGlassLocked
- entities:
- - uid: 23
- components:
- - pos: -2.5,14.5
- parent: 1
- type: Transform
- - uid: 24
- components:
- - pos: -0.5,16.5
- parent: 1
- type: Transform
- - uid: 25
- components:
- - pos: 1.5,2.5
- parent: 1
- type: Transform
- - uid: 26
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,16.5
- parent: 1
- type: Transform
-- proto: AirlockCommandLocked
- entities:
- - uid: 27
- components:
- - pos: 5.5,14.5
- parent: 1
- type: Transform
- - uid: 28
- components:
- - pos: 2.5,22.5
- parent: 1
- type: Transform
- - uid: 29
- components:
- - pos: 3.5,21.5
- parent: 1
- type: Transform
- - uid: 30
- components:
- - pos: 3.5,19.5
- parent: 1
- type: Transform
- - uid: 31
- components:
- - pos: 3.5,17.5
- parent: 1
- type: Transform
- - uid: 32
- components:
- - pos: 2.5,16.5
- parent: 1
- type: Transform
- - uid: 33
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,14.5
- parent: 1
- type: Transform
-- proto: AirlockEngineeringGlassLocked
- entities:
- - uid: 34
- components:
- - pos: -10.5,10.5
- parent: 1
- type: Transform
-- proto: AirlockEngineeringLocked
- entities:
- - uid: 35
- components:
- - rot: 1.5707963267948966 rad
- pos: -6.5,11.5
- parent: 1
- type: Transform
- - uid: 36
- components:
- - pos: -9.5,14.5
- parent: 1
- type: Transform
- - uid: 37
- components:
- - pos: -10.5,14.5
- parent: 1
- type: Transform
-- proto: AirlockEVAGlassLocked
- entities:
- - uid: 38
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,9.5
- parent: 1
- type: Transform
-- proto: AirlockGlassShuttle
- entities:
- - uid: 39
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,30.5
- parent: 1
- type: Transform
- - uid: 40
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,32.5
- parent: 1
- type: Transform
- - uid: 41
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,35.5
- parent: 1
- type: Transform
- - uid: 42
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,23.5
- parent: 1
- type: Transform
- - uid: 43
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,35.5
- parent: 1
- type: Transform
- - uid: 44
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,21.5
- parent: 1
- type: Transform
-- proto: AirlockJanitorLocked
- entities:
- - uid: 45
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,3.5
- parent: 1
- type: Transform
-- proto: AirlockMaintCommandLocked
- entities:
- - uid: 46
- components:
- - pos: 4.5,1.5
- parent: 1
- type: Transform
-- proto: AirlockMaintMedLocked
- entities:
- - uid: 47
- components:
- - pos: -8.5,7.5
- parent: 1
- type: Transform
-- proto: AirlockMedicalGlassLocked
- entities:
- - uid: 48
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,2.5
- parent: 1
- type: Transform
- - uid: 49
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,6.5
- parent: 1
- type: Transform
- - uid: 50
- components:
- - pos: -16.5,2.5
- parent: 1
- type: Transform
- - uid: 51
- components:
- - pos: -13.5,2.5
- parent: 1
- type: Transform
- - uid: 52
- components:
- - pos: -9.5,4.5
- parent: 1
- type: Transform
- - uid: 53
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,4.5
- parent: 1
- type: Transform
-- proto: AirlockMedicalLocked
- entities:
- - uid: 54
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,-1.5
- parent: 1
- type: Transform
-- proto: AirlockVirologyLocked
- entities:
- - uid: 55
- components:
- - pos: -18.5,4.5
- parent: 1
- type: Transform
-- proto: AlwaysPoweredWallLight
- entities:
- - uid: 60
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,-4.5
- parent: 1
- type: Transform
-- proto: APCBasic
- entities:
- - uid: 61
- components:
- - pos: -8.5,14.5
- parent: 1
- type: Transform
- - uid: 62
- components:
- - pos: -7.5,10.5
- parent: 1
- type: Transform
- - uid: 63
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 1
- type: Transform
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 64
- components:
- - pos: 8.5,35.5
- parent: 1
- type: Transform
- - uid: 65
- components:
- - pos: 9.5,32.5
- parent: 1
- type: Transform
- - uid: 66
- components:
- - pos: 9.5,23.5
- parent: 1
- type: Transform
- - uid: 67
- components:
- - pos: 9.5,21.5
- parent: 1
- type: Transform
- - uid: 68
- components:
- - pos: 6.5,35.5
- parent: 1
- type: Transform
- - uid: 69
- components:
- - pos: 9.5,30.5
- parent: 1
- type: Transform
-- proto: Bed
- entities:
- - uid: 70
- components:
- - pos: -22.5,0.5
- parent: 1
- type: Transform
- - uid: 71
- components:
- - pos: -19.5,1.5
- parent: 1
- type: Transform
- - uid: 72
- components:
- - pos: -19.5,0.5
- parent: 1
- type: Transform
- - uid: 73
- components:
- - pos: -19.5,-0.5
- parent: 1
- type: Transform
- - uid: 74
- components:
- - pos: -22.5,1.5
- parent: 1
- type: Transform
- - uid: 75
- components:
- - pos: -22.5,-0.5
- parent: 1
- type: Transform
- - uid: 76
- components:
- - pos: -5.5,18.5
- parent: 1
- type: Transform
- - uid: 77
- components:
- - pos: -5.5,17.5
- parent: 1
- type: Transform
- - uid: 78
- components:
- - pos: -3.5,18.5
- parent: 1
- type: Transform
- - uid: 79
- components:
- - pos: -5.5,16.5
- parent: 1
- type: Transform
- - uid: 80
- components:
- - pos: -5.5,15.5
- parent: 1
- type: Transform
- - uid: 81
- components:
- - pos: -3.5,17.5
- parent: 1
- type: Transform
- - uid: 82
- components:
- - pos: -3.5,16.5
- parent: 1
- type: Transform
- - uid: 83
- components:
- - pos: -3.5,15.5
- parent: 1
- type: Transform
- - uid: 84
- components:
- - pos: 17.5,12.5
- parent: 1
- type: Transform
- - uid: 1822
- components:
- - pos: -3.5,19.5
- parent: 1
- type: Transform
- - uid: 1871
- components:
- - pos: -5.5,19.5
- parent: 1
- type: Transform
- - uid: 2088
- components:
- - pos: -3.5,20.5
- parent: 1
- type: Transform
- - uid: 2415
- components:
- - pos: -5.5,20.5
- parent: 1
- type: Transform
-- proto: BedsheetCaptain
- entities:
- - uid: 85
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,12.5
- parent: 1
- type: Transform
-- proto: BedsheetGreen
- entities:
- - uid: 86
- components:
- - pos: -19.5,1.5
- parent: 1
- type: Transform
- - uid: 87
- components:
- - pos: -19.5,0.5
- parent: 1
- type: Transform
- - uid: 88
- components:
- - pos: -19.5,-0.5
- parent: 1
- type: Transform
- - uid: 89
- components:
- - pos: -22.5,-0.5
- parent: 1
- type: Transform
- - uid: 90
- components:
- - pos: -22.5,0.5
- parent: 1
- type: Transform
- - uid: 91
- components:
- - pos: -22.5,1.5
- parent: 1
- type: Transform
-- proto: BedsheetMedical
- entities:
- - uid: 92
- components:
- - pos: -3.5,8.5
- parent: 1
- type: Transform
- - uid: 93
- components:
- - pos: -3.5,7.5
- parent: 1
- type: Transform
- - uid: 94
- components:
- - pos: -5.5,8.5
- parent: 1
- type: Transform
- - uid: 95
- components:
- - pos: -5.5,7.5
- parent: 1
- type: Transform
- - uid: 100
- components:
- - pos: -3.5,18.5
- parent: 1
- type: Transform
- - uid: 101
- components:
- - pos: -3.5,17.5
- parent: 1
- type: Transform
- - uid: 102
- components:
- - pos: -3.5,20.5
- parent: 1
- type: Transform
- - uid: 103
- components:
- - pos: -3.5,19.5
- parent: 1
- type: Transform
-- proto: BedsheetOrange
- entities:
- - uid: 2420
- components:
- - pos: -5.5,19.5
- parent: 1
- type: Transform
- - uid: 2421
- components:
- - pos: -5.5,20.5
- parent: 1
- type: Transform
- - uid: 2422
- components:
- - pos: -3.5,16.5
- parent: 1
- type: Transform
- - uid: 2423
- components:
- - pos: -3.5,15.5
- parent: 1
- type: Transform
-- proto: BedsheetRed
- entities:
- - uid: 96
- components:
- - pos: -5.5,15.5
- parent: 1
- type: Transform
- - uid: 97
- components:
- - pos: -5.5,16.5
- parent: 1
- type: Transform
- - uid: 98
- components:
- - pos: -5.5,17.5
- parent: 1
- type: Transform
- - uid: 99
- components:
- - pos: -5.5,18.5
- parent: 1
- type: Transform
-- proto: BenchSteelLeft
- entities:
- - uid: 104
- components:
- - pos: -14.5,5.5
- parent: 1
- type: Transform
- - uid: 105
- components:
- - pos: -0.5,1.5
- parent: 1
- type: Transform
- - uid: 106
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-1.5
- parent: 1
- type: Transform
- - uid: 107
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 1
- type: Transform
- - uid: 108
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-3.5
- parent: 1
- type: Transform
- - uid: 109
- components:
- - pos: 0.5,12.5
- parent: 1
- type: Transform
- - uid: 110
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,29.5
- parent: 1
- type: Transform
-- proto: BenchSteelMiddle
- entities:
- - uid: 111
- components:
- - pos: -13.5,5.5
- parent: 1
- type: Transform
- - uid: 112
- components:
- - pos: 1.5,12.5
- parent: 1
- type: Transform
- - uid: 113
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,30.5
- parent: 1
- type: Transform
-- proto: BenchSteelRight
- entities:
- - uid: 114
- components:
- - pos: -12.5,5.5
- parent: 1
- type: Transform
- - uid: 115
- components:
- - pos: 0.5,1.5
- parent: 1
- type: Transform
- - uid: 116
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-1.5
- parent: 1
- type: Transform
- - uid: 117
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-3.5
- parent: 1
- type: Transform
- - uid: 118
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 1
- type: Transform
- - uid: 119
- components:
- - pos: 2.5,12.5
- parent: 1
- type: Transform
- - uid: 120
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,31.5
- parent: 1
- type: Transform
-- proto: BiomassReclaimer
- entities:
- - uid: 121
- components:
- - pos: -8.5,1.5
- parent: 1
- type: Transform
-- proto: BluespaceBeaker
- entities:
- - uid: 123
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 124
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 125
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2434
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
- - uid: 2435
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
- - uid: 2436
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
- - uid: 2437
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
- - uid: 2519
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
- - uid: 2521
- components:
- - pos: -4.548982,0.16582179
- parent: 1
- type: Transform
- - sleepingAllowed: False
- type: Physics
-- proto: BoxBeaker
- entities:
- - uid: 126
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 127
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 128
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: BoxBottle
- entities:
- - uid: 129
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 130
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 131
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: BoxFlare
- entities:
- - uid: 2431
- components:
- - pos: 11.672989,10.511342
- parent: 1
- type: Transform
- - uid: 2432
- components:
- - pos: 11.672989,10.511342
- parent: 1
- type: Transform
- - uid: 2433
- components:
- - pos: 11.672989,10.511342
- parent: 1
- type: Transform
- - uid: 2449
- components:
- - pos: 11.672989,10.511342
- parent: 1
- type: Transform
-- proto: BoxFlashbang
- entities:
- - uid: 2430
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
- - uid: 2505
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
- - uid: 2515
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
-- proto: BoxFolderBlack
- entities:
- - uid: 147
- components:
- - pos: -13.687119,-3.4444265
- parent: 1
- type: Transform
-- proto: BoxFolderBlue
- entities:
- - uid: 148
- components:
- - pos: -13.562119,-3.6163015
- parent: 1
- type: Transform
-- proto: BoxHandcuff
- entities:
- - uid: 146
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
- - uid: 2494
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
- - uid: 2501
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
-- proto: BoxInflatable
- entities:
- - uid: 152
- components:
- - pos: -13.603695,8.84306
- parent: 1
- type: Transform
- - uid: 153
- components:
- - pos: -13.447445,8.733685
- parent: 1
- type: Transform
- - uid: 154
- components:
- - pos: -16.105898,7.8279896
- parent: 1
- type: Transform
- - uid: 155
- components:
- - pos: -16.105898,7.7342396
- parent: 1
- type: Transform
-- proto: BoxMagazinePistolSubMachineGunTopMounted
- entities:
- - uid: 156
- components:
- - pos: 14.503235,6.6935053
- parent: 1
- type: Transform
- - uid: 157
- components:
- - pos: 14.51886,6.5841303
- parent: 1
- type: Transform
- - uid: 158
- components:
- - pos: 14.503235,6.3966303
- parent: 1
- type: Transform
-- proto: BoxMagazineRifleHighVelocity
- entities:
- - uid: 159
- components:
- - pos: 14.503235,6.6778803
- parent: 1
- type: Transform
- - uid: 160
- components:
- - pos: 14.503235,6.5372553
- parent: 1
- type: Transform
- - uid: 161
- components:
- - pos: 14.503235,6.4122553
- parent: 1
- type: Transform
-- proto: BoxMouthSwab
- entities:
- - uid: 162
- components:
- - pos: -2.836203,5.617304
- parent: 1
- type: Transform
- - uid: 163
- components:
- - pos: -20.631887,5.7038546
- parent: 1
- type: Transform
- - uid: 164
- components:
- - pos: -20.522512,5.6257296
- parent: 1
- type: Transform
-- proto: BoxMRE
- entities:
- - uid: 165
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 166
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 167
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 168
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 169
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 170
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 171
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 172
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 173
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 174
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 175
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 176
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 177
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 178
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 179
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 180
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 181
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 182
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 183
- components:
- - pos: 1.515235,-3.5387702
- parent: 1
- type: Transform
- - uid: 1670
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2426
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2429
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2496
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2497
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2498
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2504
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2512
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2514
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2518
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
- - uid: 2520
- components:
- - pos: 1.5338726,-3.522396
- parent: 1
- type: Transform
-- proto: BoxNitrileGloves
- entities:
- - uid: 185
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 186
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 187
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: BoxSyringe
- entities:
- - uid: 188
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 189
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 190
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: BoxZiptie
- entities:
- - uid: 2425
- components:
- - pos: 11.192221,8.68534
- parent: 1
- type: Transform
- - uid: 2499
- components:
- - pos: 11.192221,8.68534
- parent: 1
- type: Transform
- - uid: 2502
- components:
- - pos: 11.207846,8.700965
- parent: 1
- type: Transform
-- proto: CableApcExtension
- entities:
- - uid: 220
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 221
- components:
- - pos: 4.5,0.5
- parent: 1
- type: Transform
- - uid: 222
- components:
- - pos: 4.5,1.5
- parent: 1
- type: Transform
- - uid: 223
- components:
- - pos: 4.5,2.5
- parent: 1
- type: Transform
- - uid: 224
- components:
- - pos: 4.5,3.5
- parent: 1
- type: Transform
- - uid: 225
- components:
- - pos: 5.5,3.5
- parent: 1
- type: Transform
- - uid: 226
- components:
- - pos: 6.5,3.5
- parent: 1
- type: Transform
- - uid: 227
- components:
- - pos: 7.5,3.5
- parent: 1
- type: Transform
- - uid: 228
- components:
- - pos: 8.5,3.5
- parent: 1
- type: Transform
- - uid: 229
- components:
- - pos: 8.5,3.5
- parent: 1
- type: Transform
- - uid: 230
- components:
- - pos: 9.5,3.5
- parent: 1
- type: Transform
- - uid: 231
- components:
- - pos: 10.5,3.5
- parent: 1
- type: Transform
- - uid: 232
- components:
- - pos: 11.5,3.5
- parent: 1
- type: Transform
- - uid: 233
- components:
- - pos: 3.5,3.5
- parent: 1
- type: Transform
- - uid: 234
- components:
- - pos: 2.5,3.5
- parent: 1
- type: Transform
- - uid: 235
- components:
- - pos: 1.5,3.5
- parent: 1
- type: Transform
- - uid: 236
- components:
- - pos: 1.5,2.5
- parent: 1
- type: Transform
- - uid: 237
- components:
- - pos: 1.5,1.5
- parent: 1
- type: Transform
- - uid: 238
- components:
- - pos: 1.5,0.5
- parent: 1
- type: Transform
- - uid: 239
- components:
- - pos: 1.5,-0.5
- parent: 1
- type: Transform
- - uid: 240
- components:
- - pos: 1.5,-1.5
- parent: 1
- type: Transform
- - uid: 241
- components:
- - pos: 1.5,-2.5
- parent: 1
- type: Transform
- - uid: 242
- components:
- - pos: 1.5,-3.5
- parent: 1
- type: Transform
- - uid: 243
- components:
- - pos: 0.5,-3.5
- parent: 1
- type: Transform
- - uid: 244
- components:
- - pos: -0.5,-3.5
- parent: 1
- type: Transform
- - uid: 245
- components:
- - pos: -1.5,-3.5
- parent: 1
- type: Transform
- - uid: 246
- components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
- - uid: 247
- components:
- - pos: 7.5,4.5
- parent: 1
- type: Transform
- - uid: 248
- components:
- - pos: 7.5,5.5
- parent: 1
- type: Transform
- - uid: 249
- components:
- - pos: 7.5,6.5
- parent: 1
- type: Transform
- - uid: 250
- components:
- - pos: 7.5,7.5
- parent: 1
- type: Transform
- - uid: 251
- components:
- - pos: 7.5,8.5
- parent: 1
- type: Transform
- - uid: 252
- components:
- - pos: 7.5,9.5
- parent: 1
- type: Transform
- - uid: 253
- components:
- - pos: 7.5,10.5
- parent: 1
- type: Transform
- - uid: 254
- components:
- - pos: 7.5,11.5
- parent: 1
- type: Transform
- - uid: 255
- components:
- - pos: 7.5,12.5
- parent: 1
- type: Transform
- - uid: 256
- components:
- - pos: 7.5,13.5
- parent: 1
- type: Transform
- - uid: 257
- components:
- - pos: 7.5,14.5
- parent: 1
- type: Transform
- - uid: 258
- components:
- - pos: 7.5,15.5
- parent: 1
- type: Transform
- - uid: 259
- components:
- - pos: 7.5,16.5
- parent: 1
- type: Transform
- - uid: 260
- components:
- - pos: 7.5,17.5
- parent: 1
- type: Transform
- - uid: 261
- components:
- - pos: 7.5,18.5
- parent: 1
- type: Transform
- - uid: 262
- components:
- - pos: 7.5,19.5
- parent: 1
- type: Transform
- - uid: 263
- components:
- - pos: 7.5,20.5
- parent: 1
- type: Transform
- - uid: 264
- components:
- - pos: 7.5,21.5
- parent: 1
- type: Transform
- - uid: 265
- components:
- - pos: 7.5,22.5
- parent: 1
- type: Transform
- - uid: 266
- components:
- - pos: 7.5,23.5
- parent: 1
- type: Transform
- - uid: 267
- components:
- - pos: 7.5,24.5
- parent: 1
- type: Transform
- - uid: 268
- components:
- - pos: 7.5,25.5
- parent: 1
- type: Transform
- - uid: 269
- components:
- - pos: 7.5,26.5
- parent: 1
- type: Transform
- - uid: 270
- components:
- - pos: 7.5,27.5
- parent: 1
- type: Transform
- - uid: 271
- components:
- - pos: 7.5,28.5
- parent: 1
- type: Transform
- - uid: 272
- components:
- - pos: 7.5,29.5
- parent: 1
- type: Transform
- - uid: 273
- components:
- - pos: 7.5,30.5
- parent: 1
- type: Transform
- - uid: 274
- components:
- - pos: 7.5,31.5
- parent: 1
- type: Transform
- - uid: 275
- components:
- - pos: 7.5,32.5
- parent: 1
- type: Transform
- - uid: 276
- components:
- - pos: 7.5,33.5
- parent: 1
- type: Transform
- - uid: 277
- components:
- - pos: 8.5,7.5
- parent: 1
- type: Transform
- - uid: 278
- components:
- - pos: 9.5,7.5
- parent: 1
- type: Transform
- - uid: 279
- components:
- - pos: 10.5,7.5
- parent: 1
- type: Transform
- - uid: 280
- components:
- - pos: 11.5,7.5
- parent: 1
- type: Transform
- - uid: 281
- components:
- - pos: 12.5,7.5
- parent: 1
- type: Transform
- - uid: 282
- components:
- - pos: 13.5,7.5
- parent: 1
- type: Transform
- - uid: 283
- components:
- - pos: 10.5,8.5
- parent: 1
- type: Transform
- - uid: 284
- components:
- - pos: 10.5,9.5
- parent: 1
- type: Transform
- - uid: 285
- components:
- - pos: 10.5,10.5
- parent: 1
- type: Transform
- - uid: 286
- components:
- - pos: 10.5,11.5
- parent: 1
- type: Transform
- - uid: 287
- components:
- - pos: 11.5,11.5
- parent: 1
- type: Transform
- - uid: 288
- components:
- - pos: 12.5,11.5
- parent: 1
- type: Transform
- - uid: 289
- components:
- - pos: 13.5,11.5
- parent: 1
- type: Transform
- - uid: 290
- components:
- - pos: 1.5,4.5
- parent: 1
- type: Transform
- - uid: 291
- components:
- - pos: 1.5,5.5
- parent: 1
- type: Transform
- - uid: 292
- components:
- - pos: 4.5,4.5
- parent: 1
- type: Transform
- - uid: 293
- components:
- - pos: 4.5,5.5
- parent: 1
- type: Transform
- - uid: 294
- components:
- - pos: 0.5,3.5
- parent: 1
- type: Transform
- - uid: 295
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - uid: 296
- components:
- - pos: -7.5,10.5
- parent: 1
- type: Transform
- - uid: 297
- components:
- - pos: -7.5,9.5
- parent: 1
- type: Transform
- - uid: 298
- components:
- - pos: -7.5,8.5
- parent: 1
- type: Transform
- - uid: 299
- components:
- - pos: -7.5,7.5
- parent: 1
- type: Transform
- - uid: 300
- components:
- - pos: -7.5,6.5
- parent: 1
- type: Transform
- - uid: 301
- components:
- - pos: -7.5,5.5
- parent: 1
- type: Transform
- - uid: 302
- components:
- - pos: -7.5,4.5
- parent: 1
- type: Transform
- - uid: 303
- components:
- - pos: -6.5,4.5
- parent: 1
- type: Transform
- - uid: 304
- components:
- - pos: -5.5,4.5
- parent: 1
- type: Transform
- - uid: 305
- components:
- - pos: -4.5,4.5
- parent: 1
- type: Transform
- - uid: 306
- components:
- - pos: -3.5,4.5
- parent: 1
- type: Transform
- - uid: 307
- components:
- - pos: -8.5,0.5
- parent: 1
- type: Transform
- - uid: 308
- components:
- - pos: -7.5,3.5
- parent: 1
- type: Transform
- - uid: 309
- components:
- - pos: -7.5,2.5
- parent: 1
- type: Transform
- - uid: 310
- components:
- - pos: -7.5,1.5
- parent: 1
- type: Transform
- - uid: 311
- components:
- - pos: -7.5,0.5
- parent: 1
- type: Transform
- - uid: 312
- components:
- - pos: -6.5,2.5
- parent: 1
- type: Transform
- - uid: 313
- components:
- - pos: -5.5,2.5
- parent: 1
- type: Transform
- - uid: 314
- components:
- - pos: -4.5,2.5
- parent: 1
- type: Transform
- - uid: 315
- components:
- - pos: -3.5,2.5
- parent: 1
- type: Transform
- - uid: 316
- components:
- - pos: -6.5,0.5
- parent: 1
- type: Transform
- - uid: 317
- components:
- - pos: -5.5,0.5
- parent: 1
- type: Transform
- - uid: 318
- components:
- - pos: -4.5,0.5
- parent: 1
- type: Transform
- - uid: 319
- components:
- - pos: -3.5,0.5
- parent: 1
- type: Transform
- - uid: 320
- components:
- - pos: -7.5,-0.5
- parent: 1
- type: Transform
- - uid: 321
- components:
- - pos: -6.5,6.5
- parent: 1
- type: Transform
- - uid: 322
- components:
- - pos: -5.5,6.5
- parent: 1
- type: Transform
- - uid: 323
- components:
- - pos: -4.5,6.5
- parent: 1
- type: Transform
- - uid: 324
- components:
- - pos: -3.5,6.5
- parent: 1
- type: Transform
- - uid: 325
- components:
- - pos: -6.5,8.5
- parent: 1
- type: Transform
- - uid: 326
- components:
- - pos: -5.5,8.5
- parent: 1
- type: Transform
- - uid: 327
- components:
- - pos: -4.5,8.5
- parent: 1
- type: Transform
- - uid: 328
- components:
- - pos: -3.5,8.5
- parent: 1
- type: Transform
- - uid: 329
- components:
- - pos: -8.5,2.5
- parent: 1
- type: Transform
- - uid: 330
- components:
- - pos: -8.5,4.5
- parent: 1
- type: Transform
- - uid: 331
- components:
- - pos: -8.5,6.5
- parent: 1
- type: Transform
- - uid: 332
- components:
- - pos: -8.5,8.5
- parent: 1
- type: Transform
- - uid: 333
- components:
- - pos: -9.5,4.5
- parent: 1
- type: Transform
- - uid: 334
- components:
- - pos: -10.5,4.5
- parent: 1
- type: Transform
- - uid: 335
- components:
- - pos: -11.5,4.5
- parent: 1
- type: Transform
- - uid: 336
- components:
- - pos: -12.5,4.5
- parent: 1
- type: Transform
- - uid: 337
- components:
- - pos: -11.5,3.5
- parent: 1
- type: Transform
- - uid: 338
- components:
- - pos: -11.5,2.5
- parent: 1
- type: Transform
- - uid: 339
- components:
- - pos: -11.5,5.5
- parent: 1
- type: Transform
- - uid: 340
- components:
- - pos: -13.5,4.5
- parent: 1
- type: Transform
- - uid: 341
- components:
- - pos: -13.5,3.5
- parent: 1
- type: Transform
- - uid: 342
- components:
- - pos: -13.5,2.5
- parent: 1
- type: Transform
- - uid: 343
- components:
- - pos: -13.5,5.5
- parent: 1
- type: Transform
- - uid: 344
- components:
- - pos: -0.5,0.5
- parent: 1
- type: Transform
- - uid: 345
- components:
- - pos: 0.5,0.5
- parent: 1
- type: Transform
- - uid: 346
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 347
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - uid: 348
- components:
- - pos: 0.5,-1.5
- parent: 1
- type: Transform
- - uid: 349
- components:
- - pos: -0.5,-1.5
- parent: 1
- type: Transform
- - uid: 350
- components:
- - pos: -3.5,-3.5
- parent: 1
- type: Transform
- - uid: 351
- components:
- - pos: -3.5,-2.5
- parent: 1
- type: Transform
- - uid: 352
- components:
- - pos: -3.5,-4.5
- parent: 1
- type: Transform
- - uid: 353
- components:
- - pos: -1.5,-2.5
- parent: 1
- type: Transform
- - uid: 354
- components:
- - pos: -1.5,-4.5
- parent: 1
- type: Transform
- - uid: 355
- components:
- - pos: 1.5,-4.5
- parent: 1
- type: Transform
- - uid: 356
- components:
- - pos: 2.5,-3.5
- parent: 1
- type: Transform
- - uid: 357
- components:
- - pos: 7.5,2.5
- parent: 1
- type: Transform
- - uid: 358
- components:
- - pos: 11.5,4.5
- parent: 1
- type: Transform
- - uid: 359
- components:
- - pos: 12.5,3.5
- parent: 1
- type: Transform
- - uid: 360
- components:
- - pos: 11.5,2.5
- parent: 1
- type: Transform
- - uid: 361
- components:
- - pos: 13.5,8.5
- parent: 1
- type: Transform
- - uid: 362
- components:
- - pos: 14.5,7.5
- parent: 1
- type: Transform
- - uid: 363
- components:
- - pos: 13.5,6.5
- parent: 1
- type: Transform
- - uid: 364
- components:
- - pos: 10.5,6.5
- parent: 1
- type: Transform
- - uid: 365
- components:
- - pos: 10.5,12.5
- parent: 1
- type: Transform
- - uid: 366
- components:
- - pos: 13.5,12.5
- parent: 1
- type: Transform
- - uid: 367
- components:
- - pos: 13.5,10.5
- parent: 1
- type: Transform
- - uid: 368
- components:
- - pos: 14.5,11.5
- parent: 1
- type: Transform
- - uid: 369
- components:
- - pos: -8.5,14.5
- parent: 1
- type: Transform
- - uid: 370
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
- - uid: 371
- components:
- - pos: -8.5,12.5
- parent: 1
- type: Transform
- - uid: 372
- components:
- - pos: -8.5,11.5
- parent: 1
- type: Transform
- - uid: 373
- components:
- - pos: -9.5,12.5
- parent: 1
- type: Transform
- - uid: 374
- components:
- - pos: -10.5,12.5
- parent: 1
- type: Transform
- - uid: 375
- components:
- - pos: -11.5,12.5
- parent: 1
- type: Transform
- - uid: 376
- components:
- - pos: -12.5,12.5
- parent: 1
- type: Transform
- - uid: 377
- components:
- - pos: -13.5,12.5
- parent: 1
- type: Transform
- - uid: 378
- components:
- - pos: -10.5,10.5
- parent: 1
- type: Transform
- - uid: 379
- components:
- - pos: -10.5,9.5
- parent: 1
- type: Transform
- - uid: 380
- components:
- - pos: -11.5,9.5
- parent: 1
- type: Transform
- - uid: 381
- components:
- - pos: -12.5,9.5
- parent: 1
- type: Transform
- - uid: 382
- components:
- - pos: -14.5,9.5
- parent: 1
- type: Transform
- - uid: 383
- components:
- - pos: -13.5,9.5
- parent: 1
- type: Transform
- - uid: 384
- components:
- - pos: -15.5,9.5
- parent: 1
- type: Transform
- - uid: 385
- components:
- - pos: -16.5,9.5
- parent: 1
- type: Transform
- - uid: 386
- components:
- - pos: -16.5,8.5
- parent: 1
- type: Transform
- - uid: 387
- components:
- - pos: -16.5,10.5
- parent: 1
- type: Transform
- - uid: 388
- components:
- - pos: -17.5,9.5
- parent: 1
- type: Transform
- - uid: 389
- components:
- - pos: -10.5,8.5
- parent: 1
- type: Transform
- - uid: 390
- components:
- - pos: -10.5,7.5
- parent: 1
- type: Transform
- - uid: 391
- components:
- - pos: -12.5,8.5
- parent: 1
- type: Transform
- - uid: 392
- components:
- - pos: -12.5,7.5
- parent: 1
- type: Transform
- - uid: 393
- components:
- - pos: -10.5,13.5
- parent: 1
- type: Transform
- - uid: 394
- components:
- - pos: -12.5,13.5
- parent: 1
- type: Transform
- - uid: 395
- components:
- - pos: -12.5,11.5
- parent: 1
- type: Transform
- - uid: 396
- components:
- - pos: 5.5,14.5
- parent: 1
- type: Transform
- - uid: 397
- components:
- - pos: -6.5,14.5
- parent: 1
- type: Transform
- - uid: 398
- components:
- - pos: -7.5,12.5
- parent: 1
- type: Transform
- - uid: 399
- components:
- - pos: 4.5,14.5
- parent: 1
- type: Transform
- - uid: 400
- components:
- - pos: 3.5,14.5
- parent: 1
- type: Transform
- - uid: 401
- components:
- - pos: 2.5,14.5
- parent: 1
- type: Transform
- - uid: 402
- components:
- - pos: 1.5,14.5
- parent: 1
- type: Transform
- - uid: 403
- components:
- - pos: 0.5,14.5
- parent: 1
- type: Transform
- - uid: 404
- components:
- - pos: -0.5,14.5
- parent: 1
- type: Transform
- - uid: 405
- components:
- - pos: -1.5,14.5
- parent: 1
- type: Transform
- - uid: 406
- components:
- - pos: -2.5,14.5
- parent: 1
- type: Transform
- - uid: 407
- components:
- - pos: -3.5,14.5
- parent: 1
- type: Transform
- - uid: 408
- components:
- - pos: -4.5,14.5
- parent: 1
- type: Transform
- - uid: 409
- components:
- - pos: -4.5,15.5
- parent: 1
- type: Transform
- - uid: 410
- components:
- - pos: -4.5,16.5
- parent: 1
- type: Transform
- - uid: 411
- components:
- - pos: -4.5,17.5
- parent: 1
- type: Transform
- - uid: 412
- components:
- - pos: -5.5,18.5
- parent: 1
- type: Transform
- - uid: 413
- components:
- - pos: -4.5,18.5
- parent: 1
- type: Transform
- - uid: 414
- components:
- - pos: -3.5,18.5
- parent: 1
- type: Transform
- - uid: 415
- components:
- - pos: -5.5,16.5
- parent: 1
- type: Transform
- - uid: 416
- components:
- - pos: -3.5,16.5
- parent: 1
- type: Transform
- - uid: 417
- components:
- - pos: -5.5,14.5
- parent: 1
- type: Transform
- - uid: 418
- components:
- - pos: -0.5,15.5
- parent: 1
- type: Transform
- - uid: 419
- components:
- - pos: -0.5,16.5
- parent: 1
- type: Transform
- - uid: 420
- components:
- - pos: -0.5,17.5
- parent: 1
- type: Transform
- - uid: 421
- components:
- - pos: -0.5,18.5
- parent: 1
- type: Transform
- - uid: 422
- components:
- - pos: -0.5,19.5
- parent: 1
- type: Transform
- - uid: 423
- components:
- - pos: -0.5,20.5
- parent: 1
- type: Transform
- - uid: 424
- components:
- - pos: -1.5,20.5
- parent: 1
- type: Transform
- - uid: 425
- components:
- - pos: 0.5,20.5
- parent: 1
- type: Transform
- - uid: 426
- components:
- - pos: 0.5,18.5
- parent: 1
- type: Transform
- - uid: 427
- components:
- - pos: -1.5,18.5
- parent: 1
- type: Transform
- - uid: 428
- components:
- - pos: 2.5,15.5
- parent: 1
- type: Transform
- - uid: 429
- components:
- - pos: 2.5,16.5
- parent: 1
- type: Transform
- - uid: 430
- components:
- - pos: 2.5,17.5
- parent: 1
- type: Transform
- - uid: 431
- components:
- - pos: 2.5,18.5
- parent: 1
- type: Transform
- - uid: 432
- components:
- - pos: 2.5,19.5
- parent: 1
- type: Transform
- - uid: 433
- components:
- - pos: 2.5,20.5
- parent: 1
- type: Transform
- - uid: 434
- components:
- - pos: 2.5,21.5
- parent: 1
- type: Transform
- - uid: 435
- components:
- - pos: 2.5,22.5
- parent: 1
- type: Transform
- - uid: 436
- components:
- - pos: 2.5,23.5
- parent: 1
- type: Transform
- - uid: 437
- components:
- - pos: 2.5,24.5
- parent: 1
- type: Transform
- - uid: 438
- components:
- - pos: 3.5,24.5
- parent: 1
- type: Transform
- - uid: 439
- components:
- - pos: 4.5,24.5
- parent: 1
- type: Transform
- - uid: 440
- components:
- - pos: 3.5,22.5
- parent: 1
- type: Transform
- - uid: 441
- components:
- - pos: 4.5,22.5
- parent: 1
- type: Transform
- - uid: 442
- components:
- - pos: 3.5,20.5
- parent: 1
- type: Transform
- - uid: 443
- components:
- - pos: 4.5,20.5
- parent: 1
- type: Transform
- - uid: 444
- components:
- - pos: 3.5,18.5
- parent: 1
- type: Transform
- - uid: 445
- components:
- - pos: 4.5,18.5
- parent: 1
- type: Transform
- - uid: 446
- components:
- - pos: 3.5,16.5
- parent: 1
- type: Transform
- - uid: 447
- components:
- - pos: 4.5,16.5
- parent: 1
- type: Transform
- - uid: 448
- components:
- - pos: -7.5,14.5
- parent: 1
- type: Transform
- - uid: 449
- components:
- - pos: -10.5,11.5
- parent: 1
- type: Transform
- - uid: 450
- components:
- - pos: -11.5,1.5
- parent: 1
- type: Transform
- - uid: 451
- components:
- - pos: -11.5,0.5
- parent: 1
- type: Transform
- - uid: 452
- components:
- - pos: -11.5,-0.5
- parent: 1
- type: Transform
- - uid: 453
- components:
- - pos: -13.5,1.5
- parent: 1
- type: Transform
- - uid: 454
- components:
- - pos: -13.5,0.5
- parent: 1
- type: Transform
- - uid: 455
- components:
- - pos: -13.5,-0.5
- parent: 1
- type: Transform
- - uid: 456
- components:
- - pos: -14.5,4.5
- parent: 1
- type: Transform
- - uid: 457
- components:
- - pos: -15.5,4.5
- parent: 1
- type: Transform
- - uid: 458
- components:
- - pos: -16.5,4.5
- parent: 1
- type: Transform
- - uid: 459
- components:
- - pos: -17.5,4.5
- parent: 1
- type: Transform
- - uid: 460
- components:
- - pos: -18.5,4.5
- parent: 1
- type: Transform
- - uid: 461
- components:
- - pos: -19.5,4.5
- parent: 1
- type: Transform
- - uid: 462
- components:
- - pos: -20.5,4.5
- parent: 1
- type: Transform
- - uid: 463
- components:
- - pos: -21.5,4.5
- parent: 1
- type: Transform
- - uid: 464
- components:
- - pos: -22.5,4.5
- parent: 1
- type: Transform
- - uid: 465
- components:
- - pos: -22.5,3.5
- parent: 1
- type: Transform
- - uid: 466
- components:
- - pos: -22.5,2.5
- parent: 1
- type: Transform
- - uid: 467
- components:
- - pos: -22.5,1.5
- parent: 1
- type: Transform
- - uid: 468
- components:
- - pos: -22.5,5.5
- parent: 1
- type: Transform
- - uid: 469
- components:
- - pos: -20.5,5.5
- parent: 1
- type: Transform
- - uid: 470
- components:
- - pos: -20.5,3.5
- parent: 1
- type: Transform
- - uid: 471
- components:
- - pos: -20.5,2.5
- parent: 1
- type: Transform
- - uid: 472
- components:
- - pos: -20.5,1.5
- parent: 1
- type: Transform
- - uid: 473
- components:
- - pos: -18.5,5.5
- parent: 1
- type: Transform
- - uid: 474
- components:
- - pos: -18.5,3.5
- parent: 1
- type: Transform
- - uid: 475
- components:
- - pos: -18.5,2.5
- parent: 1
- type: Transform
- - uid: 476
- components:
- - pos: -18.5,1.5
- parent: 1
- type: Transform
- - uid: 477
- components:
- - pos: -16.5,5.5
- parent: 1
- type: Transform
- - uid: 478
- components:
- - pos: -16.5,3.5
- parent: 1
- type: Transform
- - uid: 479
- components:
- - pos: -16.5,2.5
- parent: 1
- type: Transform
- - uid: 480
- components:
- - pos: -16.5,1.5
- parent: 1
- type: Transform
- - uid: 481
- components:
- - pos: 8.5,14.5
- parent: 1
- type: Transform
- - uid: 482
- components:
- - pos: 9.5,14.5
- parent: 1
- type: Transform
- - uid: 483
- components:
- - pos: 10.5,14.5
- parent: 1
- type: Transform
- - uid: 484
- components:
- - pos: 11.5,14.5
- parent: 1
- type: Transform
- - uid: 485
- components:
- - pos: 12.5,14.5
- parent: 1
- type: Transform
- - uid: 486
- components:
- - pos: 13.5,14.5
- parent: 1
- type: Transform
- - uid: 487
- components:
- - pos: 13.5,15.5
- parent: 1
- type: Transform
- - uid: 488
- components:
- - pos: 14.5,15.5
- parent: 1
- type: Transform
- - uid: 489
- components:
- - pos: 15.5,15.5
- parent: 1
- type: Transform
- - uid: 490
- components:
- - pos: 16.5,15.5
- parent: 1
- type: Transform
- - uid: 491
- components:
- - pos: 16.5,14.5
- parent: 1
- type: Transform
- - uid: 492
- components:
- - pos: 16.5,13.5
- parent: 1
- type: Transform
- - uid: 493
- components:
- - pos: 16.5,12.5
- parent: 1
- type: Transform
- - uid: 494
- components:
- - pos: 17.5,13.5
- parent: 1
- type: Transform
- - uid: 495
- components:
- - pos: 16.5,16.5
- parent: 1
- type: Transform
- - uid: 496
- components:
- - pos: 16.5,17.5
- parent: 1
- type: Transform
- - uid: 497
- components:
- - pos: 17.5,15.5
- parent: 1
- type: Transform
- - uid: 498
- components:
- - pos: 10.5,15.5
- parent: 1
- type: Transform
- - uid: 499
- components:
- - pos: 10.5,16.5
- parent: 1
- type: Transform
- - uid: 500
- components:
- - pos: 10.5,17.5
- parent: 1
- type: Transform
- - uid: 501
- components:
- - pos: 13.5,16.5
- parent: 1
- type: Transform
- - uid: 502
- components:
- - pos: 13.5,17.5
- parent: 1
- type: Transform
- - uid: 503
- components:
- - pos: -13.5,-1.5
- parent: 1
- type: Transform
- - uid: 504
- components:
- - pos: -13.5,-2.5
- parent: 1
- type: Transform
- - uid: 505
- components:
- - pos: -13.5,-3.5
- parent: 1
- type: Transform
- - uid: 506
- components:
- - pos: -12.5,-3.5
- parent: 1
- type: Transform
- - uid: 507
- components:
- - pos: -11.5,-3.5
- parent: 1
- type: Transform
- - uid: 508
- components:
- - pos: -10.5,-3.5
- parent: 1
- type: Transform
- - uid: 509
- components:
- - pos: -9.5,-3.5
- parent: 1
- type: Transform
- - uid: 510
- components:
- - pos: -8.5,-3.5
- parent: 1
- type: Transform
- - uid: 511
- components:
- - pos: -7.5,-3.5
- parent: 1
- type: Transform
- - uid: 512
- components:
- - pos: -6.5,-3.5
- parent: 1
- type: Transform
- - uid: 513
- components:
- - pos: -5.5,-3.5
- parent: 1
- type: Transform
- - uid: 514
- components:
- - pos: -11.5,-2.5
- parent: 1
- type: Transform
- - uid: 515
- components:
- - pos: -11.5,-4.5
- parent: 1
- type: Transform
- - uid: 516
- components:
- - pos: -9.5,-2.5
- parent: 1
- type: Transform
- - uid: 517
- components:
- - pos: -9.5,-4.5
- parent: 1
- type: Transform
- - uid: 518
- components:
- - pos: -7.5,-2.5
- parent: 1
- type: Transform
- - uid: 519
- components:
- - pos: -7.5,-4.5
- parent: 1
- type: Transform
- - uid: 520
- components:
- - pos: -5.5,-2.5
- parent: 1
- type: Transform
- - uid: 521
- components:
- - pos: -5.5,-4.5
- parent: 1
- type: Transform
- - uid: 522
- components:
- - pos: -13.5,-4.5
- parent: 1
- type: Transform
- - uid: 523
- components:
- - pos: -16.5,11.5
- parent: 1
- type: Transform
- - uid: 524
- components:
- - pos: -16.5,12.5
- parent: 1
- type: Transform
- - uid: 525
- components:
- - pos: -16.5,13.5
- parent: 1
- type: Transform
-- proto: CableApcStack
- entities:
- - uid: 526
- components:
- - pos: -11.461973,7.4275074
- parent: 1
- type: Transform
- - uid: 527
- components:
- - pos: -11.461973,7.4275074
- parent: 1
- type: Transform
-- proto: CableHV
- entities:
- - uid: 528
- components:
- - pos: -11.5,11.5
- parent: 1
- type: Transform
- - uid: 529
- components:
- - pos: -12.5,11.5
- parent: 1
- type: Transform
- - uid: 530
- components:
- - pos: -13.5,11.5
- parent: 1
- type: Transform
- - uid: 531
- components:
- - pos: -13.5,13.5
- parent: 1
- type: Transform
- - uid: 532
- components:
- - pos: -12.5,13.5
- parent: 1
- type: Transform
- - uid: 533
- components:
- - pos: -11.5,13.5
- parent: 1
- type: Transform
- - uid: 534
- components:
- - pos: -12.5,12.5
- parent: 1
- type: Transform
- - uid: 535
- components:
- - pos: -13.5,12.5
- parent: 1
- type: Transform
- - uid: 536
- components:
- - pos: -11.5,12.5
- parent: 1
- type: Transform
- - uid: 537
- components:
- - pos: -10.5,11.5
- parent: 1
- type: Transform
- - uid: 538
- components:
- - pos: -9.5,11.5
- parent: 1
- type: Transform
- - uid: 539
- components:
- - pos: -9.5,12.5
- parent: 1
- type: Transform
- - uid: 540
- components:
- - pos: -9.5,13.5
- parent: 1
- type: Transform
- - uid: 541
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
- - uid: 542
- components:
- - pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 543
- components:
- - pos: -8.5,11.5
- parent: 1
- type: Transform
- - uid: 544
- components:
- - pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 545
- components:
- - pos: -8.5,10.5
- parent: 1
- type: Transform
- - uid: 546
- components:
- - pos: -7.5,11.5
- parent: 1
- type: Transform
- - uid: 547
- components:
- - pos: -6.5,11.5
- parent: 1
- type: Transform
- - uid: 548
- components:
- - pos: -5.5,11.5
- parent: 1
- type: Transform
- - uid: 549
- components:
- - pos: -4.5,11.5
- parent: 1
- type: Transform
- - uid: 550
- components:
- - pos: -3.5,11.5
- parent: 1
- type: Transform
- - uid: 551
- components:
- - pos: -2.5,11.5
- parent: 1
- type: Transform
- - uid: 552
- components:
- - pos: -1.5,11.5
- parent: 1
- type: Transform
- - uid: 553
- components:
- - pos: -0.5,11.5
- parent: 1
- type: Transform
- - uid: 554
- components:
- - pos: 0.5,11.5
- parent: 1
- type: Transform
- - uid: 555
- components:
- - pos: 1.5,11.5
- parent: 1
- type: Transform
- - uid: 556
- components:
- - pos: 2.5,11.5
- parent: 1
- type: Transform
- - uid: 557
- components:
- - pos: 3.5,11.5
- parent: 1
- type: Transform
- - uid: 558
- components:
- - pos: 4.5,11.5
- parent: 1
- type: Transform
- - uid: 559
- components:
- - pos: 5.5,11.5
- parent: 1
- type: Transform
- - uid: 560
- components:
- - pos: 6.5,11.5
- parent: 1
- type: Transform
- - uid: 561
- components:
- - pos: 7.5,11.5
- parent: 1
- type: Transform
- - uid: 562
- components:
- - pos: 7.5,10.5
- parent: 1
- type: Transform
- - uid: 563
- components:
- - pos: 7.5,9.5
- parent: 1
- type: Transform
- - uid: 564
- components:
- - pos: 7.5,8.5
- parent: 1
- type: Transform
- - uid: 565
- components:
- - pos: 7.5,6.5
- parent: 1
- type: Transform
- - uid: 566
- components:
- - pos: 7.5,7.5
- parent: 1
- type: Transform
- - uid: 567
- components:
- - pos: 7.5,5.5
- parent: 1
- type: Transform
- - uid: 568
- components:
- - pos: 7.5,4.5
- parent: 1
- type: Transform
- - uid: 569
- components:
- - pos: 7.5,3.5
- parent: 1
- type: Transform
- - uid: 570
- components:
- - pos: 6.5,3.5
- parent: 1
- type: Transform
- - uid: 571
- components:
- - pos: 5.5,3.5
- parent: 1
- type: Transform
- - uid: 572
- components:
- - pos: 4.5,3.5
- parent: 1
- type: Transform
- - uid: 573
- components:
- - pos: 4.5,2.5
- parent: 1
- type: Transform
- - uid: 574
- components:
- - pos: 4.5,0.5
- parent: 1
- type: Transform
- - uid: 575
- components:
- - pos: 4.5,-0.5
- parent: 1
- type: Transform
- - uid: 576
- components:
- - pos: 4.5,1.5
- parent: 1
- type: Transform
-- proto: CableHVStack
- entities:
- - uid: 577
- components:
- - pos: -11.461973,7.4431324
- parent: 1
- type: Transform
- - uid: 578
- components:
- - pos: -11.461973,7.4431324
- parent: 1
- type: Transform
-- proto: CableMV
- entities:
- - uid: 579
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
- - uid: 580
- components:
- - pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 581
- components:
- - pos: -8.5,14.5
- parent: 1
- type: Transform
- - uid: 582
- components:
- - pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 583
- components:
- - pos: -7.5,9.5
- parent: 1
- type: Transform
- - uid: 584
- components:
- - pos: -7.5,10.5
- parent: 1
- type: Transform
- - uid: 585
- components:
- - pos: 4.5,-0.5
- parent: 1
- type: Transform
- - uid: 586
- components:
- - pos: 4.5,0.5
- parent: 1
- type: Transform
- - uid: 587
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
-- proto: CableMVStack
- entities:
- - uid: 588
- components:
- - pos: -11.461973,7.4431324
- parent: 1
- type: Transform
- - uid: 589
- components:
- - pos: -11.461973,7.4431324
- parent: 1
- type: Transform
-- proto: CableTerminal
- entities:
- - uid: 590
- components:
- - pos: -13.5,12.5
- parent: 1
- type: Transform
- - uid: 591
- components:
- - pos: -12.5,12.5
- parent: 1
- type: Transform
- - uid: 592
- components:
- - pos: -11.5,12.5
- parent: 1
- type: Transform
-- proto: CarpetSBlue
- entities:
- - uid: 593
- components:
- - pos: 17.5,13.5
- parent: 1
- type: Transform
- - uid: 594
- components:
- - pos: 17.5,12.5
- parent: 1
- type: Transform
-- proto: Catwalk
- entities:
- - uid: 595
- components:
- - pos: -11.5,12.5
- parent: 1
- type: Transform
- - uid: 596
- components:
- - pos: -12.5,12.5
- parent: 1
- type: Transform
- - uid: 597
- components:
- - pos: -13.5,12.5
- parent: 1
- type: Transform
- - uid: 598
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,8.5
- parent: 1
- type: Transform
- - uid: 599
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,8.5
- parent: 1
- type: Transform
- - uid: 600
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,0.5
- parent: 1
- type: Transform
-- proto: Chair
- entities:
- - uid: 601
- components:
- - pos: -5.5,5.5
- parent: 1
- type: Transform
- - uid: 602
- components:
- - pos: -6.5,5.5
- parent: 1
- type: Transform
- - uid: 605
- components:
- - pos: 2.5,1.5
- parent: 1
- type: Transform
- - uid: 606
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-1.5
- parent: 1
- type: Transform
-- proto: ChairOfficeDark
- entities:
- - uid: 607
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,16.5
- parent: 1
- type: Transform
- - uid: 608
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,16.5
- parent: 1
- type: Transform
-- proto: ChairOfficeLight
- entities:
- - uid: 609
- components:
- - pos: -3.5,0.5
- parent: 1
- type: Transform
- - uid: 610
- components:
- - pos: -12.5,-3.5
- parent: 1
- type: Transform
-- proto: chem_master
- entities:
- - uid: 611
- components:
- - pos: -3.5,-0.5
- parent: 1
- type: Transform
-- proto: ChemDispenser
- entities:
- - uid: 612
- components:
- - pos: -2.5,-0.5
- parent: 1
- type: Transform
-- proto: ChemistryHotplate
- entities:
- - uid: 613
- components:
- - pos: -4.5,0.5
- parent: 1
- type: Transform
- - placedEntities:
- - 2521
- - 2519
- - 2434
- - 2435
- - 2436
- - 2437
- type: SolutionHeater
- - isPlaceable: False
- type: PlaceableSurface
- - uid: 614
- components:
- - pos: -2.5,-4.5
- parent: 1
- type: Transform
-- proto: ChessBoard
- entities:
- - uid: 615
- components:
- - pos: -19.452597,1.411099
- parent: 1
- type: Transform
-- proto: CigCartonBlack
- entities:
- - uid: 616
- components:
- - pos: 11.556568,14.666323
- parent: 1
- type: Transform
-- proto: CloningPod
- entities:
- - uid: 617
- components:
- - pos: -6.5,-0.5
- parent: 1
- type: Transform
-- proto: ClosetJanitor
- entities:
- - uid: 2
- components:
- - pos: 10.5,4.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 11
- - 12
- - 6
- - 14
- - 9
- - 13
- - 10
- - 7
- - 4
- - 3
- - 8
- - 5
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: ClosetL3Filled
- entities:
- - uid: 618
- components:
- - pos: -11.5,-0.5
- parent: 1
- type: Transform
- - uid: 619
- components:
- - pos: -12.5,-0.5
- parent: 1
- type: Transform
-- proto: ClosetL3JanitorFilled
- entities:
- - uid: 620
- components:
- - pos: 12.5,2.5
- parent: 1
- type: Transform
-- proto: ClosetL3VirologyFilled
- entities:
- - uid: 621
- components:
- - pos: -19.5,3.5
- parent: 1
- type: Transform
-- proto: ClosetWallFireFilledRandom
- entities:
- - uid: 622
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,8.5
- parent: 1
- type: Transform
- - uid: 623
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,0.5
- parent: 1
- type: Transform
-- proto: ClothingBackpackDuffelSurgeryFilled
- entities:
- - uid: 624
- components:
- - pos: -15.512499,1.8656251
- parent: 1
- type: Transform
- - uid: 625
- components:
- - pos: -15.512499,1.7250001
- parent: 1
- type: Transform
-- proto: ClothingBeltChiefEngineerFilled
- entities:
- - uid: 627
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 639
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2479
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2484
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingBeltJanitorFilled
- entities:
- - uid: 4
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingBeltMedicalFilled
- entities:
- - uid: 650
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 660
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2459
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2468
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingBeltSecurityFilled
- entities:
- - uid: 670
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 683
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 688
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 703
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 706
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 637
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 640
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2475
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2488
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingEyesGlassesSecurity
- entities:
- - uid: 675
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 685
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 693
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 697
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 707
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingEyesHudMedical
- entities:
- - uid: 191
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 192
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 193
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 194
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 195
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 651
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 661
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2452
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2461
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesColorOrange
- entities:
- - uid: 5
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 629
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 641
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2471
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2489
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesCombat
- entities:
- - uid: 677
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 679
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 694
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 698
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 708
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHandsGlovesLatex
- entities:
- - uid: 721
- components:
- - pos: -10.494837,-2.619924
- parent: 1
- type: Transform
-- proto: ClothingHandsGlovesNitrile
- entities:
- - uid: 652
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 662
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2455
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2469
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHatCentcom
- entities:
- - uid: 722
- components:
- - pos: 12.577686,14.634814
- parent: 1
- type: Transform
-- proto: ClothingHeadHatSurgcapBlue
- entities:
- - uid: 196
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 197
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 198
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 199
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 200
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetERTEngineer
- entities:
- - uid: 630
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 642
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2473
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2487
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetERTJanitor
- entities:
- - uid: 6
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetERTLeader
- entities:
- - uid: 709
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetERTMedic
- entities:
- - uid: 653
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 663
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2454
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2463
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingHeadHelmetERTSecurity
- entities:
- - uid: 673
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 681
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 692
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 704
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingMaskBreath
- entities:
- - uid: 723
- components:
- - pos: -15.621874,1.4281251
- parent: 1
- type: Transform
-- proto: ClothingMaskGasERT
- entities:
- - uid: 7
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 631
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 643
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 654
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 664
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 676
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 686
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 695
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 699
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 710
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2453
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2464
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2476
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2485
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingMaskSterile
- entities:
- - uid: 201
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 202
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 203
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 204
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 205
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 724
- components:
- - pos: -10.479212,-2.369924
- parent: 1
- type: Transform
-- proto: ClothingNeckStethoscope
- entities:
- - uid: 206
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 207
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 208
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 209
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 210
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 655
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 665
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2458
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2467
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 8
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 632
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 644
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 656
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 666
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 674
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 680
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 689
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 701
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 711
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2451
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2462
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2472
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2483
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitERTEngineer
- entities:
- - uid: 725
- components:
- - pos: 12.363798,10.655693
- parent: 1
- type: Transform
- - uid: 726
- components:
- - pos: 12.629423,10.671318
- parent: 1
- type: Transform
- - uid: 729
- components:
- - pos: 13.553246,10.656452
- parent: 1
- type: Transform
- - uid: 730
- components:
- - pos: 13.318871,10.672077
- parent: 1
- type: Transform
-- proto: ClothingOuterHardsuitERTJanitor
- entities:
- - uid: 9
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitERTLeaderFluff
- entities:
- - uid: 712
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingOuterHardsuitERTMedical
- entities:
- - uid: 727
- components:
- - pos: 12.426298,12.655693
- parent: 1
- type: Transform
- - uid: 728
- components:
- - pos: 12.629423,12.640068
- parent: 1
- type: Transform
- - uid: 1578
- components:
- - pos: 13.584496,12.625202
- parent: 1
- type: Transform
- - uid: 1581
- components:
- - pos: 13.396996,12.625202
- parent: 1
- type: Transform
-- proto: ClothingOuterHardsuitERTSecurity
- entities:
- - uid: 1579
- components:
- - pos: 14.350121,12.656452
- parent: 1
- type: Transform
- - uid: 1582
- components:
- - pos: 14.568871,12.656452
- parent: 1
- type: Transform
- - uid: 1583
- components:
- - pos: 14.334496,10.718952
- parent: 1
- type: Transform
- - uid: 1806
- components:
- - pos: 14.553246,10.718952
- parent: 1
- type: Transform
-- proto: ClothingShoesBootsMagAdv
- entities:
- - uid: 10
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 713
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 731
- components:
- - pos: 14.537621,10.328327
- parent: 1
- type: Transform
- - uid: 732
- components:
- - pos: 14.350121,10.312702
- parent: 1
- type: Transform
- - uid: 733
- components:
- - pos: 12.363798,12.249443
- parent: 1
- type: Transform
- - uid: 734
- components:
- - pos: 12.566923,12.249443
- parent: 1
- type: Transform
- - uid: 735
- components:
- - pos: 12.410673,10.265068
- parent: 1
- type: Transform
- - uid: 736
- components:
- - pos: 12.598173,10.265068
- parent: 1
- type: Transform
- - uid: 737
- components:
- - pos: 14.365746,12.250202
- parent: 1
- type: Transform
- - uid: 738
- components:
- - pos: 14.592072,12.255352
- parent: 1
- type: Transform
- - uid: 739
- components:
- - pos: 13.350121,10.265827
- parent: 1
- type: Transform
- - uid: 740
- components:
- - pos: 13.553246,10.265827
- parent: 1
- type: Transform
- - uid: 1596
- components:
- - pos: 13.350121,12.234577
- parent: 1
- type: Transform
- - uid: 1597
- components:
- - pos: 13.584496,12.218952
- parent: 1
- type: Transform
-- proto: computerBodyScanner
- entities:
- - uid: 741
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,0.5
- parent: 1
- type: Transform
- - uid: 742
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,0.5
- parent: 1
- type: Transform
-- proto: ComputerCloningConsole
- entities:
- - uid: 743
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,-0.5
- parent: 1
- type: Transform
-- proto: ComputerComms
- entities:
- - uid: 744
- components:
- - pos: 11.5,17.5
- parent: 1
- type: Transform
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 745
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,16.5
- parent: 1
- type: Transform
-- proto: ComputerId
- entities:
- - uid: 746
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,16.5
- parent: 1
- type: Transform
-- proto: ComputerRadar
- entities:
- - uid: 747
- components:
- - pos: 12.5,17.5
- parent: 1
- type: Transform
-- proto: CrateChemistrySecure
- entities:
- - uid: 122
- components:
- - pos: -10.5,1.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 132
- - 133
- - 134
- - 135
- - 136
- - 129
- - 137
- - 138
- - 139
- - 140
- - 123
- - 124
- - 125
- - 141
- - 126
- - 127
- - 128
- - 130
- - 131
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: CrateEngineeringAMEControl
- entities:
- - uid: 748
- components:
- - pos: -7.5,16.5
- parent: 1
- type: Transform
-- proto: CrateEngineeringAMEJar
- entities:
- - uid: 755
- components:
- - pos: -11.5,15.5
- parent: 1
- type: Transform
-- proto: CrateEngineeringAMEShielding
- entities:
- - uid: 749
- components:
- - pos: -7.5,17.5
- parent: 1
- type: Transform
- - uid: 750
- components:
- - pos: -8.5,17.5
- parent: 1
- type: Transform
-- proto: CrateEngineeringCableBulk
- entities:
- - uid: 751
- components:
- - pos: -8.5,15.5
- parent: 1
- type: Transform
-- proto: CrateEngineeringGenerator
- entities:
- - uid: 752
- components:
- - pos: -8.5,16.5
- parent: 1
- type: Transform
-- proto: CrateEngineeringShuttle
- entities:
- - uid: 753
- components:
- - pos: -7.5,15.5
- parent: 1
- type: Transform
-- proto: CrateMedicalSecure
- entities:
- - uid: 184
- components:
- - pos: -10.5,-0.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 210
- - 187
- - 209
- - 185
- - 206
- - 186
- - 207
- - 216
- - 217
- - 218
- - 208
- - 188
- - 196
- - 189
- - 197
- - 198
- - 199
- - 201
- - 202
- - 203
- - 204
- - 200
- - 205
- - 191
- - 211
- - 212
- - 213
- - 214
- - 190
- - 192
- - 193
- - 194
- - 195
- - 215
- - 219
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: Crematorium
- entities:
- - uid: 59
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,-4.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: CrewMonitoringServer
- entities:
- - uid: 757
- components:
- - pos: 17.5,16.5
- parent: 1
- type: Transform
-- proto: DiseaseDiagnoser
- entities:
- - uid: 758
- components:
- - pos: -22.5,3.5
- parent: 1
- type: Transform
-- proto: DisposalBend
- entities:
- - uid: 759
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,14.5
- parent: 1
- type: Transform
- - uid: 760
- components:
- - pos: 7.5,14.5
- parent: 1
- type: Transform
- - uid: 761
- components:
- - rot: 1.5707963267948966 rad
- pos: -10.5,11.5
- parent: 1
- type: Transform
- - uid: 762
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,9.5
- parent: 1
- type: Transform
- - uid: 763
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-2.5
- parent: 1
- type: Transform
- - uid: 764
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-2.5
- parent: 1
- type: Transform
- - uid: 765
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,4.5
- parent: 1
- type: Transform
- - uid: 766
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,4.5
- parent: 1
- type: Transform
- - uid: 2500
- components:
- - pos: -21.5,6.5
- parent: 1
- type: Transform
-- proto: DisposalJunction
- entities:
- - uid: 767
- components:
- - pos: 7.5,12.5
- parent: 1
- type: Transform
-- proto: DisposalPipe
- entities:
- - uid: 768
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,14.5
- parent: 1
- type: Transform
- - uid: 769
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,14.5
- parent: 1
- type: Transform
- - uid: 770
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,14.5
- parent: 1
- type: Transform
- - uid: 771
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,14.5
- parent: 1
- type: Transform
- - uid: 772
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,14.5
- parent: 1
- type: Transform
- - uid: 773
- components:
- - pos: 7.5,13.5
- parent: 1
- type: Transform
- - uid: 774
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,12.5
- parent: 1
- type: Transform
- - uid: 775
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,11.5
- parent: 1
- type: Transform
- - uid: 776
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,11.5
- parent: 1
- type: Transform
- - uid: 777
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,11.5
- parent: 1
- type: Transform
- - uid: 778
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,11.5
- parent: 1
- type: Transform
- - uid: 779
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,11.5
- parent: 1
- type: Transform
- - uid: 780
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,11.5
- parent: 1
- type: Transform
- - uid: 781
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,11.5
- parent: 1
- type: Transform
- - uid: 782
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,11.5
- parent: 1
- type: Transform
- - uid: 783
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,11.5
- parent: 1
- type: Transform
- - uid: 784
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,11.5
- parent: 1
- type: Transform
- - uid: 785
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,11.5
- parent: 1
- type: Transform
- - uid: 786
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,11.5
- parent: 1
- type: Transform
- - uid: 787
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,11.5
- parent: 1
- type: Transform
- - uid: 788
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,11.5
- parent: 1
- type: Transform
- - uid: 789
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,11.5
- parent: 1
- type: Transform
- - uid: 790
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,11.5
- parent: 1
- type: Transform
- - uid: 791
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,11.5
- parent: 1
- type: Transform
- - uid: 792
- components:
- - pos: -10.5,10.5
- parent: 1
- type: Transform
- - uid: 793
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,9.5
- parent: 1
- type: Transform
- - uid: 794
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,9.5
- parent: 1
- type: Transform
- - uid: 795
- components:
- - rot: -1.5707963267948966 rad
- pos: -13.5,9.5
- parent: 1
- type: Transform
- - uid: 796
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,9.5
- parent: 1
- type: Transform
- - uid: 797
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,9.5
- parent: 1
- type: Transform
- - uid: 798
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,9.5
- parent: 1
- type: Transform
- - uid: 799
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,9.5
- parent: 1
- type: Transform
- - uid: 800
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,9.5
- parent: 1
- type: Transform
- - uid: 801
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-3.5
- parent: 1
- type: Transform
- - uid: 802
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-2.5
- parent: 1
- type: Transform
- - uid: 803
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-2.5
- parent: 1
- type: Transform
- - uid: 804
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-1.5
- parent: 1
- type: Transform
- - uid: 805
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 1
- type: Transform
- - uid: 806
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,0.5
- parent: 1
- type: Transform
- - uid: 807
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,1.5
- parent: 1
- type: Transform
- - uid: 808
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,2.5
- parent: 1
- type: Transform
- - uid: 809
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 1
- type: Transform
- - uid: 810
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,4.5
- parent: 1
- type: Transform
- - uid: 811
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,4.5
- parent: 1
- type: Transform
- - uid: 812
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,4.5
- parent: 1
- type: Transform
- - uid: 813
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,4.5
- parent: 1
- type: Transform
- - uid: 814
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,4.5
- parent: 1
- type: Transform
- - uid: 815
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,5.5
- parent: 1
- type: Transform
- - uid: 816
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,6.5
- parent: 1
- type: Transform
- - uid: 817
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,7.5
- parent: 1
- type: Transform
- - uid: 818
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,8.5
- parent: 1
- type: Transform
- - uid: 819
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,9.5
- parent: 1
- type: Transform
- - uid: 820
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,10.5
- parent: 1
- type: Transform
- - uid: 2503
- components:
- - rot: -1.5707963267948966 rad
- pos: -22.5,6.5
- parent: 1
- type: Transform
- - uid: 2517
- components:
- - rot: -1.5707963267948966 rad
- pos: -23.5,6.5
- parent: 1
- type: Transform
-- proto: DisposalTrunk
- entities:
- - uid: 821
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
- - uid: 822
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,12.5
- parent: 1
- type: Transform
- - uid: 823
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,9.5
- parent: 1
- type: Transform
- - uid: 824
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-4.5
- parent: 1
- type: Transform
- - uid: 2438
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,5.5
- parent: 1
- type: Transform
- - uid: 2506
- components:
- - rot: 1.5707963267948966 rad
- pos: -24.5,6.5
- parent: 1
- type: Transform
-- proto: DisposalUnit
- entities:
- - uid: 825
- components:
- - pos: 5.5,12.5
- parent: 1
- type: Transform
- - uid: 826
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
- - uid: 827
- components:
- - pos: -1.5,-4.5
- parent: 1
- type: Transform
- - uid: 2508
- components:
- - pos: -21.5,5.5
- parent: 1
- type: Transform
-- proto: DisposalYJunction
- entities:
- - uid: 828
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,11.5
- parent: 1
- type: Transform
-- proto: DrinkBeerBottleFull
- entities:
- - uid: 829
- components:
- - pos: 0.24880648,-0.2702334
- parent: 1
- type: Transform
- - uid: 830
- components:
- - pos: 0.5300565,0.011016607
- parent: 1
- type: Transform
-- proto: Dropper
- entities:
- - uid: 132
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 133
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 134
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 135
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 136
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: EmergencyHampter
- entities:
- - uid: 714
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 831
- components:
- - desc: Какой-то мужик.
- name: ua_No_Name48237
- type: MetaData
- - pos: -19.549643,7.33531
- parent: 1
- type: Transform
-- proto: EmergencyLight
- entities:
- - uid: 832
- components:
- - pos: -16.5,5.5
- parent: 1
- type: Transform
- - uid: 833
- components:
- - pos: -11.5,5.5
- parent: 1
- type: Transform
- - uid: 834
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,0.5
- parent: 1
- type: Transform
- - uid: 835
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,0.5
- parent: 1
- type: Transform
- - uid: 836
- components:
- - pos: -22.5,5.5
- parent: 1
- type: Transform
- - uid: 837
- components:
- - pos: -19.5,5.5
- parent: 1
- type: Transform
- - uid: 838
- components:
- - rot: 3.141592653589793 rad
- pos: -19.5,-0.5
- parent: 1
- type: Transform
- - uid: 839
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,-0.5
- parent: 1
- type: Transform
- - uid: 840
- components:
- - pos: -4.5,8.5
- parent: 1
- type: Transform
- - uid: 841
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-0.5
- parent: 1
- type: Transform
- - uid: 842
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,-0.5
- parent: 1
- type: Transform
- - uid: 843
- components:
- - pos: -6.5,5.5
- parent: 1
- type: Transform
- - uid: 844
- components:
- - pos: -3.5,5.5
- parent: 1
- type: Transform
- - uid: 845
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,12.5
- parent: 1
- type: Transform
- - uid: 846
- components:
- - pos: -9.5,-2.5
- parent: 1
- type: Transform
- - uid: 847
- components:
- - pos: -5.5,-2.5
- parent: 1
- type: Transform
- - uid: 848
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-4.5
- parent: 1
- type: Transform
- - uid: 849
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,-4.5
- parent: 1
- type: Transform
- - uid: 850
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,-3.5
- parent: 1
- type: Transform
- - uid: 851
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,20.5
- parent: 1
- type: Transform
- - uid: 852
- components:
- - pos: 5.5,12.5
- parent: 1
- type: Transform
- - uid: 853
- components:
- - pos: 0.5,12.5
- parent: 1
- type: Transform
- - uid: 854
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,17.5
- parent: 1
- type: Transform
- - uid: 855
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,22.5
- parent: 1
- type: Transform
- - uid: 856
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,7.5
- parent: 1
- type: Transform
- - uid: 857
- components:
- - pos: -0.5,5.5
- parent: 1
- type: Transform
- - uid: 858
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,15.5
- parent: 1
- type: Transform
- - uid: 859
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 1
- type: Transform
- - uid: 860
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,17.5
- parent: 1
- type: Transform
- - uid: 861
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - uid: 862
- components:
- - pos: -5.5,12.5
- parent: 1
- type: Transform
- - uid: 863
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - uid: 864
- components:
- - pos: 10.5,17.5
- parent: 1
- type: Transform
- - uid: 865
- components:
- - pos: 13.5,17.5
- parent: 1
- type: Transform
- - uid: 866
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,14.5
- parent: 1
- type: Transform
- - uid: 867
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,14.5
- parent: 1
- type: Transform
- - uid: 868
- components:
- - pos: 16.5,17.5
- parent: 1
- type: Transform
- - uid: 869
- components:
- - pos: 10.5,12.5
- parent: 1
- type: Transform
- - uid: 870
- components:
- - pos: 14.5,12.5
- parent: 1
- type: Transform
- - uid: 871
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,17.5
- parent: 1
- type: Transform
- - uid: 872
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,24.5
- parent: 1
- type: Transform
- - uid: 873
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,34.5
- parent: 1
- type: Transform
- - uid: 874
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,6.5
- parent: 1
- type: Transform
- - uid: 875
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,6.5
- parent: 1
- type: Transform
- - uid: 876
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,3.5
- parent: 1
- type: Transform
- - uid: 877
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,17.5
- parent: 1
- type: Transform
- - uid: 878
- components:
- - pos: 5.5,5.5
- parent: 1
- type: Transform
- - uid: 879
- components:
- - pos: -0.5,1.5
- parent: 1
- type: Transform
- - uid: 880
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,15.5
- parent: 1
- type: Transform
- - uid: 881
- components:
- - pos: -12.5,13.5
- parent: 1
- type: Transform
- - uid: 882
- components:
- - pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 883
- components:
- - pos: 2.5,1.5
- parent: 1
- type: Transform
- - uid: 884
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
- parent: 1
- type: Transform
- - uid: 885
- components:
- - pos: -13.5,9.5
- parent: 1
- type: Transform
- - uid: 886
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,7.5
- parent: 1
- type: Transform
- - uid: 887
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,10.5
- parent: 1
- type: Transform
- - uid: 888
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-4.5
- parent: 1
- type: Transform
- - uid: 889
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,9.5
- parent: 1
- type: Transform
- - uid: 890
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,7.5
- parent: 1
- type: Transform
- - uid: 891
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,15.5
- parent: 1
- type: Transform
-- proto: FaxMachineCentcom
- entities:
- - uid: 892
- components:
- - pos: 10.5,17.5
- parent: 1
- type: Transform
-- proto: FireAlarm
- entities:
- - uid: 893
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,6.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 913
- - 914
- - 912
- - 901
- - 911
- - 902
- type: DeviceNetwork
- - devices:
- - 913
- - 914
- - 912
- - 901
- - 911
- - 902
- type: DeviceList
- - uid: 894
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 913
- - 915
- - 916
- - 917
- - 918
- type: DeviceNetwork
- - devices:
- - 913
- - 915
- - 916
- - 917
- - 918
- type: DeviceList
- - uid: 895
- components:
- - pos: -21.5,6.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 917
- - 903
- type: DeviceNetwork
- - devices:
- - 917
- - 903
- type: DeviceList
- - uid: 896
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 937
- - 935
- type: DeviceNetwork
- - devices:
- - 905
- - 906
- - 925
- - 921
- - 920
- - 919
- - 922
- - 923
- - 924
- - 935
- - 937
- type: DeviceList
- - uid: 897
- components:
- - pos: -2.5,-1.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 905
- - 906
- - 925
- type: DeviceNetwork
- - devices:
- - 905
- - 906
- - 925
- type: DeviceList
- - uid: 898
- components:
- - pos: 3.5,16.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 926
- - 927
- - 928
- - 929
- - 907
- type: DeviceNetwork
- - devices:
- - 926
- - 927
- - 928
- - 929
- - 907
- type: DeviceList
- - uid: 899
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,10.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceNetwork
- - devices:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceList
- - uid: 900
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,7.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceNetwork
- - devices:
- - 930
- - 933
- - 934
- - 931
- - 932
- - 908
- type: DeviceList
-- proto: FirelockEdge
- entities:
- - uid: 901
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 893
- - 15
- type: DeviceNetwork
- - uid: 902
- components:
- - pos: -4.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 893
- - 15
- type: DeviceNetwork
- - uid: 903
- components:
- - pos: -21.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 895
- - 16
- type: DeviceNetwork
- - uid: 904
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,0.5
- parent: 1
- type: Transform
- - uid: 905
- components:
- - pos: 1.5,-1.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 897
- type: DeviceNetwork
- - uid: 906
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 897
- type: DeviceNetwork
- - uid: 907
- components:
- - pos: -4.5,15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 898
- type: DeviceNetwork
- - uid: 908
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,12.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 909
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,7.5
- parent: 1
- type: Transform
- - uid: 910
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,11.5
- parent: 1
- type: Transform
-- proto: FirelockGlass
- entities:
- - uid: 911
- components:
- - pos: -6.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 893
- - 15
- type: DeviceNetwork
- - uid: 912
- components:
- - pos: -2.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 893
- - 15
- type: DeviceNetwork
- - uid: 913
- components:
- - pos: -9.5,4.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 894
- - 893
- - 15
- type: DeviceNetwork
- - uid: 914
- components:
- - pos: -4.5,6.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 893
- - 15
- type: DeviceNetwork
- - uid: 915
- components:
- - pos: -13.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 894
- type: DeviceNetwork
- - uid: 916
- components:
- - pos: -16.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 894
- type: DeviceNetwork
- - uid: 917
- components:
- - pos: -18.5,4.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 16
- - 894
- - 895
- type: DeviceNetwork
- - uid: 918
- components:
- - rot: -1.5707963267948966 rad
- pos: -13.5,-1.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 894
- type: DeviceNetwork
- - uid: 919
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,9.5
- parent: 1
- type: Transform
- - uid: 920
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,9.5
- parent: 1
- type: Transform
- - uid: 921
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,9.5
- parent: 1
- type: Transform
- - uid: 922
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,13.5
- parent: 1
- type: Transform
- - uid: 923
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,13.5
- parent: 1
- type: Transform
- - uid: 924
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,13.5
- parent: 1
- type: Transform
- - uid: 925
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,2.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 897
- type: DeviceNetwork
- - uid: 926
- components:
- - pos: 5.5,14.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 898
- type: DeviceNetwork
- - uid: 927
- components:
- - pos: 2.5,16.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 898
- type: DeviceNetwork
- - uid: 928
- components:
- - pos: -0.5,16.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 898
- type: DeviceNetwork
- - uid: 929
- components:
- - pos: -2.5,14.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 898
- type: DeviceNetwork
- - uid: 930
- components:
- - pos: -6.5,11.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 931
- components:
- - pos: -10.5,10.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 932
- components:
- - pos: -14.5,9.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 933
- components:
- - pos: -9.5,14.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 934
- components:
- - pos: -10.5,14.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 899
- - 18
- - 900
- - 20
- type: DeviceNetwork
- - uid: 935
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,7.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 896
- - 19
- type: DeviceNetwork
- - uid: 936
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,9.5
- parent: 1
- type: Transform
- - uid: 937
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,3.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 896
- - 19
- type: DeviceNetwork
-- proto: FlashlightSeclite
- entities:
- - uid: 11
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 628
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 657
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 667
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 672
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 682
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 690
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 700
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 715
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2456
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2465
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2474
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2486
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: FloorDrain
- entities:
- - uid: 938
- components:
- - pos: 4.5,24.5
- parent: 1
- type: Transform
- - fixtures: {}
- type: Fixtures
- - uid: 939
- components:
- - pos: 2.5,24.5
- parent: 1
- type: Transform
- - fixtures: {}
- type: Fixtures
- - uid: 940
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,3.5
- parent: 1
- type: Transform
- - fixtures: {}
- type: Fixtures
- - uid: 2427
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,0.5
- parent: 1
- type: Transform
- - fixtures: {}
- type: Fixtures
-- proto: GasMinerNitrogenStation
- entities:
- - uid: 941
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,13.5
- parent: 1
- type: Transform
-- proto: GasMinerOxygenStation
- entities:
- - uid: 942
- components:
- - rot: 3.141592653589793 rad
- pos: -15.5,13.5
- parent: 1
- type: Transform
-- proto: GasMixerFlipped
- entities:
- - uid: 943
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,9.5
- parent: 1
- type: Transform
- - inletTwoConcentration: 0.22000003
- inletOneConcentration: 0.78
- type: GasMixer
- - color: '#0000FFFF'
- type: AtmosPipeColor
-- proto: GasPassiveVent
- entities:
- - uid: 944
- components:
- - pos: -17.5,12.5
- parent: 1
- type: Transform
- - uid: 945
- components:
- - pos: -15.5,12.5
- parent: 1
- type: Transform
- - uid: 946
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,8.5
- parent: 1
- type: Transform
-- proto: GasPipeBend
- entities:
- - uid: 947
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 948
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 949
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 950
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 951
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,17.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 952
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,24.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 953
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,19.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 954
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 955
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 956
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,34.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 957
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 958
- components:
- - pos: 17.5,17.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 959
- components:
- - rot: 1.5707963267948966 rad
- pos: -22.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 960
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 961
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 962
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 963
- components:
- - pos: -13.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 964
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 965
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 966
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 967
- components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 968
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,11.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 969
- components:
- - rot: 1.5707963267948966 rad
- pos: -21.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 970
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 971
- components:
- - pos: 8.5,33.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 972
- components:
- - pos: -7.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 973
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 974
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 975
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 976
- components:
- - pos: 12.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 977
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 978
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 979
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 980
- components:
- - pos: -6.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
-- proto: GasPipeFourway
- entities:
- - uid: 981
- components:
- - pos: 8.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 982
- components:
- - pos: 2.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 983
- components:
- - pos: 8.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 984
- components:
- - pos: 3.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 985
- components:
- - pos: -0.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
-- proto: GasPipeStraight
- entities:
- - uid: 986
- components:
- - pos: -13.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 987
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 988
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,28.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 989
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 990
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 991
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,10.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 992
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,11.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 993
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 994
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 995
- components:
- - rot: 1.5707963267948966 rad
- pos: -6.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 996
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 997
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 998
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 999
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1000
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1001
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1002
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1003
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1004
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1005
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1006
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,16.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1007
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,17.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1008
- components:
- - pos: 6.5,24.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1009
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,19.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1010
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,20.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1011
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,21.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1012
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,22.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1013
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,23.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1014
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,25.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1015
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,27.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1016
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,29.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1017
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,30.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1018
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,31.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1019
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,32.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1020
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1021
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,33.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1022
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1023
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1024
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1025
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1026
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1027
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1028
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1029
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1030
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,16.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1031
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,11.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1032
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,10.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1033
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1034
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,7.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1035
- components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1036
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1037
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1038
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1039
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1040
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1041
- components:
- - pos: 2.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1042
- components:
- - pos: 2.5,16.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1043
- components:
- - pos: 2.5,17.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1044
- components:
- - pos: 2.5,18.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1045
- components:
- - pos: 2.5,19.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1046
- components:
- - pos: 2.5,20.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1047
- components:
- - pos: 2.5,21.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1048
- components:
- - pos: 2.5,22.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1049
- components:
- - pos: 2.5,23.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1050
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1051
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,16.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1052
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1053
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,18.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1054
- components:
- - pos: 0.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1055
- components:
- - pos: 0.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1056
- components:
- - pos: 0.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1057
- components:
- - pos: 0.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1058
- components:
- - pos: 0.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1059
- components:
- - pos: 0.5,-1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1060
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1061
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1062
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1063
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1064
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1065
- components:
- - pos: -17.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1066
- components:
- - pos: -17.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1067
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1068
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1069
- components:
- - pos: -17.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1070
- components:
- - pos: -17.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1071
- components:
- - pos: -17.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1072
- components:
- - rot: 1.5707963267948966 rad
- pos: 12.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1073
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1074
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1075
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1076
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1077
- components:
- - rot: 1.5707963267948966 rad
- pos: 13.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1078
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1079
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1080
- components:
- - rot: -1.5707963267948966 rad
- pos: 16.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1081
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,16.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1082
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1083
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1084
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1085
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1086
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1087
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1088
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1089
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1090
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1091
- components:
- - rot: 1.5707963267948966 rad
- pos: -20.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1092
- components:
- - pos: -22.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1093
- components:
- - pos: -22.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1094
- components:
- - pos: -22.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1095
- components:
- - pos: -22.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1096
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1097
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1098
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1099
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1100
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1101
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1102
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1103
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1104
- components:
- - pos: -2.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1105
- components:
- - pos: -2.5,3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1106
- components:
- - pos: -2.5,2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1107
- components:
- - pos: -2.5,1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1108
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,8.5
- parent: 1
- type: Transform
- - uid: 1109
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1110
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1111
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1112
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1113
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1114
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1115
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,9.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1116
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1117
- components:
- - rot: -1.5707963267948966 rad
- pos: -5.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1118
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1119
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1120
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1121
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1122
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1123
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1124
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1125
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1126
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1127
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1128
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1129
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,9.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1130
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1131
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1132
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1133
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1134
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1135
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1136
- components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1137
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1138
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,10.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1139
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,11.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1140
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1141
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,9.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1142
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,11.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1143
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1144
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,6.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1145
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,5.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1146
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1147
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1148
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1149
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1150
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1151
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1152
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1153
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1154
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1155
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1156
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1157
- components:
- - pos: -3.5,2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1158
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1159
- components:
- - pos: -7.5,2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1160
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1161
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1162
- components:
- - pos: -12.5,2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1163
- components:
- - pos: -12.5,1.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1164
- components:
- - rot: -1.5707963267948966 rad
- pos: -13.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1165
- components:
- - pos: -16.5,1.5
- parent: 1
- type: Transform
- - uid: 1166
- components:
- - pos: -16.5,0.5
- parent: 1
- type: Transform
- - uid: 1167
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1168
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1169
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1170
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1171
- components:
- - pos: -21.5,2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1172
- components:
- - pos: -21.5,1.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1173
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,6.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1174
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1175
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,5.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1176
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,6.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1177
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1178
- components:
- - pos: 8.5,11.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1179
- components:
- - pos: 8.5,12.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1180
- components:
- - pos: 8.5,13.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1181
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1182
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1183
- components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1184
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1185
- components:
- - rot: -1.5707963267948966 rad
- pos: 14.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1186
- components:
- - rot: -1.5707963267948966 rad
- pos: 15.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1187
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1188
- components:
- - pos: 8.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1189
- components:
- - pos: 8.5,17.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1190
- components:
- - pos: 8.5,18.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1191
- components:
- - pos: 8.5,32.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1192
- components:
- - pos: 8.5,31.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1193
- components:
- - pos: 8.5,30.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1194
- components:
- - pos: 8.5,29.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1195
- components:
- - pos: 8.5,28.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1196
- components:
- - pos: 8.5,26.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1197
- components:
- - pos: 8.5,25.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1198
- components:
- - pos: 8.5,24.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1199
- components:
- - pos: 8.5,23.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1200
- components:
- - pos: 8.5,22.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1201
- components:
- - pos: 8.5,21.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1202
- components:
- - pos: 8.5,20.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1203
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1204
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1205
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1206
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1207
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1208
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1209
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1210
- components:
- - pos: -0.5,17.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1211
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1212
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1213
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1214
- components:
- - pos: 3.5,17.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1215
- components:
- - pos: 3.5,18.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1216
- components:
- - pos: 3.5,19.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1217
- components:
- - pos: 3.5,20.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1218
- components:
- - pos: 3.5,21.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1219
- components:
- - pos: 3.5,22.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1220
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,13.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1221
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1222
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1223
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,11.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1224
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,12.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1225
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,13.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1226
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1227
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,15.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1228
- components:
- - pos: 2.5,2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1229
- components:
- - pos: 2.5,1.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1230
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1231
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1232
- components:
- - pos: 2.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1233
- components:
- - pos: 2.5,-3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1234
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1235
- components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1236
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1237
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-4.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1238
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1239
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1240
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1241
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1242
- components:
- - rot: 1.5707963267948966 rad
- pos: 10.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1243
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1244
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1245
- components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1246
- components:
- - pos: 12.5,4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1247
- components:
- - pos: -13.5,-1.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1248
- components:
- - pos: -13.5,-2.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1249
- components:
- - pos: -13.5,-3.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1250
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1251
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1252
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1253
- components:
- - rot: 1.5707963267948966 rad
- pos: -10.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1254
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1255
- components:
- - pos: -12.5,-0.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1256
- components:
- - pos: -12.5,-1.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1257
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1258
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1259
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1260
- components:
- - pos: -15.5,11.5
- parent: 1
- type: Transform
- - uid: 1261
- components:
- - pos: -17.5,11.5
- parent: 1
- type: Transform
-- proto: GasPipeTJunction
- entities:
- - uid: 1262
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,0.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1263
- components:
- - pos: -12.5,9.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1264
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1265
- components:
- - pos: -9.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1266
- components:
- - pos: 4.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1267
- components:
- - pos: -4.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1268
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,12.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1269
- components:
- - pos: 1.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1270
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1271
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1272
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,18.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1273
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,26.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1274
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1275
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1276
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1277
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,14.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1278
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1279
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,6.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1280
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1281
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,13.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1282
- components:
- - pos: 0.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1283
- components:
- - pos: -2.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1284
- components:
- - pos: -6.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1285
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,0.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1286
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1287
- components:
- - rot: -1.5707963267948966 rad
- pos: 17.5,15.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1288
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1289
- components:
- - pos: -3.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1290
- components:
- - pos: -7.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1291
- components:
- - pos: -15.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1292
- components:
- - pos: -17.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1293
- components:
- - pos: -21.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1294
- components:
- - pos: -13.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1295
- components:
- - pos: -10.5,5.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1296
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1297
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1298
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1299
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1300
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1301
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,10.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1302
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,7.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1303
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,8.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1304
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1305
- components:
- - pos: -3.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1306
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1307
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1308
- components:
- - pos: -7.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1309
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1310
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1311
- components:
- - pos: -12.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1312
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1313
- components:
- - pos: -16.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1314
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,3.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1315
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1316
- components:
- - rot: -1.5707963267948966 rad
- pos: 16.5,14.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1317
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,27.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1318
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,16.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1319
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,19.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1320
- components:
- - rot: 3.141592653589793 rad
- pos: -18.5,13.5
- parent: 1
- type: Transform
- - uid: 1321
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-0.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1322
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,-4.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1323
- components:
- - pos: -10.5,-2.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
-- proto: GasPort
- entities:
- - uid: 1324
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-2.5
- parent: 1
- type: Transform
-- proto: GasPressurePump
- entities:
- - uid: 1325
- components:
- - pos: -15.5,10.5
- parent: 1
- type: Transform
- - uid: 1326
- components:
- - pos: -17.5,10.5
- parent: 1
- type: Transform
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1327
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,8.5
- parent: 1
- type: Transform
- - color: '#FF0000FF'
- type: AtmosPipeColor
-- proto: GasVentPump
- entities:
- - uid: 1328
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1329
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1330
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1331
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1332
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1333
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,17.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1334
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,19.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1335
- components:
- - pos: 0.5,15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1336
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1337
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1338
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1339
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,34.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1340
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,18.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1341
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,26.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1342
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1343
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,6.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1344
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1345
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1346
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1347
- components:
- - rot: 1.5707963267948966 rad
- pos: 16.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1348
- components:
- - pos: 11.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1349
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1350
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1351
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1352
- components:
- - rot: -1.5707963267948966 rad
- pos: -21.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1353
- components:
- - rot: 3.141592653589793 rad
- pos: -15.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1354
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1355
- components:
- - pos: -10.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1356
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1357
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1358
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1359
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1360
- components:
- - pos: -4.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1361
- components:
- - pos: -10.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1362
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1363
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1364
- components:
- - pos: -11.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
- - uid: 1365
- components:
- - pos: -7.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#0000FFFF'
- type: AtmosPipeColor
-- proto: GasVentScrubber
- entities:
- - uid: 1366
- components:
- - pos: -11.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1367
- components:
- - pos: -8.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1368
- components:
- - pos: -3.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1369
- components:
- - pos: 3.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1370
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1371
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1372
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1373
- components:
- - pos: 2.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1374
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1375
- components:
- - pos: -4.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1376
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1377
- components:
- - pos: -8.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1378
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1379
- components:
- - pos: -11.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1380
- components:
- - pos: -14.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1381
- components:
- - rot: 3.141592653589793 rad
- pos: -16.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1382
- components:
- - pos: -20.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1383
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1384
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1385
- components:
- - pos: 12.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1386
- components:
- - pos: 16.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1387
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,14.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1388
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,19.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1389
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,27.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1390
- components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,33.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1391
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1392
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,15.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1393
- components:
- - pos: -0.5,18.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1394
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,16.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1395
- components:
- - pos: 3.5,23.5
- parent: 1
- type: Transform
- - ShutdownSubscribers:
- - 17
- type: DeviceNetwork
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1396
- components:
- - pos: -9.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1397
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1398
- components:
- - pos: -2.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1399
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1400
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1401
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
- - uid: 1402
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - color: '#FF0000FF'
- type: AtmosPipeColor
-- proto: PortableGeneratorSuperPacman
- entities:
- - uid: 1403
- components:
- - pos: -11.5,13.5
- parent: 1
- type: Transform
- - uid: 1404
- components:
- - pos: -12.5,13.5
- parent: 1
- type: Transform
- - uid: 1405
- components:
- - pos: -13.5,13.5
- parent: 1
- type: Transform
-- proto: GravityGeneratorMini
- entities:
- - uid: 1406
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
-- proto: Grille
- entities:
- - uid: 1407
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,6.5
- parent: 1
- type: Transform
- - uid: 1410
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,32.5
- parent: 1
- type: Transform
- - uid: 1411
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,33.5
- parent: 1
- type: Transform
- - uid: 1412
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,28.5
- parent: 1
- type: Transform
- - uid: 1413
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,31.5
- parent: 1
- type: Transform
- - uid: 1414
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,25.5
- parent: 1
- type: Transform
- - uid: 1415
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,27.5
- parent: 1
- type: Transform
- - uid: 1416
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,26.5
- parent: 1
- type: Transform
- - uid: 1417
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,28.5
- parent: 1
- type: Transform
- - uid: 1419
- components:
- - pos: -1.5,23.5
- parent: 1
- type: Transform
- - uid: 1420
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,27.5
- parent: 1
- type: Transform
- - uid: 1421
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,22.5
- parent: 1
- type: Transform
- - uid: 1422
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,35.5
- parent: 1
- type: Transform
- - uid: 1423
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 1424
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
- parent: 1
- type: Transform
- - uid: 1425
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,18.5
- parent: 1
- type: Transform
- - uid: 1426
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,2.5
- parent: 1
- type: Transform
- - uid: 1427
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,2.5
- parent: 1
- type: Transform
- - uid: 1428
- components:
- - rot: 1.5707963267948966 rad
- pos: -21.5,-1.5
- parent: 1
- type: Transform
- - uid: 1429
- components:
- - rot: 1.5707963267948966 rad
- pos: -23.5,4.5
- parent: 1
- type: Transform
- - uid: 1430
- components:
- - rot: 1.5707963267948966 rad
- pos: -16.5,-1.5
- parent: 1
- type: Transform
- - uid: 1431
- components:
- - rot: 1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 1
- type: Transform
- - uid: 1432
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,18.5
- parent: 1
- type: Transform
- - uid: 1433
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,18.5
- parent: 1
- type: Transform
- - uid: 1434
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,18.5
- parent: 1
- type: Transform
- - uid: 1435
- components:
- - pos: 18.5,13.5
- parent: 1
- type: Transform
- - uid: 1436
- components:
- - pos: -12.5,16.5
- parent: 1
- type: Transform
- - uid: 1437
- components:
- - pos: -10.5,18.5
- parent: 1
- type: Transform
- - uid: 1438
- components:
- - pos: -9.5,18.5
- parent: 1
- type: Transform
- - uid: 1439
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 1
- type: Transform
- - uid: 1440
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-5.5
- parent: 1
- type: Transform
- - uid: 1441
- components:
- - pos: 18.5,12.5
- parent: 1
- type: Transform
- - uid: 1442
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-5.5
- parent: 1
- type: Transform
- - uid: 1443
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-5.5
- parent: 1
- type: Transform
- - uid: 1444
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,34.5
- parent: 1
- type: Transform
- - uid: 1445
- components:
- - rot: 1.5707963267948966 rad
- pos: -6.5,-5.5
- parent: 1
- type: Transform
- - uid: 1446
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,-5.5
- parent: 1
- type: Transform
- - uid: 1447
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,34.5
- parent: 1
- type: Transform
- - uid: 1448
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,34.5
- parent: 1
- type: Transform
- - uid: 1449
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,32.5
- parent: 1
- type: Transform
- - uid: 1450
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,32.5
- parent: 1
- type: Transform
- - uid: 1451
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,31.5
- parent: 1
- type: Transform
- - uid: 1452
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,30.5
- parent: 1
- type: Transform
- - uid: 1453
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,30.5
- parent: 1
- type: Transform
- - uid: 1454
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,29.5
- parent: 1
- type: Transform
- - uid: 1455
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,28.5
- parent: 1
- type: Transform
- - uid: 1457
- components:
- - pos: -3.5,21.5
- parent: 1
- type: Transform
- - uid: 1458
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,23.5
- parent: 1
- type: Transform
- - uid: 1459
- components:
- - pos: -5.5,21.5
- parent: 1
- type: Transform
- - uid: 1460
- components:
- - pos: -4.5,21.5
- parent: 1
- type: Transform
- - uid: 1464
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,23.5
- parent: 1
- type: Transform
- - uid: 1465
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,23.5
- parent: 1
- type: Transform
- - uid: 1466
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,23.5
- parent: 1
- type: Transform
- - uid: 1467
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,23.5
- parent: 1
- type: Transform
- - uid: 1468
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,23.5
- parent: 1
- type: Transform
- - uid: 1469
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,23.5
- parent: 1
- type: Transform
- - uid: 1470
- components:
- - pos: -6.5,26.5
- parent: 1
- type: Transform
- - uid: 1471
- components:
- - rot: 3.141592653589793 rad
- pos: -23.5,15.5
- parent: 1
- type: Transform
- - uid: 1472
- components:
- - rot: 3.141592653589793 rad
- pos: -16.5,22.5
- parent: 1
- type: Transform
- - uid: 1473
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,20.5
- parent: 1
- type: Transform
- - uid: 1474
- components:
- - rot: 3.141592653589793 rad
- pos: -18.5,20.5
- parent: 1
- type: Transform
- - uid: 1475
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,20.5
- parent: 1
- type: Transform
- - uid: 1476
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,19.5
- parent: 1
- type: Transform
- - uid: 1477
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,18.5
- parent: 1
- type: Transform
- - uid: 1478
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,17.5
- parent: 1
- type: Transform
- - uid: 1479
- components:
- - rot: 3.141592653589793 rad
- pos: -24.5,14.5
- parent: 1
- type: Transform
- - uid: 1480
- components:
- - rot: 3.141592653589793 rad
- pos: -24.5,13.5
- parent: 1
- type: Transform
- - uid: 1481
- components:
- - rot: 3.141592653589793 rad
- pos: -23.5,16.5
- parent: 1
- type: Transform
- - uid: 1482
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,-5.5
- parent: 1
- type: Transform
- - uid: 1483
- components:
- - rot: 3.141592653589793 rad
- pos: -25.5,10.5
- parent: 1
- type: Transform
- - uid: 1484
- components:
- - rot: 3.141592653589793 rad
- pos: -26.5,9.5
- parent: 1
- type: Transform
- - uid: 1485
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,8.5
- parent: 1
- type: Transform
- - uid: 1486
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,6.5
- parent: 1
- type: Transform
- - uid: 1487
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,4.5
- parent: 1
- type: Transform
- - uid: 1488
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,3.5
- parent: 1
- type: Transform
- - uid: 1489
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,5.5
- parent: 1
- type: Transform
- - uid: 1490
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,0.5
- parent: 1
- type: Transform
- - uid: 1491
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,-0.5
- parent: 1
- type: Transform
- - uid: 1492
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,-0.5
- parent: 1
- type: Transform
- - uid: 1493
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,-1.5
- parent: 1
- type: Transform
- - uid: 1494
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,-3.5
- parent: 1
- type: Transform
- - uid: 1495
- components:
- - rot: 3.141592653589793 rad
- pos: -26.5,-3.5
- parent: 1
- type: Transform
- - uid: 1496
- components:
- - rot: 3.141592653589793 rad
- pos: -24.5,-4.5
- parent: 1
- type: Transform
- - uid: 1497
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,-5.5
- parent: 1
- type: Transform
- - uid: 1498
- components:
- - rot: 3.141592653589793 rad
- pos: -21.5,-5.5
- parent: 1
- type: Transform
- - uid: 1499
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,-5.5
- parent: 1
- type: Transform
- - uid: 1500
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,-7.5
- parent: 1
- type: Transform
- - uid: 1501
- components:
- - rot: 3.141592653589793 rad
- pos: -15.5,-9.5
- parent: 1
- type: Transform
- - uid: 1502
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,-9.5
- parent: 1
- type: Transform
- - uid: 1503
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,-9.5
- parent: 1
- type: Transform
- - uid: 1504
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,-9.5
- parent: 1
- type: Transform
- - uid: 1505
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,-9.5
- parent: 1
- type: Transform
- - uid: 1506
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,-9.5
- parent: 1
- type: Transform
- - uid: 1507
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,-6.5
- parent: 1
- type: Transform
- - uid: 1508
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,-5.5
- parent: 1
- type: Transform
- - uid: 1509
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-9.5
- parent: 1
- type: Transform
- - uid: 1510
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-9.5
- parent: 1
- type: Transform
- - uid: 1511
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-9.5
- parent: 1
- type: Transform
- - uid: 1512
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-9.5
- parent: 1
- type: Transform
- - uid: 1513
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-9.5
- parent: 1
- type: Transform
- - uid: 1514
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-9.5
- parent: 1
- type: Transform
- - uid: 1515
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-9.5
- parent: 1
- type: Transform
- - uid: 1516
- components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-9.5
- parent: 1
- type: Transform
- - uid: 1517
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-8.5
- parent: 1
- type: Transform
- - uid: 1518
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-7.5
- parent: 1
- type: Transform
- - uid: 1519
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-7.5
- parent: 1
- type: Transform
- - uid: 1520
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-6.5
- parent: 1
- type: Transform
- - uid: 1521
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-5.5
- parent: 1
- type: Transform
- - uid: 1522
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-3.5
- parent: 1
- type: Transform
- - uid: 1523
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-3.5
- parent: 1
- type: Transform
- - uid: 1524
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-3.5
- parent: 1
- type: Transform
- - uid: 1525
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-3.5
- parent: 1
- type: Transform
- - uid: 1526
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-3.5
- parent: 1
- type: Transform
- - uid: 1527
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-3.5
- parent: 1
- type: Transform
- - uid: 1528
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-3.5
- parent: 1
- type: Transform
- - uid: 1529
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,6.5
- parent: 1
- type: Transform
- - uid: 1530
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-1.5
- parent: 1
- type: Transform
- - uid: 1531
- components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-2.5
- parent: 1
- type: Transform
- - uid: 1532
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-0.5
- parent: 1
- type: Transform
- - uid: 1533
- components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-0.5
- parent: 1
- type: Transform
- - uid: 1534
- components:
- - rot: 3.141592653589793 rad
- pos: 18.5,1.5
- parent: 1
- type: Transform
- - uid: 1535
- components:
- - rot: 3.141592653589793 rad
- pos: 18.5,2.5
- parent: 1
- type: Transform
- - uid: 1536
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,3.5
- parent: 1
- type: Transform
- - uid: 1537
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,7.5
- parent: 1
- type: Transform
- - uid: 1538
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,4.5
- parent: 1
- type: Transform
- - uid: 1539
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,14.5
- parent: 1
- type: Transform
- - uid: 1540
- components:
- - rot: 3.141592653589793 rad
- pos: 21.5,8.5
- parent: 1
- type: Transform
- - uid: 1541
- components:
- - rot: 3.141592653589793 rad
- pos: 22.5,9.5
- parent: 1
- type: Transform
- - uid: 1542
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,9.5
- parent: 1
- type: Transform
- - uid: 1543
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,11.5
- parent: 1
- type: Transform
- - uid: 1544
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,12.5
- parent: 1
- type: Transform
- - uid: 1545
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,13.5
- parent: 1
- type: Transform
- - uid: 1546
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,15.5
- parent: 1
- type: Transform
- - uid: 1547
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,18.5
- parent: 1
- type: Transform
- - uid: 1548
- components:
- - rot: 3.141592653589793 rad
- pos: 21.5,18.5
- parent: 1
- type: Transform
- - uid: 1549
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,18.5
- parent: 1
- type: Transform
- - uid: 1550
- components:
- - rot: 3.141592653589793 rad
- pos: 23.5,17.5
- parent: 1
- type: Transform
- - uid: 1731
- components:
- - pos: -6.5,24.5
- parent: 1
- type: Transform
- - uid: 2321
- components:
- - pos: -1.5,28.5
- parent: 1
- type: Transform
- - uid: 2390
- components:
- - pos: -0.5,23.5
- parent: 1
- type: Transform
- - uid: 2391
- components:
- - pos: 0.5,23.5
- parent: 1
- type: Transform
- - uid: 2509
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,11.5
- parent: 1
- type: Transform
- - uid: 2510
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,11.5
- parent: 1
- type: Transform
-- proto: GrilleBroken
- entities:
- - uid: 1456
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,23.5
- parent: 1
- type: Transform
- - uid: 1551
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-9.5
- parent: 1
- type: Transform
- - uid: 1552
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 1
- type: Transform
- - uid: 1553
- components:
- - pos: 3.5,-9.5
- parent: 1
- type: Transform
- - uid: 1554
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-9.5
- parent: 1
- type: Transform
- - uid: 1555
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-9.5
- parent: 1
- type: Transform
- - uid: 1556
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 1
- type: Transform
- - uid: 1557
- components:
- - rot: 1.5707963267948966 rad
- pos: -16.5,-9.5
- parent: 1
- type: Transform
- - uid: 1558
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,23.5
- parent: 1
- type: Transform
- - uid: 1559
- components:
- - pos: -27.5,-2.5
- parent: 1
- type: Transform
- - uid: 1560
- components:
- - rot: 1.5707963267948966 rad
- pos: -27.5,1.5
- parent: 1
- type: Transform
- - uid: 1561
- components:
- - rot: 3.141592653589793 rad
- pos: -27.5,2.5
- parent: 1
- type: Transform
- - uid: 1562
- components:
- - rot: 3.141592653589793 rad
- pos: -26.5,8.5
- parent: 1
- type: Transform
- - uid: 1563
- components:
- - pos: -25.5,11.5
- parent: 1
- type: Transform
- - uid: 1564
- components:
- - pos: -22.5,17.5
- parent: 1
- type: Transform
- - uid: 1565
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,23.5
- parent: 1
- type: Transform
- - uid: 1566
- components:
- - pos: 1.5,33.5
- parent: 1
- type: Transform
- - uid: 1568
- components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,34.5
- parent: 1
- type: Transform
- - uid: 1569
- components:
- - pos: 4.5,34.5
- parent: 1
- type: Transform
- - uid: 1570
- components:
- - rot: 3.141592653589793 rad
- pos: 20.5,5.5
- parent: 1
- type: Transform
- - uid: 1571
- components:
- - rot: -1.5707963267948966 rad
- pos: 22.5,18.5
- parent: 1
- type: Transform
- - uid: 1572
- components:
- - rot: 3.141592653589793 rad
- pos: 22.5,8.5
- parent: 1
- type: Transform
- - uid: 1573
- components:
- - pos: 20.5,5.5
- parent: 1
- type: Transform
- - uid: 1574
- components:
- - rot: -1.5707963267948966 rad
- pos: 17.5,-1.5
- parent: 1
- type: Transform
- - uid: 1575
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,-3.5
- parent: 1
- type: Transform
- - uid: 2387
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,25.5
- parent: 1
- type: Transform
-- proto: HampterKrah
- entities:
- - uid: 1576
- components:
- - pos: 2.4216707,-3.5797577
- parent: 1
- type: Transform
-- proto: HampterMed
- entities:
- - uid: 1577
- components:
- - pos: -3.5873346,5.6309385
- parent: 1
- type: Transform
-- proto: HandheldGPSBasic
- entities:
- - uid: 142
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 143
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 1598
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 1599
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 1600
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 1601
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 2440
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
- - uid: 2516
- components:
- - pos: 11.235489,10.511342
- parent: 1
- type: Transform
-- proto: HighSecArmoryLocked
- entities:
- - uid: 1584
- components:
- - pos: 9.5,7.5
- parent: 1
- type: Transform
-- proto: HighSecCommandLocked
- entities:
- - uid: 1585
- components:
- - pos: 14.5,15.5
- parent: 1
- type: Transform
- - uid: 1586
- components:
- - pos: 9.5,15.5
- parent: 1
- type: Transform
-- proto: HolofanProjector
- entities:
- - uid: 1587
- components:
- - pos: -13.541195,8.28056
- parent: 1
- type: Transform
- - uid: 1588
- components:
- - pos: -16.637148,7.8123646
- parent: 1
- type: Transform
- - uid: 1589
- components:
- - pos: -16.637148,7.6717396
- parent: 1
- type: Transform
-- proto: Holoprojector
- entities:
- - uid: 1590
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.913149,4.676386
- parent: 1
- type: Transform
-- proto: HospitalCurtains
- entities:
- - uid: 1591
- components:
- - pos: 4.5,24.5
- parent: 1
- type: Transform
-- proto: HospitalCurtainsOpen
- entities:
- - uid: 1592
- components:
- - pos: 2.5,24.5
- parent: 1
- type: Transform
-- proto: Hypospray
- entities:
- - uid: 211
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 212
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 213
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 214
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 215
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 658
- components:
- - flags: InContainer
- type: MetaData
- - parent: 649
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 668
- components:
- - flags: InContainer
- type: MetaData
- - parent: 659
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2457
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2450
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2466
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2460
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: IntercomEngineering
- entities:
- - uid: 1593
- components:
- - pos: -5.5,13.5
- parent: 1
- type: Transform
-- proto: IntercomMedical
- entities:
- - uid: 1594
- components:
- - pos: -0.5,6.5
- parent: 1
- type: Transform
-- proto: JanitorialTrolley
- entities:
- - uid: 1595
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,2.5
- parent: 1
- type: Transform
-- proto: JetpackBlackFilled
- entities:
- - uid: 2441
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2442
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2443
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2444
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2445
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2446
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2447
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
- - uid: 2448
- components:
- - pos: 11.641739,10.730092
- parent: 1
- type: Transform
-- proto: KitchenMicrowave
- entities:
- - uid: 1602
- components:
- - pos: -3.5,-3.5
- parent: 1
- type: Transform
-- proto: KitchenReagentGrinder
- entities:
- - uid: 1603
- components:
- - pos: -4.5,-0.5
- parent: 1
- type: Transform
- - uid: 1604
- components:
- - pos: -22.5,4.5
- parent: 1
- type: Transform
- - uid: 1605
- components:
- - pos: -3.5,-4.5
- parent: 1
- type: Transform
-- proto: Lamp
- entities:
- - uid: 1606
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.515244,-3.9131765
- parent: 1
- type: Transform
-- proto: Lighter
- entities:
- - uid: 1607
- components:
- - pos: 12.103443,14.525698
- parent: 1
- type: Transform
-- proto: LockerAtmosphericsFilled
- entities:
- - uid: 1608
- components:
- - pos: -17.5,7.5
- parent: 1
- type: Transform
-- proto: LockerCaptain
- entities:
- - uid: 705
- components:
- - pos: 17.5,13.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1497
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 720
- - 714
- - 711
- - 710
- - 707
- - 715
- - 708
- - 718
- - 706
- - 719
- - 709
- - 717
- - 712
- - 716
- - 713
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: LockerElectricalSuppliesFilled
- entities:
- - uid: 1609
- components:
- - pos: -7.5,9.5
- parent: 1
- type: Transform
-- proto: LockerEngineer
- entities:
- - uid: 626
- components:
- - pos: 0.5,18.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1497
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 634
- - 633
- - 635
- - 629
- - 636
- - 631
- - 627
- - 632
- - 630
- - 628
- - 637
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 638
- components:
- - pos: 0.5,17.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 645
- - 639
- - 644
- - 646
- - 647
- - 640
- - 648
- - 641
- - 643
- - 642
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 2470
- components:
- - pos: -1.5,21.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2474
- - 2473
- - 2472
- - 2471
- - 2475
- - 2476
- - 2477
- - 2478
- - 2479
- - 2480
- - 2481
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 2482
- components:
- - pos: -1.5,22.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2486
- - 2485
- - 2484
- - 2483
- - 2487
- - 2488
- - 2489
- - 2490
- - 2491
- - 2492
- - 2493
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: LockerMedical
- entities:
- - uid: 649
- components:
- - pos: 0.5,20.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 654
- - 658
- - 650
- - 656
- - 653
- - 657
- - 655
- - 652
- - 651
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 659
- components:
- - pos: 0.5,19.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 661
- - 667
- - 665
- - 664
- - 662
- - 663
- - 666
- - 660
- - 668
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 2450
- components:
- - pos: 0.5,21.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2459
- - 2458
- - 2457
- - 2456
- - 2455
- - 2454
- - 2451
- - 2452
- - 2453
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 2460
- components:
- - pos: 0.5,22.5
- parent: 1
- type: Transform
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2463
- - 2462
- - 2461
- - 2464
- - 2465
- - 2466
- - 2467
- - 2468
- - 2469
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: LockerMedicine
- entities:
- - uid: 1610
- components:
- - pos: -12.5,1.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1617
- - 1618
- - 1611
- - 1619
- - 1612
- - 1613
- - 1614
- - 1615
- - 1616
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 1620
- components:
- - pos: -11.5,1.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 1621
- - 1622
- - 1627
- - 1628
- - 1629
- - 1623
- - 1624
- - 1625
- - 1626
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: LockerSecurity
- entities:
- - uid: 669
- components:
- - pos: -1.5,18.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 670
- - 671
- - 672
- - 673
- - 674
- - 675
- - 676
- - 677
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 678
- components:
- - pos: -1.5,19.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 679
- - 680
- - 681
- - 682
- - 683
- - 684
- - 685
- - 686
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 687
- components:
- - pos: -1.5,20.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 688
- - 689
- - 690
- - 691
- - 692
- - 693
- - 694
- - 695
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
- - uid: 696
- components:
- - pos: -1.5,17.5
- parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.14957
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
- - containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 697
- - 698
- - 699
- - 700
- - 701
- - 702
- - 703
- - 704
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: ContainerContainer
-- proto: LockerWallMedicalFilled
- entities:
- - uid: 1630
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,0.5
- parent: 1
- type: Transform
- - uid: 1631
- components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,0.5
- parent: 1
- type: Transform
-- proto: MaterialBiomass
- entities:
- - uid: 1632
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.566401,1.2871039
- parent: 1
- type: Transform
- - uid: 1633
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.566401,1.2871039
- parent: 1
- type: Transform
- - uid: 1634
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.566401,1.2871039
- parent: 1
- type: Transform
- - uid: 1635
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.566401,1.2871039
- parent: 1
- type: Transform
-- proto: MaterialCloth1
- entities:
- - uid: 1636
- components:
- - desc: Для вытирания своего тела, да
- name: полотенце
- type: MetaData
- - pos: 3.4162674,24.561844
- parent: 1
- type: Transform
-- proto: MedicalBed
- entities:
- - uid: 1637
- components:
- - pos: -5.5,8.5
- parent: 1
- type: Transform
- - uid: 1638
- components:
- - pos: -5.5,7.5
- parent: 1
- type: Transform
- - uid: 1639
- components:
- - pos: -3.5,8.5
- parent: 1
- type: Transform
-- proto: MedicalScanner
- entities:
- - uid: 1640
- components:
- - pos: -8.5,-0.5
- parent: 1
- type: Transform
-- proto: MedkitBruteFilled
- entities:
- - uid: 1621
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1622
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1623
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: MedkitBurnFilled
- entities:
- - uid: 1611
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1612
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1613
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: MedkitCombatFilled
- entities:
- - uid: 1614
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1615
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1616
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: MedkitOxygenFilled
- entities:
- - uid: 1624
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1625
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1626
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: MedkitRadiationFilled
- entities:
- - uid: 1617
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1618
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1619
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1610
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: MedkitToxinFilled
- entities:
- - uid: 1627
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1628
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1629
- components:
- - flags: InContainer
- type: MetaData
- - parent: 1620
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: Mirror
- entities:
- - uid: 1641
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,21.5
- parent: 1
- type: Transform
- - uid: 1642
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,17.5
- parent: 1
- type: Transform
- - uid: 1643
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,19.5
- parent: 1
- type: Transform
-- proto: MopBucket
- entities:
- - uid: 1644
- components:
- - pos: 11.897524,3.7701359
- parent: 1
- type: Transform
-- proto: Morgue
- entities:
- - uid: 1645
- components:
- - pos: -9.5,-4.5
- parent: 1
- type: Transform
- - uid: 1646
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-2.5
- parent: 1
- type: Transform
- - uid: 1647
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-2.5
- parent: 1
- type: Transform
- - uid: 1648
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,-2.5
- parent: 1
- type: Transform
- - uid: 1649
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,-2.5
- parent: 1
- type: Transform
- - uid: 1650
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,-2.5
- parent: 1
- type: Transform
- - uid: 1651
- components:
- - pos: -5.5,-4.5
- parent: 1
- type: Transform
- - uid: 1652
- components:
- - pos: -7.5,-4.5
- parent: 1
- type: Transform
- - uid: 1653
- components:
- - pos: -6.5,-4.5
- parent: 1
- type: Transform
- - uid: 1654
- components:
- - pos: -8.5,-4.5
- parent: 1
- type: Transform
-- proto: Multitool
- entities:
- - uid: 1655
- components:
- - pos: -8.234255,1.2902579
- parent: 1
- type: Transform
-- proto: NitrogenTankFilled
- entities:
- - uid: 12
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 716
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: NitrousOxideTankFilled
- entities:
- - uid: 1657
- components:
- - pos: -15.231249,1.5843751
- parent: 1
- type: Transform
-- proto: OperatingTable
- entities:
- - uid: 1658
- components:
- - pos: -17.5,-0.5
- parent: 1
- type: Transform
- - uid: 1659
- components:
- - pos: -15.5,-0.5
- parent: 1
- type: Transform
-- proto: OxygenCanister
- entities:
- - uid: 1660
- components:
- - pos: 10.5,12.5
- parent: 1
- type: Transform
-- proto: OxygenTankFilled
- entities:
- - uid: 717
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: PaperBin10
- entities:
- - uid: 1661
- components:
- - rot: 3.141592653589793 rad
- pos: 13.351419,17.5873
- parent: 1
- type: Transform
- - uid: 1662
- components:
- - pos: -12.5,-4.5
- parent: 1
- type: Transform
-- proto: Pen
- entities:
- - uid: 1663
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.952744,-4.4131765
- parent: 1
- type: Transform
-- proto: PinpointerUniversal
- entities:
- - uid: 718
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: PortableScrubber
- entities:
- - uid: 1664
- components:
- - pos: -11.5,-2.5
- parent: 1
- type: Transform
-- proto: PottedPlantBioluminscent
- entities:
- - uid: 1665
- components:
- - pos: 6.5,28.5
- parent: 1
- type: Transform
-- proto: PottedPlantRandom
- entities:
- - uid: 1666
- components:
- - pos: 0.5,15.5
- parent: 1
- type: Transform
- - uid: 1667
- components:
- - pos: 13.5,14.5
- parent: 1
- type: Transform
- - uid: 1668
- components:
- - pos: -5.5,10.5
- parent: 1
- type: Transform
- - uid: 1669
- components:
- - pos: 8.5,2.5
- parent: 1
- type: Transform
- - uid: 1671
- components:
- - pos: 6.5,17.5
- parent: 1
- type: Transform
-- proto: PottedPlantRandomPlastic
- entities:
- - uid: 1672
- components:
- - pos: -17.5,5.5
- parent: 1
- type: Transform
-- proto: PowerCellHyper
- entities:
- - uid: 1673
- components:
- - pos: -13.68182,7.8899345
- parent: 1
- type: Transform
- - uid: 1674
- components:
- - pos: -13.384945,7.8899345
- parent: 1
- type: Transform
- - uid: 1675
- components:
- - pos: -16.730898,7.4061146
- parent: 1
- type: Transform
- - uid: 1676
- components:
- - pos: -16.590273,7.4061146
- parent: 1
- type: Transform
- - uid: 1677
- components:
- - pos: 12.288149,4.785761
- parent: 1
- type: Transform
- - uid: 1678
- components:
- - pos: 12.444399,4.785761
- parent: 1
- type: Transform
- - uid: 2428
- components:
- - pos: -13.384592,7.8890915
- parent: 1
- type: Transform
- - uid: 2507
- components:
- - pos: -13.384592,7.8890915
- parent: 1
- type: Transform
- - uid: 2511
- components:
- - pos: -13.681467,7.8890915
- parent: 1
- type: Transform
- - uid: 2513
- components:
- - pos: -13.665842,7.8890915
- parent: 1
- type: Transform
-- proto: PowerCellRecharger
- entities:
- - uid: 1679
- components:
- - pos: -12.5,7.5
- parent: 1
- type: Transform
- - uid: 1680
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,7.5
- parent: 1
- type: Transform
- - uid: 2424
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
-- proto: Poweredlight
- entities:
- - uid: 56
- components:
- - pos: -5.5,-2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 57
- components:
- - pos: -9.5,-2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 58
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1681
- components:
- - pos: -22.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1682
- components:
- - rot: 3.141592653589793 rad
- pos: -19.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1683
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1684
- components:
- - pos: -22.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1685
- components:
- - pos: -19.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1686
- components:
- - rot: 3.141592653589793 rad
- pos: -19.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1687
- components:
- - rot: 3.141592653589793 rad
- pos: -22.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1688
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1689
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1690
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1691
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1692
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1693
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,-0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1694
- components:
- - pos: -17.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1695
- components:
- - pos: -10.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1696
- components:
- - rot: 3.141592653589793 rad
- pos: -10.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1697
- components:
- - rot: 3.141592653589793 rad
- pos: -17.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1698
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1699
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1700
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1701
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1702
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1703
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1704
- components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1705
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,3.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1706
- components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1707
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1708
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,17.5
- parent: 1
- type: Transform
- - uid: 1709
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,15.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1710
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1711
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1712
- components:
- - pos: -12.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1713
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,15.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1714
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1715
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,11.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1716
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1717
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1718
- components:
- - pos: -15.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1719
- components:
- - pos: -17.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1720
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1721
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1722
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1723
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1724
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1725
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1726
- components:
- - pos: 1.5,15.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1727
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,23.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1728
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,21.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1729
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,19.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1730
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1733
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,14.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1734
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,14.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1736
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1737
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1738
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1739
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1740
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,23.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1741
- components:
- - pos: -0.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1742
- components:
- - pos: 2.5,1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1743
- components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1744
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-1.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1745
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1746
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1747
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1748
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1749
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,14.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1750
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1751
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,14.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1752
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1753
- components:
- - rot: -1.5707963267948966 rad
- pos: 17.5,16.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1754
- components:
- - pos: 10.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1755
- components:
- - pos: 13.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1756
- components:
- - pos: -0.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1757
- components:
- - pos: 5.5,5.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1758
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1759
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1760
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,6.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1761
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,6.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1762
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1763
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1764
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,13.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1765
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1766
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,17.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1767
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,20.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1768
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,20.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1769
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,24.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1770
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,24.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1771
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,29.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1772
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,29.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1773
- components:
- - pos: 2.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1774
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,33.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1775
- components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,33.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1776
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1777
- components:
- - pos: -1.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1778
- components:
- - pos: -5.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1779
- components:
- - pos: 5.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1780
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1781
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1782
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,7.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1783
- components:
- - pos: 14.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1784
- components:
- - pos: 11.5,8.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1785
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,6.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1786
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,6.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1787
- components:
- - pos: 11.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1788
- components:
- - pos: 14.5,12.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1789
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1790
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,10.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1791
- components:
- - pos: 11.5,4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 1792
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,2.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 2416
- components:
- - pos: 0.5,22.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 2417
- components:
- - pos: -1.5,22.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 2418
- components:
- - pos: -3.5,20.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 2419
- components:
- - pos: -5.5,20.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
- - uid: 2439
- components:
- - rot: 3.141592653589793 rad
- pos: -9.5,-4.5
- parent: 1
- type: Transform
- - enabled: False
- type: AmbientSound
-- proto: PoweredSmallLight
- entities:
- - uid: 1793
- components:
- - pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 1794
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-0.5
- parent: 1
- type: Transform
-- proto: Rack
- entities:
- - uid: 1580
- components:
- - pos: 14.5,10.5
- parent: 1
- type: Transform
- - uid: 1656
- components:
- - pos: 11.5,10.5
- parent: 1
- type: Transform
- - uid: 1795
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,7.5
- parent: 1
- type: Transform
- - uid: 1796
- components:
- - pos: 3.5,24.5
- parent: 1
- type: Transform
- - uid: 1797
- components:
- - pos: 14.5,8.5
- parent: 1
- type: Transform
- - uid: 1798
- components:
- - pos: 12.5,8.5
- parent: 1
- type: Transform
- - uid: 1799
- components:
- - pos: 13.5,8.5
- parent: 1
- type: Transform
- - uid: 1800
- components:
- - pos: 12.5,6.5
- parent: 1
- type: Transform
- - uid: 1801
- components:
- - pos: 13.5,6.5
- parent: 1
- type: Transform
- - uid: 1802
- components:
- - pos: 14.5,6.5
- parent: 1
- type: Transform
- - uid: 1803
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,12.5
- parent: 1
- type: Transform
- - uid: 1804
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,12.5
- parent: 1
- type: Transform
- - uid: 1805
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,12.5
- parent: 1
- type: Transform
- - uid: 1807
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,10.5
- parent: 1
- type: Transform
- - uid: 1808
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,10.5
- parent: 1
- type: Transform
- - uid: 1809
- components:
- - rot: 1.5707963267948966 rad
- pos: -10.5,-2.5
- parent: 1
- type: Transform
-- proto: RandomFoodBakedSingle
- entities:
- - uid: 1810
- components:
- - pos: 2.5,-0.5
- parent: 1
- type: Transform
-- proto: RandomFoodBakedWhole
- entities:
- - uid: 1811
- components:
- - pos: 0.5,0.5
- parent: 1
- type: Transform
-- proto: RandomFoodMeal
- entities:
- - uid: 1812
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 1813
- components:
- - pos: 1.5,-4.5
- parent: 1
- type: Transform
-- proto: RandomFoodSingle
- entities:
- - uid: 1814
- components:
- - pos: -0.5,-0.5
- parent: 1
- type: Transform
- - uid: 1815
- components:
- - pos: 0.5,-3.5
- parent: 1
- type: Transform
-- proto: RandomPosterLegit
- entities:
- - uid: 1816
- components:
- - pos: 3.5,13.5
- parent: 1
- type: Transform
- - uid: 1817
- components:
- - pos: 5.5,6.5
- parent: 1
- type: Transform
- - uid: 1818
- components:
- - pos: -6.5,6.5
- parent: 1
- type: Transform
- - uid: 1819
- components:
- - pos: -11.5,2.5
- parent: 1
- type: Transform
- - uid: 1820
- components:
- - pos: -23.5,0.5
- parent: 1
- type: Transform
- - uid: 1821
- components:
- - pos: -13.5,10.5
- parent: 1
- type: Transform
- - uid: 1823
- components:
- - pos: 17.5,14.5
- parent: 1
- type: Transform
-- proto: RandomSoap
- entities:
- - uid: 1824
- components:
- - pos: 2.5,23.5
- parent: 1
- type: Transform
-- proto: RandomSpawner
- entities:
- - uid: 1825
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,2.5
- parent: 1
- type: Transform
- - uid: 1826
- components:
- - pos: -3.5,12.5
- parent: 1
- type: Transform
- - uid: 1827
- components:
- - pos: 8.5,13.5
- parent: 1
- type: Transform
- - uid: 1828
- components:
- - pos: 6.5,19.5
- parent: 1
- type: Transform
- - uid: 1829
- components:
- - pos: 8.5,33.5
- parent: 1
- type: Transform
- - uid: 1830
- components:
- - pos: -0.5,14.5
- parent: 1
- type: Transform
- - uid: 1831
- components:
- - pos: -10.5,12.5
- parent: 1
- type: Transform
- - uid: 1832
- components:
- - pos: -15.5,4.5
- parent: 1
- type: Transform
-- proto: RandomVending
- entities:
- - uid: 1833
- components:
- - pos: -10.5,5.5
- parent: 1
- type: Transform
- - uid: 1834
- components:
- - pos: -1.5,15.5
- parent: 1
- type: Transform
- - uid: 1835
- components:
- - pos: 10.5,14.5
- parent: 1
- type: Transform
- - uid: 1836
- components:
- - pos: -0.5,12.5
- parent: 1
- type: Transform
- - uid: 1837
- components:
- - pos: -0.5,3.5
- parent: 1
- type: Transform
- - uid: 1838
- components:
- - pos: 6.5,15.5
- parent: 1
- type: Transform
-- proto: RCD
- entities:
- - uid: 633
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 645
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1839
- components:
- - rot: -1.5707963267948966 rad
- pos: -13.02557,7.5930595
- parent: 1
- type: Transform
- - uid: 2481
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2493
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: RCDAmmo
- entities:
- - uid: 634
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 635
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 636
- components:
- - flags: InContainer
- type: MetaData
- - parent: 626
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 646
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 647
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 648
- components:
- - flags: InContainer
- type: MetaData
- - parent: 638
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 1840
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.36932,7.7961845
- parent: 1
- type: Transform
- - uid: 1841
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.36932,7.7961845
- parent: 1
- type: Transform
- - uid: 1842
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.36932,7.7961845
- parent: 1
- type: Transform
- - uid: 1843
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.36932,7.7961845
- parent: 1
- type: Transform
- - uid: 1844
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.36932,7.7961845
- parent: 1
- type: Transform
- - uid: 2477
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2478
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2480
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2470
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2490
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2491
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2492
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2482
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ReinforcedPlasmaWindow
- entities:
- - uid: 1845
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,11.5
- parent: 1
- type: Transform
- - uid: 1846
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,11.5
- parent: 1
- type: Transform
-- proto: ReinforcedWindow
- entities:
- - uid: 1418
- components:
- - pos: -1.5,23.5
- parent: 1
- type: Transform
- - uid: 1847
- components:
- - pos: -9.5,18.5
- parent: 1
- type: Transform
- - uid: 1848
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,22.5
- parent: 1
- type: Transform
- - uid: 1849
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,31.5
- parent: 1
- type: Transform
- - uid: 1850
- components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,35.5
- parent: 1
- type: Transform
- - uid: 1851
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 1
- type: Transform
- - uid: 1852
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-5.5
- parent: 1
- type: Transform
- - uid: 1853
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,2.5
- parent: 1
- type: Transform
- - uid: 1854
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,2.5
- parent: 1
- type: Transform
- - uid: 1855
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,6.5
- parent: 1
- type: Transform
- - uid: 1856
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-5.5
- parent: 1
- type: Transform
- - uid: 1857
- components:
- - rot: 1.5707963267948966 rad
- pos: -16.5,-1.5
- parent: 1
- type: Transform
- - uid: 1858
- components:
- - rot: 1.5707963267948966 rad
- pos: -21.5,-1.5
- parent: 1
- type: Transform
- - uid: 1859
- components:
- - rot: 1.5707963267948966 rad
- pos: -20.5,-1.5
- parent: 1
- type: Transform
- - uid: 1860
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,18.5
- parent: 1
- type: Transform
- - uid: 1861
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,18.5
- parent: 1
- type: Transform
- - uid: 1862
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,18.5
- parent: 1
- type: Transform
- - uid: 1863
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,18.5
- parent: 1
- type: Transform
- - uid: 1864
- components:
- - rot: 1.5707963267948966 rad
- pos: -23.5,4.5
- parent: 1
- type: Transform
- - uid: 1865
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,33.5
- parent: 1
- type: Transform
- - uid: 1866
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,32.5
- parent: 1
- type: Transform
- - uid: 1867
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,28.5
- parent: 1
- type: Transform
- - uid: 1868
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,27.5
- parent: 1
- type: Transform
- - uid: 1869
- components:
- - pos: -10.5,18.5
- parent: 1
- type: Transform
- - uid: 1870
- components:
- - pos: -12.5,16.5
- parent: 1
- type: Transform
- - uid: 1873
- components:
- - pos: 0.5,23.5
- parent: 1
- type: Transform
- - uid: 1875
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,27.5
- parent: 1
- type: Transform
- - uid: 1876
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,26.5
- parent: 1
- type: Transform
- - uid: 1877
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,25.5
- parent: 1
- type: Transform
- - uid: 1878
- components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,28.5
- parent: 1
- type: Transform
- - uid: 1879
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 1
- type: Transform
- - uid: 1880
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
- parent: 1
- type: Transform
- - uid: 1881
- components:
- - pos: 18.5,13.5
- parent: 1
- type: Transform
- - uid: 1882
- components:
- - pos: 18.5,12.5
- parent: 1
- type: Transform
- - uid: 1883
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-5.5
- parent: 1
- type: Transform
- - uid: 1884
- components:
- - rot: 1.5707963267948966 rad
- pos: -6.5,-5.5
- parent: 1
- type: Transform
- - uid: 1885
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,-5.5
- parent: 1
- type: Transform
- - uid: 2142
- components:
- - pos: -0.5,23.5
- parent: 1
- type: Transform
-- proto: RiotBulletShield
- entities:
- - uid: 1886
- components:
- - pos: 12.378235,6.6466303
- parent: 1
- type: Transform
- - uid: 1887
- components:
- - pos: 12.534485,6.6310053
- parent: 1
- type: Transform
- - uid: 1888
- components:
- - pos: 12.67511,6.6310053
- parent: 1
- type: Transform
-- proto: RiotShield
- entities:
- - uid: 1889
- components:
- - pos: 12.70636,6.4591303
- parent: 1
- type: Transform
- - uid: 1890
- components:
- - pos: 12.565735,6.4591303
- parent: 1
- type: Transform
- - uid: 1891
- components:
- - pos: 12.42511,6.4591303
- parent: 1
- type: Transform
-- proto: RubberStampApproved
- entities:
- - uid: 1892
- components:
- - pos: 13.757669,17.8373
- parent: 1
- type: Transform
-- proto: RubberStampCentcom
- entities:
- - uid: 1893
- components:
- - pos: 13.757669,17.540424
- parent: 1
- type: Transform
-- proto: RubberStampDenied
- entities:
- - uid: 1894
- components:
- - pos: 13.757669,17.7123
- parent: 1
- type: Transform
-- proto: SheetGlass
- entities:
- - uid: 1895
- components:
- - pos: -11.446348,7.5056324
- parent: 1
- type: Transform
- - uid: 1896
- components:
- - pos: -11.446348,7.5056324
- parent: 1
- type: Transform
- - uid: 1897
- components:
- - pos: -11.446348,7.5056324
- parent: 1
- type: Transform
-- proto: SheetPlasma
- entities:
- - uid: 137
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 138
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 139
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 140
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 141
- components:
- - flags: InContainer
- type: MetaData
- - parent: 122
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: SheetPlasteel
- entities:
- - uid: 1898
- components:
- - pos: -11.470959,7.482976
- parent: 1
- type: Transform
- - uid: 1899
- components:
- - pos: -11.470959,7.482976
- parent: 1
- type: Transform
- - uid: 1900
- components:
- - pos: -11.470959,7.482976
- parent: 1
- type: Transform
- - uid: 1901
- components:
- - pos: -11.470959,7.482976
- parent: 1
- type: Transform
- - uid: 1902
- components:
- - pos: -11.470959,7.482976
- parent: 1
- type: Transform
-- proto: SheetRGlass
- entities:
- - uid: 1903
- components:
- - pos: -11.493223,7.4587574
- parent: 1
- type: Transform
- - uid: 1904
- components:
- - pos: -11.493223,7.4587574
- parent: 1
- type: Transform
- - uid: 1905
- components:
- - pos: -11.493223,7.4587574
- parent: 1
- type: Transform
-- proto: SheetRPGlass
- entities:
- - uid: 1906
- components:
- - pos: -11.477598,7.4431324
- parent: 1
- type: Transform
- - uid: 1907
- components:
- - pos: -11.477598,7.4431324
- parent: 1
- type: Transform
- - uid: 1908
- components:
- - pos: -11.477598,7.4431324
- parent: 1
- type: Transform
-- proto: SheetSteel
- entities:
- - uid: 1909
- components:
- - pos: -11.424084,7.498601
- parent: 1
- type: Transform
- - uid: 1910
- components:
- - pos: -11.424084,7.498601
- parent: 1
- type: Transform
- - uid: 1911
- components:
- - pos: -11.424084,7.498601
- parent: 1
- type: Transform
- - uid: 1912
- components:
- - pos: -11.424084,7.498601
- parent: 1
- type: Transform
- - uid: 1913
- components:
- - pos: -11.424084,7.498601
- parent: 1
- type: Transform
-- proto: SignArmory
- entities:
- - uid: 1914
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,8.5
- parent: 1
- type: Transform
-- proto: SignAtmos
- entities:
- - uid: 1915
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,8.5
- parent: 1
- type: Transform
-- proto: SignBridge
- entities:
- - uid: 1916
- components:
- - pos: 9.5,14.5
- parent: 1
- type: Transform
-- proto: SignEngineering
- entities:
- - uid: 1917
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,12.5
- parent: 1
- type: Transform
-- proto: SignEVA
- entities:
- - uid: 1918
- components:
- - pos: 11.5,9.5
- parent: 1
- type: Transform
-- proto: SignMedical
- entities:
- - uid: 1919
- components:
- - pos: -1.5,5.5
- parent: 1
- type: Transform
-- proto: SignMorgue
- entities:
- - uid: 1920
- components:
- - pos: -12.5,-1.5
- parent: 1
- type: Transform
-- proto: SignShipDock
- entities:
- - uid: 1921
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,16.5
- parent: 1
- type: Transform
-- proto: SignSurgery
- entities:
- - uid: 1922
- components:
- - pos: -15.5,2.5
- parent: 1
- type: Transform
-- proto: SignVirology
- entities:
- - uid: 1923
- components:
- - pos: -18.5,5.5
- parent: 1
- type: Transform
-- proto: SinkWide
- entities:
- - uid: 1924
- components:
- - pos: -17.5,1.5
- parent: 1
- type: Transform
- - uid: 1925
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,17.5
- parent: 1
- type: Transform
- - uid: 1926
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 1
- type: Transform
- - uid: 1927
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,19.5
- parent: 1
- type: Transform
- - uid: 1928
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,3.5
- parent: 1
- type: Transform
-- proto: SMESBasic
- entities:
- - uid: 1929
- components:
- - pos: -11.5,11.5
- parent: 1
- type: Transform
- - autoRechargeRate: 8000000
- autoRecharge: True
- type: BatterySelfRecharger
- - uid: 1930
- components:
- - pos: -12.5,11.5
- parent: 1
- type: Transform
- - autoRechargeRate: 8000000
- autoRecharge: True
- type: BatterySelfRecharger
- - uid: 1931
- components:
- - pos: -13.5,11.5
- parent: 1
- type: Transform
- - autoRechargeRate: 8000000
- autoRecharge: True
- type: BatterySelfRecharger
-- proto: SoapNT
- entities:
- - uid: 1932
- components:
- - pos: 4.5256424,24.530594
- parent: 1
- type: Transform
-- proto: SpawnMobCleanBot
- entities:
- - uid: 1933
- components:
- - pos: 2.5,4.5
- parent: 1
- type: Transform
- - uid: 1934
- components:
- - pos: 7.5,24.5
- parent: 1
- type: Transform
- - uid: 1935
- components:
- - pos: 1.5,14.5
- parent: 1
- type: Transform
-- proto: SpawnMobMedibot
- entities:
- - uid: 1936
- components:
- - pos: -5.5,4.5
- parent: 1
- type: Transform
-- proto: SpawnPointERTEventERTEngineerEVA
- entities:
- - uid: 2531
- components:
- - pos: -9.5,17.5
- parent: 1
- type: Transform
- - uid: 2532
- components:
- - pos: -7.5,12.5
- parent: 1
- type: Transform
- - uid: 2533
- components:
- - pos: -11.5,9.5
- parent: 1
- type: Transform
- - uid: 2534
- components:
- - pos: -10.5,13.5
- parent: 1
- type: Transform
-- proto: SpawnPointERTEventERTLeaderEVA
- entities:
- - uid: 2535
- components:
- - pos: 1.5,10.5
- parent: 1
- type: Transform
-- proto: SpawnPointERTEventERTMedicalEVA
- entities:
- - uid: 2527
- components:
- - pos: -4.5,8.5
- parent: 1
- type: Transform
- - uid: 2528
- components:
- - pos: -2.5,0.5
- parent: 1
- type: Transform
- - uid: 2529
- components:
- - pos: -6.5,0.5
- parent: 1
- type: Transform
- - uid: 2530
- components:
- - pos: -12.5,4.5
- parent: 1
- type: Transform
-- proto: SpawnPointERTEventERTSecurityEVA
- entities:
- - uid: 2523
- components:
- - pos: 4.5,12.5
- parent: 1
- type: Transform
- - uid: 2524
- components:
- - pos: 3.5,12.5
- parent: 1
- type: Transform
- - uid: 2525
- components:
- - pos: -1.5,12.5
- parent: 1
- type: Transform
- - uid: 2526
- components:
- - pos: -2.5,12.5
- parent: 1
- type: Transform
-- proto: SpawnVehicleJanicart
- entities:
- - uid: 1937
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,2.5
- parent: 1
- type: Transform
-- proto: SprayBottleSpaceCleaner
- entities:
- - uid: 1938
- components:
- - pos: 11.319399,4.723261
- parent: 1
- type: Transform
- - uid: 1939
- components:
- - pos: 11.506899,4.723261
- parent: 1
- type: Transform
- - uid: 1940
- components:
- - pos: 11.678774,4.707636
- parent: 1
- type: Transform
- - uid: 1941
- components:
- - pos: 11.678774,4.567011
- parent: 1
- type: Transform
- - uid: 1942
- components:
- - pos: 11.475649,4.567011
- parent: 1
- type: Transform
- - uid: 1943
- components:
- - pos: 11.335024,4.567011
- parent: 1
- type: Transform
-- proto: StasisBed
- entities:
- - uid: 1944
- components:
- - pos: -3.5,7.5
- parent: 1
- type: Transform
-- proto: Stunbaton
- entities:
- - uid: 1945
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
- - uid: 1946
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
- - uid: 1947
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
- - uid: 1948
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
- - uid: 1949
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
- - uid: 1982
- components:
- - pos: 11.239096,8.59159
- parent: 1
- type: Transform
-- proto: SubstationBasic
- entities:
- - uid: 1951
- components:
- - pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 1952
- components:
- - pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 1953
- components:
- - pos: 4.5,-0.5
- parent: 1
- type: Transform
-- proto: SurveillanceCameraRouterCommand
- entities:
- - uid: 1954
- components:
- - pos: 17.5,17.5
- parent: 1
- type: Transform
-- proto: SyringeBluespace
- entities:
- - uid: 216
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 217
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 218
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 219
- components:
- - flags: InContainer
- type: MetaData
- - parent: 184
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: TableReinforced
- entities:
- - uid: 603
- components:
- - pos: 3.5,15.5
- parent: 1
- type: Transform
- - uid: 604
- components:
- - pos: 4.5,15.5
- parent: 1
- type: Transform
- - uid: 1955
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,2.5
- parent: 1
- type: Transform
- - uid: 1956
- components:
- - pos: -2.5,5.5
- parent: 1
- type: Transform
- - uid: 1957
- components:
- - pos: -3.5,5.5
- parent: 1
- type: Transform
- - uid: 1958
- components:
- - pos: -15.5,1.5
- parent: 1
- type: Transform
- - uid: 1959
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,8.5
- parent: 1
- type: Transform
- - uid: 1960
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,7.5
- parent: 1
- type: Transform
- - uid: 1961
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,7.5
- parent: 1
- type: Transform
- - uid: 1962
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,7.5
- parent: 1
- type: Transform
- - uid: 1963
- components:
- - rot: 1.5707963267948966 rad
- pos: -16.5,7.5
- parent: 1
- type: Transform
- - uid: 1964
- components:
- - pos: -0.5,0.5
- parent: 1
- type: Transform
- - uid: 1965
- components:
- - pos: -0.5,-0.5
- parent: 1
- type: Transform
- - uid: 1966
- components:
- - pos: 0.5,-0.5
- parent: 1
- type: Transform
- - uid: 1967
- components:
- - pos: 0.5,0.5
- parent: 1
- type: Transform
- - uid: 1968
- components:
- - pos: 2.5,0.5
- parent: 1
- type: Transform
- - uid: 1969
- components:
- - pos: 2.5,-0.5
- parent: 1
- type: Transform
- - uid: 1970
- components:
- - pos: 1.5,-4.5
- parent: 1
- type: Transform
- - uid: 1971
- components:
- - pos: 0.5,-4.5
- parent: 1
- type: Transform
- - uid: 1972
- components:
- - pos: 0.5,-3.5
- parent: 1
- type: Transform
- - uid: 1973
- components:
- - pos: 1.5,-3.5
- parent: 1
- type: Transform
- - uid: 1974
- components:
- - pos: -3.5,-3.5
- parent: 1
- type: Transform
- - uid: 1975
- components:
- - pos: -3.5,-4.5
- parent: 1
- type: Transform
- - uid: 1976
- components:
- - pos: -2.5,-4.5
- parent: 1
- type: Transform
- - uid: 1977
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,17.5
- parent: 1
- type: Transform
- - uid: 1978
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,17.5
- parent: 1
- type: Transform
- - uid: 1979
- components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,14.5
- parent: 1
- type: Transform
- - uid: 1980
- components:
- - rot: 1.5707963267948966 rad
- pos: 12.5,14.5
- parent: 1
- type: Transform
- - uid: 1981
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,8.5
- parent: 1
- type: Transform
- - uid: 1983
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,4.5
- parent: 1
- type: Transform
- - uid: 1984
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,4.5
- parent: 1
- type: Transform
- - uid: 1985
- components:
- - pos: -12.5,-4.5
- parent: 1
- type: Transform
- - uid: 1986
- components:
- - pos: -13.5,-4.5
- parent: 1
- type: Transform
- - uid: 1987
- components:
- - pos: -13.5,-3.5
- parent: 1
- type: Transform
-- proto: TableReinforcedGlass
- entities:
- - uid: 1988
- components:
- - pos: -4.5,-0.5
- parent: 1
- type: Transform
- - uid: 1989
- components:
- - pos: -4.5,0.5
- parent: 1
- type: Transform
- - uid: 1990
- components:
- - pos: -22.5,4.5
- parent: 1
- type: Transform
- - uid: 1991
- components:
- - pos: -19.5,5.5
- parent: 1
- type: Transform
- - uid: 1992
- components:
- - pos: -20.5,5.5
- parent: 1
- type: Transform
-- proto: TelecomServerFilled
- entities:
- - uid: 1993
- components:
- - pos: 15.5,17.5
- parent: 1
- type: Transform
- - uid: 1994
- components:
- - pos: 15.5,16.5
- parent: 1
- type: Transform
-- proto: ToiletEmpty
- entities:
- - uid: 1995
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,19.5
- parent: 1
- type: Transform
- - uid: 1996
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,17.5
- parent: 1
- type: Transform
- - uid: 1997
- components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,21.5
- parent: 1
- type: Transform
-- proto: ToyFigurineMedicalDoctor
- entities:
- - uid: 1998
- components:
- - pos: -12.694241,5.5293202
- parent: 1
- type: Transform
-- proto: ToyRubberDuck
- entities:
- - uid: 1999
- components:
- - pos: 2.4475174,24.655594
- parent: 1
- type: Transform
-- proto: Truncheon
- entities:
- - uid: 144
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
- - uid: 145
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
- - uid: 1950
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
- - uid: 2000
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
- - uid: 2001
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
- - uid: 2002
- components:
- - pos: 11.332846,8.513465
- parent: 1
- type: Transform
-- proto: Vaccinator
- entities:
- - uid: 2003
- components:
- - pos: -22.5,5.5
- parent: 1
- type: Transform
-- proto: VehicleKeyJanicart
- entities:
- - uid: 2004
- components:
- - pos: 12.515272,4.554459
- parent: 1
- type: Transform
-- proto: VendingMachineAmmo
- entities:
- - uid: 151
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: 10.5,6.5
- parent: 1
- type: Transform
-- proto: VendingMachineClothing
- entities:
- - uid: 2005
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -5.5,14.5
- parent: 1
- type: Transform
-- proto: VendingMachineCoffee
- entities:
- - uid: 2006
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -3.5,-2.5
- parent: 1
- type: Transform
-- proto: VendingMachineCondiments
- entities:
- - uid: 2007
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -0.5,0.5
- parent: 1
- type: Transform
- - uid: 2008
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: 0.5,-4.5
- parent: 1
- type: Transform
-- proto: VendingMachineEngivend
- entities:
- - uid: 756
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -11.5,16.5
- parent: 1
- type: Transform
-- proto: VendingMachineMedical
- entities:
- - uid: 2009
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -7.5,6.5
- parent: 1
- type: Transform
-- proto: VendingMachineSec
- entities:
- - uid: 2010
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: 11.5,6.5
- parent: 1
- type: Transform
-- proto: VendingMachineTankDispenserEVA
- entities:
- - uid: 2011
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: 11.5,12.5
- parent: 1
- type: Transform
-- proto: VendingMachineWallMedical
- entities:
- - uid: 2012
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -4.5,9.5
- parent: 1
- type: Transform
-- proto: VendingMachineYouTool
- entities:
- - uid: 754
- components:
- - flags: SessionSpecific
- type: MetaData
- - pos: -11.5,17.5
- parent: 1
- type: Transform
-- proto: VirusologHampter
- entities:
- - uid: 2013
- components:
- - pos: -19.93943,5.556874
- parent: 1
- type: Transform
-- proto: WallReinforced
- entities:
- - uid: 1463
- components:
- - pos: -2.5,22.5
- parent: 1
- type: Transform
- - uid: 1567
- components:
- - pos: -2.5,21.5
- parent: 1
- type: Transform
- - uid: 2014
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,-1.5
- parent: 1
- type: Transform
- - uid: 2015
- components:
- - pos: -14.5,-3.5
- parent: 1
- type: Transform
- - uid: 2016
- components:
- - pos: -14.5,-2.5
- parent: 1
- type: Transform
- - uid: 2017
- components:
- - pos: -10.5,-5.5
- parent: 1
- type: Transform
- - uid: 2018
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,0.5
- parent: 1
- type: Transform
- - uid: 2019
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,14.5
- parent: 1
- type: Transform
- - uid: 2020
- components:
- - rot: 3.141592653589793 rad
- pos: -14.5,14.5
- parent: 1
- type: Transform
- - uid: 2021
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,13.5
- parent: 1
- type: Transform
- - uid: 2022
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,9.5
- parent: 1
- type: Transform
- - uid: 2023
- components:
- - pos: -14.5,10.5
- parent: 1
- type: Transform
- - uid: 2024
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,14.5
- parent: 1
- type: Transform
- - uid: 2025
- components:
- - pos: -12.5,17.5
- parent: 1
- type: Transform
- - uid: 2026
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,14.5
- parent: 1
- type: Transform
- - uid: 2027
- components:
- - rot: 3.141592653589793 rad
- pos: -8.5,14.5
- parent: 1
- type: Transform
- - uid: 2028
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,14.5
- parent: 1
- type: Transform
- - uid: 2029
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,13.5
- parent: 1
- type: Transform
- - uid: 2030
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,8.5
- parent: 1
- type: Transform
- - uid: 2031
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,6.5
- parent: 1
- type: Transform
- - uid: 2032
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,14.5
- parent: 1
- type: Transform
- - uid: 2033
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,14.5
- parent: 1
- type: Transform
- - uid: 2034
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,13.5
- parent: 1
- type: Transform
- - uid: 2035
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,12.5
- parent: 1
- type: Transform
- - uid: 2036
- components:
- - rot: -1.5707963267948966 rad
- pos: -10.5,6.5
- parent: 1
- type: Transform
- - uid: 2037
- components:
- - rot: -1.5707963267948966 rad
- pos: -11.5,6.5
- parent: 1
- type: Transform
- - uid: 2038
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,6.5
- parent: 1
- type: Transform
- - uid: 2039
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,7.5
- parent: 1
- type: Transform
- - uid: 2040
- components:
- - rot: -1.5707963267948966 rad
- pos: -7.5,10.5
- parent: 1
- type: Transform
- - uid: 2041
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,10.5
- parent: 1
- type: Transform
- - uid: 2042
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,10.5
- parent: 1
- type: Transform
- - uid: 2043
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,13.5
- parent: 1
- type: Transform
- - uid: 2044
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,14.5
- parent: 1
- type: Transform
- - uid: 2045
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,10.5
- parent: 1
- type: Transform
- - uid: 2046
- components:
- - rot: -1.5707963267948966 rad
- pos: -13.5,6.5
- parent: 1
- type: Transform
- - uid: 2047
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,9.5
- parent: 1
- type: Transform
- - uid: 2048
- components:
- - rot: -1.5707963267948966 rad
- pos: -6.5,12.5
- parent: 1
- type: Transform
- - uid: 2049
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,12.5
- parent: 1
- type: Transform
- - uid: 2050
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,12.5
- parent: 1
- type: Transform
- - uid: 2051
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,9.5
- parent: 1
- type: Transform
- - uid: 2052
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,8.5
- parent: 1
- type: Transform
- - uid: 2053
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,7.5
- parent: 1
- type: Transform
- - uid: 2054
- components:
- - pos: -11.5,2.5
- parent: 1
- type: Transform
- - uid: 2055
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,11.5
- parent: 1
- type: Transform
- - uid: 2056
- components:
- - pos: -14.5,-0.5
- parent: 1
- type: Transform
- - uid: 2057
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,11.5
- parent: 1
- type: Transform
- - uid: 2058
- components:
- - rot: -1.5707963267948966 rad
- pos: -18.5,10.5
- parent: 1
- type: Transform
- - uid: 2059
- components:
- - pos: 3.5,-2.5
- parent: 1
- type: Transform
- - uid: 2060
- components:
- - pos: -18.5,6.5
- parent: 1
- type: Transform
- - uid: 2061
- components:
- - rot: -1.5707963267948966 rad
- pos: -17.5,6.5
- parent: 1
- type: Transform
- - uid: 2062
- components:
- - rot: -1.5707963267948966 rad
- pos: -16.5,6.5
- parent: 1
- type: Transform
- - uid: 2063
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,6.5
- parent: 1
- type: Transform
- - uid: 2064
- components:
- - rot: -1.5707963267948966 rad
- pos: -15.5,6.5
- parent: 1
- type: Transform
- - uid: 2065
- components:
- - pos: -14.5,7.5
- parent: 1
- type: Transform
- - uid: 2066
- components:
- - pos: -21.5,6.5
- parent: 1
- type: Transform
- - uid: 2067
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,2.5
- parent: 1
- type: Transform
- - uid: 2068
- components:
- - pos: -14.5,0.5
- parent: 1
- type: Transform
- - uid: 2069
- components:
- - pos: -14.5,1.5
- parent: 1
- type: Transform
- - uid: 2070
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,1.5
- parent: 1
- type: Transform
- - uid: 2071
- components:
- - pos: -9.5,-1.5
- parent: 1
- type: Transform
- - uid: 2072
- components:
- - rot: 1.5707963267948966 rad
- pos: -8.5,-1.5
- parent: 1
- type: Transform
- - uid: 2073
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,17.5
- parent: 1
- type: Transform
- - uid: 2074
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,-0.5
- parent: 1
- type: Transform
- - uid: 2075
- components:
- - pos: 18.5,15.5
- parent: 1
- type: Transform
- - uid: 2076
- components:
- - rot: 3.141592653589793 rad
- pos: -16.5,11.5
- parent: 1
- type: Transform
- - uid: 2077
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-1.5
- parent: 1
- type: Transform
- - uid: 2078
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-1.5
- parent: 1
- type: Transform
- - uid: 2079
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-1.5
- parent: 1
- type: Transform
- - uid: 2080
- components:
- - pos: -1.5,3.5
- parent: 1
- type: Transform
- - uid: 2081
- components:
- - pos: -1.5,2.5
- parent: 1
- type: Transform
- - uid: 2082
- components:
- - pos: -1.5,0.5
- parent: 1
- type: Transform
- - uid: 2083
- components:
- - pos: -1.5,1.5
- parent: 1
- type: Transform
- - uid: 2084
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,3.5
- parent: 1
- type: Transform
- - uid: 2085
- components:
- - pos: -2.5,18.5
- parent: 1
- type: Transform
- - uid: 2086
- components:
- - pos: -6.5,16.5
- parent: 1
- type: Transform
- - uid: 2087
- components:
- - pos: -2.5,16.5
- parent: 1
- type: Transform
- - uid: 2089
- components:
- - pos: -10.5,2.5
- parent: 1
- type: Transform
- - uid: 2090
- components:
- - pos: -5.5,13.5
- parent: 1
- type: Transform
- - uid: 2091
- components:
- - pos: -1.5,-0.5
- parent: 1
- type: Transform
- - uid: 2092
- components:
- - pos: -6.5,18.5
- parent: 1
- type: Transform
- - uid: 2093
- components:
- - pos: -6.5,17.5
- parent: 1
- type: Transform
- - uid: 2094
- components:
- - pos: -1.5,5.5
- parent: 1
- type: Transform
- - uid: 2095
- components:
- - pos: -1.5,6.5
- parent: 1
- type: Transform
- - uid: 2096
- components:
- - pos: -1.5,-1.5
- parent: 1
- type: Transform
- - uid: 2097
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,2.5
- parent: 1
- type: Transform
- - uid: 2098
- components:
- - rot: 1.5707963267948966 rad
- pos: -9.5,5.5
- parent: 1
- type: Transform
- - uid: 2099
- components:
- - pos: -3.5,9.5
- parent: 1
- type: Transform
- - uid: 2100
- components:
- - pos: -2.5,7.5
- parent: 1
- type: Transform
- - uid: 2101
- components:
- - pos: -2.5,8.5
- parent: 1
- type: Transform
- - uid: 2102
- components:
- - pos: -5.5,9.5
- parent: 1
- type: Transform
- - uid: 2103
- components:
- - pos: -4.5,9.5
- parent: 1
- type: Transform
- - uid: 2104
- components:
- - pos: -2.5,9.5
- parent: 1
- type: Transform
- - uid: 2105
- components:
- - pos: -2.5,19.5
- parent: 1
- type: Transform
- - uid: 2106
- components:
- - pos: 5.5,25.5
- parent: 1
- type: Transform
- - uid: 2107
- components:
- - pos: 5.5,23.5
- parent: 1
- type: Transform
- - uid: 2108
- components:
- - pos: 5.5,24.5
- parent: 1
- type: Transform
- - uid: 2109
- components:
- - pos: 4.5,6.5
- parent: 1
- type: Transform
- - uid: 2110
- components:
- - pos: 5.5,21.5
- parent: 1
- type: Transform
- - uid: 2111
- components:
- - pos: -12.5,15.5
- parent: 1
- type: Transform
- - uid: 2112
- components:
- - pos: 5.5,20.5
- parent: 1
- type: Transform
- - uid: 2113
- components:
- - pos: 5.5,31.5
- parent: 1
- type: Transform
- - uid: 2114
- components:
- - pos: 5.5,30.5
- parent: 1
- type: Transform
- - uid: 2115
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,24.5
- parent: 1
- type: Transform
- - uid: 2116
- components:
- - pos: 5.5,29.5
- parent: 1
- type: Transform
- - uid: 2117
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,16.5
- parent: 1
- type: Transform
- - uid: 2118
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,20.5
- parent: 1
- type: Transform
- - uid: 2119
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,29.5
- parent: 1
- type: Transform
- - uid: 2120
- components:
- - pos: 5.5,22.5
- parent: 1
- type: Transform
- - uid: 2121
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,16.5
- parent: 1
- type: Transform
- - uid: 2122
- components:
- - pos: -6.5,15.5
- parent: 1
- type: Transform
- - uid: 2123
- components:
- - pos: -6.5,14.5
- parent: 1
- type: Transform
- - uid: 2124
- components:
- - pos: -2.5,15.5
- parent: 1
- type: Transform
- - uid: 2125
- components:
- - pos: -4.5,13.5
- parent: 1
- type: Transform
- - uid: 2126
- components:
- - pos: -3.5,13.5
- parent: 1
- type: Transform
- - uid: 2127
- components:
- - pos: -2.5,17.5
- parent: 1
- type: Transform
- - uid: 2128
- components:
- - pos: 2.5,13.5
- parent: 1
- type: Transform
- - uid: 2129
- components:
- - pos: 1.5,13.5
- parent: 1
- type: Transform
- - uid: 2130
- components:
- - pos: -0.5,13.5
- parent: 1
- type: Transform
- - uid: 2131
- components:
- - pos: -1.5,13.5
- parent: 1
- type: Transform
- - uid: 2132
- components:
- - pos: -2.5,13.5
- parent: 1
- type: Transform
- - uid: 2133
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,33.5
- parent: 1
- type: Transform
- - uid: 2134
- components:
- - pos: 0.5,13.5
- parent: 1
- type: Transform
- - uid: 2135
- components:
- - pos: 4.5,25.5
- parent: 1
- type: Transform
- - uid: 2136
- components:
- - pos: -2.5,20.5
- parent: 1
- type: Transform
- - uid: 2137
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,16.5
- parent: 1
- type: Transform
- - uid: 2138
- components:
- - rot: 1.5707963267948966 rad
- pos: 8.5,16.5
- parent: 1
- type: Transform
- - uid: 2139
- components:
- - pos: 5.5,16.5
- parent: 1
- type: Transform
- - uid: 2140
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,19.5
- parent: 1
- type: Transform
- - uid: 2141
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,18.5
- parent: 1
- type: Transform
- - uid: 2143
- components:
- - pos: 1.5,21.5
- parent: 1
- type: Transform
- - uid: 2144
- components:
- - pos: 1.5,24.5
- parent: 1
- type: Transform
- - uid: 2145
- components:
- - pos: 3.5,25.5
- parent: 1
- type: Transform
- - uid: 2146
- components:
- - pos: 2.5,25.5
- parent: 1
- type: Transform
- - uid: 2147
- components:
- - pos: 3.5,13.5
- parent: 1
- type: Transform
- - uid: 2148
- components:
- - pos: 4.5,13.5
- parent: 1
- type: Transform
- - uid: 2149
- components:
- - pos: 5.5,13.5
- parent: 1
- type: Transform
- - uid: 2150
- components:
- - pos: 5.5,15.5
- parent: 1
- type: Transform
- - uid: 2151
- components:
- - pos: 1.5,16.5
- parent: 1
- type: Transform
- - uid: 2152
- components:
- - pos: -1.5,16.5
- parent: 1
- type: Transform
- - uid: 2153
- components:
- - pos: 1.5,18.5
- parent: 1
- type: Transform
- - uid: 2154
- components:
- - pos: 1.5,19.5
- parent: 1
- type: Transform
- - uid: 2155
- components:
- - pos: 1.5,20.5
- parent: 1
- type: Transform
- - uid: 2156
- components:
- - pos: 1.5,17.5
- parent: 1
- type: Transform
- - uid: 2157
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,16.5
- parent: 1
- type: Transform
- - uid: 2158
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,18.5
- parent: 1
- type: Transform
- - uid: 2159
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,18.5
- parent: 1
- type: Transform
- - uid: 2160
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,20.5
- parent: 1
- type: Transform
- - uid: 2161
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,20.5
- parent: 1
- type: Transform
- - uid: 2162
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,34.5
- parent: 1
- type: Transform
- - uid: 2163
- components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,26.5
- parent: 1
- type: Transform
- - uid: 2164
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,34.5
- parent: 1
- type: Transform
- - uid: 2165
- components:
- - pos: 17.5,11.5
- parent: 1
- type: Transform
- - uid: 2166
- components:
- - pos: 1.5,23.5
- parent: 1
- type: Transform
- - uid: 2167
- components:
- - pos: 1.5,22.5
- parent: 1
- type: Transform
- - uid: 2168
- components:
- - pos: 4.5,22.5
- parent: 1
- type: Transform
- - uid: 2169
- components:
- - pos: 3.5,22.5
- parent: 1
- type: Transform
- - uid: 2170
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,4.5
- parent: 1
- type: Transform
- - uid: 2171
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,3.5
- parent: 1
- type: Transform
- - uid: 2172
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,2.5
- parent: 1
- type: Transform
- - uid: 2173
- components:
- - pos: 12.5,5.5
- parent: 1
- type: Transform
- - uid: 2174
- components:
- - rot: 3.141592653589793 rad
- pos: 10.5,1.5
- parent: 1
- type: Transform
- - uid: 2175
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,13.5
- parent: 1
- type: Transform
- - uid: 2176
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,13.5
- parent: 1
- type: Transform
- - uid: 2177
- components:
- - rot: 3.141592653589793 rad
- pos: -13.5,10.5
- parent: 1
- type: Transform
- - uid: 2178
- components:
- - rot: 3.141592653589793 rad
- pos: 9.5,1.5
- parent: 1
- type: Transform
- - uid: 2179
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,1.5
- parent: 1
- type: Transform
- - uid: 2180
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-0.5
- parent: 1
- type: Transform
- - uid: 2181
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-1.5
- parent: 1
- type: Transform
- - uid: 2182
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,0.5
- parent: 1
- type: Transform
- - uid: 2183
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-1.5
- parent: 1
- type: Transform
- - uid: 2184
- components:
- - pos: 5.5,6.5
- parent: 1
- type: Transform
- - uid: 2185
- components:
- - pos: 5.5,7.5
- parent: 1
- type: Transform
- - uid: 2186
- components:
- - pos: 3.5,6.5
- parent: 1
- type: Transform
- - uid: 2187
- components:
- - rot: 1.5707963267948966 rad
- pos: -22.5,2.5
- parent: 1
- type: Transform
- - uid: 2188
- components:
- - pos: 2.5,6.5
- parent: 1
- type: Transform
- - uid: 2189
- components:
- - pos: 5.5,8.5
- parent: 1
- type: Transform
- - uid: 2190
- components:
- - pos: 1.5,6.5
- parent: 1
- type: Transform
- - uid: 2191
- components:
- - pos: 5.5,9.5
- parent: 1
- type: Transform
- - uid: 2192
- components:
- - pos: 0.5,6.5
- parent: 1
- type: Transform
- - uid: 2193
- components:
- - pos: 9.5,14.5
- parent: 1
- type: Transform
- - uid: 2194
- components:
- - pos: 9.5,17.5
- parent: 1
- type: Transform
- - uid: 2195
- components:
- - pos: 9.5,19.5
- parent: 1
- type: Transform
- - uid: 2196
- components:
- - pos: 9.5,13.5
- parent: 1
- type: Transform
- - uid: 2197
- components:
- - pos: -0.5,6.5
- parent: 1
- type: Transform
- - uid: 2198
- components:
- - pos: 9.5,12.5
- parent: 1
- type: Transform
- - uid: 2199
- components:
- - pos: 9.5,11.5
- parent: 1
- type: Transform
- - uid: 2200
- components:
- - pos: 9.5,16.5
- parent: 1
- type: Transform
- - uid: 2201
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,13.5
- parent: 1
- type: Transform
- - uid: 2202
- components:
- - pos: 9.5,10.5
- parent: 1
- type: Transform
- - uid: 2203
- components:
- - pos: 9.5,18.5
- parent: 1
- type: Transform
- - uid: 2204
- components:
- - pos: 9.5,5.5
- parent: 1
- type: Transform
- - uid: 2205
- components:
- - pos: 11.5,5.5
- parent: 1
- type: Transform
- - uid: 2206
- components:
- - pos: 10.5,5.5
- parent: 1
- type: Transform
- - uid: 2207
- components:
- - pos: -4.5,-3.5
- parent: 1
- type: Transform
- - uid: 2208
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,1.5
- parent: 1
- type: Transform
- - uid: 2209
- components:
- - pos: -4.5,-2.5
- parent: 1
- type: Transform
- - uid: 2210
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-1.5
- parent: 1
- type: Transform
- - uid: 2211
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-1.5
- parent: 1
- type: Transform
- - uid: 2212
- components:
- - rot: 3.141592653589793 rad
- pos: 6.5,1.5
- parent: 1
- type: Transform
- - uid: 2213
- components:
- - rot: 3.141592653589793 rad
- pos: 11.5,1.5
- parent: 1
- type: Transform
- - uid: 2214
- components:
- - rot: 3.141592653589793 rad
- pos: 7.5,1.5
- parent: 1
- type: Transform
- - uid: 2215
- components:
- - rot: 3.141592653589793 rad
- pos: 8.5,1.5
- parent: 1
- type: Transform
- - uid: 2216
- components:
- - rot: -1.5707963267948966 rad
- pos: -14.5,8.5
- parent: 1
- type: Transform
- - uid: 2217
- components:
- - rot: 3.141592653589793 rad
- pos: -12.5,10.5
- parent: 1
- type: Transform
- - uid: 2218
- components:
- - rot: 3.141592653589793 rad
- pos: -11.5,10.5
- parent: 1
- type: Transform
- - uid: 2219
- components:
- - pos: 3.5,-0.5
- parent: 1
- type: Transform
- - uid: 2220
- components:
- - pos: 3.5,0.5
- parent: 1
- type: Transform
- - uid: 2221
- components:
- - pos: 9.5,4.5
- parent: 1
- type: Transform
- - uid: 2222
- components:
- - pos: 3.5,1.5
- parent: 1
- type: Transform
- - uid: 2223
- components:
- - pos: 9.5,2.5
- parent: 1
- type: Transform
- - uid: 2224
- components:
- - pos: 3.5,2.5
- parent: 1
- type: Transform
- - uid: 2225
- components:
- - pos: -0.5,2.5
- parent: 1
- type: Transform
- - uid: 2226
- components:
- - pos: 0.5,2.5
- parent: 1
- type: Transform
- - uid: 2227
- components:
- - pos: 2.5,2.5
- parent: 1
- type: Transform
- - uid: 2228
- components:
- - pos: -1.5,-5.5
- parent: 1
- type: Transform
- - uid: 2229
- components:
- - pos: 2.5,-5.5
- parent: 1
- type: Transform
- - uid: 2230
- components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,13.5
- parent: 1
- type: Transform
- - uid: 2231
- components:
- - pos: 3.5,-4.5
- parent: 1
- type: Transform
- - uid: 2232
- components:
- - pos: 3.5,-3.5
- parent: 1
- type: Transform
- - uid: 2233
- components:
- - pos: -0.5,-5.5
- parent: 1
- type: Transform
- - uid: 2234
- components:
- - rot: -1.5707963267948966 rad
- pos: 14.5,13.5
- parent: 1
- type: Transform
- - uid: 2235
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,12.5
- parent: 1
- type: Transform
- - uid: 2236
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,10.5
- parent: 1
- type: Transform
- - uid: 2237
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,7.5
- parent: 1
- type: Transform
- - uid: 2238
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,5.5
- parent: 1
- type: Transform
- - uid: 2239
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,6.5
- parent: 1
- type: Transform
- - uid: 2240
- components:
- - rot: 1.5707963267948966 rad
- pos: 13.5,5.5
- parent: 1
- type: Transform
- - uid: 2241
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,8.5
- parent: 1
- type: Transform
- - uid: 2242
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,9.5
- parent: 1
- type: Transform
- - uid: 2243
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,11.5
- parent: 1
- type: Transform
- - uid: 2244
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,9.5
- parent: 1
- type: Transform
- - uid: 2245
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,6.5
- parent: 1
- type: Transform
- - uid: 2246
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,8.5
- parent: 1
- type: Transform
- - uid: 2247
- components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,9.5
- parent: 1
- type: Transform
- - uid: 2248
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,9.5
- parent: 1
- type: Transform
- - uid: 2249
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,9.5
- parent: 1
- type: Transform
- - uid: 2250
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,9.5
- parent: 1
- type: Transform
- - uid: 2251
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,8.5
- parent: 1
- type: Transform
- - uid: 2252
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,7.5
- parent: 1
- type: Transform
- - uid: 2253
- components:
- - rot: 3.141592653589793 rad
- pos: -6.5,6.5
- parent: 1
- type: Transform
- - uid: 2254
- components:
- - rot: 3.141592653589793 rad
- pos: -2.5,6.5
- parent: 1
- type: Transform
- - uid: 2255
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,6.5
- parent: 1
- type: Transform
- - uid: 2256
- components:
- - rot: 3.141592653589793 rad
- pos: -7.5,7.5
- parent: 1
- type: Transform
- - uid: 2257
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,1.5
- parent: 1
- type: Transform
- - uid: 2258
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,2.5
- parent: 1
- type: Transform
- - uid: 2259
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,0.5
- parent: 1
- type: Transform
- - uid: 2260
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,2.5
- parent: 1
- type: Transform
- - uid: 2261
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-0.5
- parent: 1
- type: Transform
- - uid: 2262
- components:
- - pos: -12.5,2.5
- parent: 1
- type: Transform
- - uid: 2263
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,-1.5
- parent: 1
- type: Transform
- - uid: 2264
- components:
- - rot: 1.5707963267948966 rad
- pos: -13.5,-5.5
- parent: 1
- type: Transform
- - uid: 2265
- components:
- - pos: -14.5,-4.5
- parent: 1
- type: Transform
- - uid: 2266
- components:
- - pos: -22.5,6.5
- parent: 1
- type: Transform
- - uid: 2267
- components:
- - pos: -20.5,6.5
- parent: 1
- type: Transform
- - uid: 2268
- components:
- - pos: -23.5,2.5
- parent: 1
- type: Transform
- - uid: 2269
- components:
- - pos: -23.5,1.5
- parent: 1
- type: Transform
- - uid: 2270
- components:
- - pos: -23.5,3.5
- parent: 1
- type: Transform
- - uid: 2271
- components:
- - pos: -23.5,5.5
- parent: 1
- type: Transform
- - uid: 2272
- components:
- - pos: -19.5,6.5
- parent: 1
- type: Transform
- - uid: 2273
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,-1.5
- parent: 1
- type: Transform
- - uid: 2274
- components:
- - rot: 1.5707963267948966 rad
- pos: -23.5,0.5
- parent: 1
- type: Transform
- - uid: 2275
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,-0.5
- parent: 1
- type: Transform
- - uid: 2276
- components:
- - rot: 1.5707963267948966 rad
- pos: -22.5,-1.5
- parent: 1
- type: Transform
- - uid: 2277
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,-1.5
- parent: 1
- type: Transform
- - uid: 2278
- components:
- - pos: -18.5,0.5
- parent: 1
- type: Transform
- - uid: 2279
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,2.5
- parent: 1
- type: Transform
- - uid: 2280
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,18.5
- parent: 1
- type: Transform
- - uid: 2281
- components:
- - pos: 18.5,17.5
- parent: 1
- type: Transform
- - uid: 2282
- components:
- - pos: 16.5,18.5
- parent: 1
- type: Transform
- - uid: 2283
- components:
- - pos: 17.5,18.5
- parent: 1
- type: Transform
- - uid: 2284
- components:
- - rot: 1.5707963267948966 rad
- pos: 15.5,13.5
- parent: 1
- type: Transform
- - uid: 2285
- components:
- - pos: 15.5,18.5
- parent: 1
- type: Transform
- - uid: 2286
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,-1.5
- parent: 1
- type: Transform
- - uid: 2287
- components:
- - rot: 1.5707963267948966 rad
- pos: -23.5,-0.5
- parent: 1
- type: Transform
- - uid: 2288
- components:
- - rot: 1.5707963267948966 rad
- pos: -19.5,-1.5
- parent: 1
- type: Transform
- - uid: 2289
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,1.5
- parent: 1
- type: Transform
- - uid: 2290
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,2.5
- parent: 1
- type: Transform
- - uid: 2291
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,3.5
- parent: 1
- type: Transform
- - uid: 2292
- components:
- - rot: 1.5707963267948966 rad
- pos: -18.5,5.5
- parent: 1
- type: Transform
- - uid: 2293
- components:
- - rot: 1.5707963267948966 rad
- pos: -15.5,2.5
- parent: 1
- type: Transform
- - uid: 2294
- components:
- - rot: 1.5707963267948966 rad
- pos: -17.5,2.5
- parent: 1
- type: Transform
- - uid: 2295
- components:
- - pos: 16.5,11.5
- parent: 1
- type: Transform
- - uid: 2296
- components:
- - pos: 18.5,16.5
- parent: 1
- type: Transform
- - uid: 2297
- components:
- - pos: 18.5,14.5
- parent: 1
- type: Transform
- - uid: 2298
- components:
- - pos: 15.5,14.5
- parent: 1
- type: Transform
- - uid: 2299
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,14.5
- parent: 1
- type: Transform
- - uid: 2300
- components:
- - rot: 3.141592653589793 rad
- pos: 14.5,17.5
- parent: 1
- type: Transform
- - uid: 2301
- components:
- - rot: 3.141592653589793 rad
- pos: -19.5,10.5
- parent: 1
- type: Transform
- - uid: 2302
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,9.5
- parent: 1
- type: Transform
- - uid: 2303
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,8.5
- parent: 1
- type: Transform
- - uid: 2304
- components:
- - rot: 3.141592653589793 rad
- pos: -20.5,7.5
- parent: 1
- type: Transform
- - uid: 2305
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,16.5
- parent: 1
- type: Transform
- - uid: 2306
- components:
- - pos: -11.5,18.5
- parent: 1
- type: Transform
- - uid: 2307
- components:
- - pos: -8.5,18.5
- parent: 1
- type: Transform
- - uid: 2308
- components:
- - pos: -7.5,18.5
- parent: 1
- type: Transform
- - uid: 2309
- components:
- - rot: 3.141592653589793 rad
- pos: 17.5,14.5
- parent: 1
- type: Transform
- - uid: 2310
- components:
- - pos: -4.5,-5.5
- parent: 1
- type: Transform
- - uid: 2311
- components:
- - pos: -9.5,-5.5
- parent: 1
- type: Transform
- - uid: 2312
- components:
- - pos: -5.5,-5.5
- parent: 1
- type: Transform
- - uid: 2313
- components:
- - pos: -8.5,-5.5
- parent: 1
- type: Transform
- - uid: 2314
- components:
- - rot: 1.5707963267948966 rad
- pos: -10.5,-1.5
- parent: 1
- type: Transform
- - uid: 2315
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,-1.5
- parent: 1
- type: Transform
- - uid: 2316
- components:
- - rot: 1.5707963267948966 rad
- pos: -12.5,-1.5
- parent: 1
- type: Transform
- - uid: 2317
- components:
- - pos: -4.5,-4.5
- parent: 1
- type: Transform
- - uid: 2320
- components:
- - pos: -6.5,19.5
- parent: 1
- type: Transform
- - uid: 2414
- components:
- - pos: -6.5,20.5
- parent: 1
- type: Transform
-- proto: WallSolidDiagonal
- entities:
- - uid: 1735
- components:
- - pos: -6.5,21.5
- parent: 1
- type: Transform
- - uid: 2318
- components:
- - pos: -18.5,14.5
- parent: 1
- type: Transform
- - uid: 2319
- components:
- - pos: -12.5,18.5
- parent: 1
- type: Transform
- - uid: 2322
- components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,35.5
- parent: 1
- type: Transform
- - uid: 2323
- components:
- - pos: 5.5,35.5
- parent: 1
- type: Transform
- - uid: 2324
- components:
- - pos: 1.5,25.5
- parent: 1
- type: Transform
- - uid: 2325
- components:
- - rot: 3.141592653589793 rad
- pos: 13.5,1.5
- parent: 1
- type: Transform
- - uid: 2326
- components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-1.5
- parent: 1
- type: Transform
- - uid: 2327
- components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-5.5
- parent: 1
- type: Transform
- - uid: 2328
- components:
- - rot: 3.141592653589793 rad
- pos: 15.5,5.5
- parent: 1
- type: Transform
- - uid: 2329
- components:
- - pos: -23.5,6.5
- parent: 1
- type: Transform
- - uid: 2330
- components:
- - rot: -1.5707963267948966 rad
- pos: 18.5,18.5
- parent: 1
- type: Transform
- - uid: 2331
- components:
- - rot: 1.5707963267948966 rad
- pos: -23.5,-1.5
- parent: 1
- type: Transform
- - uid: 2332
- components:
- - pos: -20.5,10.5
- parent: 1
- type: Transform
- - uid: 2333
- components:
- - rot: 3.141592653589793 rad
- pos: 18.5,11.5
- parent: 1
- type: Transform
- - uid: 2334
- components:
- - rot: 1.5707963267948966 rad
- pos: -14.5,-5.5
- parent: 1
- type: Transform
- - uid: 2386
- components:
- - pos: -2.5,23.5
- parent: 1
- type: Transform
-- proto: WallWeaponCapacitorRecharger
- entities:
- - uid: 149
- components:
- - pos: 9.5,11.5
- parent: 1
- type: Transform
- - uid: 150
- components:
- - pos: 9.5,10.5
- parent: 1
- type: Transform
-- proto: WaterCooler
- entities:
- - uid: 2335
- components:
- - pos: -8.5,3.5
- parent: 1
- type: Transform
-- proto: WeaponCapacitorRecharger
- entities:
- - uid: 2336
- components:
- - pos: -13.5,7.5
- parent: 1
- type: Transform
- - uid: 2337
- components:
- - pos: 11.5,8.5
- parent: 1
- type: Transform
- - uid: 2495
- components:
- - pos: 3.5,15.5
- parent: 1
- type: Transform
-- proto: WeaponDisabler
- entities:
- - uid: 13
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 671
- components:
- - flags: InContainer
- type: MetaData
- - parent: 669
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 684
- components:
- - flags: InContainer
- type: MetaData
- - parent: 678
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 691
- components:
- - flags: InContainer
- type: MetaData
- - parent: 687
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 702
- components:
- - flags: InContainer
- type: MetaData
- - parent: 696
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 719
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: WeaponPulseCarbine
- entities:
- - uid: 2338
- components:
- - pos: 13.48761,8.662255
- parent: 1
- type: Transform
- - uid: 2339
- components:
- - pos: 13.48761,8.537255
- parent: 1
- type: Transform
-- proto: WeaponPulsePistol
- entities:
- - uid: 720
- components:
- - flags: InContainer
- type: MetaData
- - parent: 705
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 2340
- components:
- - pos: 13.378235,8.36538
- parent: 1
- type: Transform
- - uid: 2341
- components:
- - pos: 13.58136,8.36538
- parent: 1
- type: Transform
-- proto: WeaponPulseRifle
- entities:
- - uid: 2342
- components:
- - pos: 12.534485,8.724755
- parent: 1
- type: Transform
- - uid: 2343
- components:
- - pos: 12.534485,8.568505
- parent: 1
- type: Transform
- - uid: 2344
- components:
- - pos: 12.534485,8.381005
- parent: 1
- type: Transform
-- proto: WeaponRifleLecter
- entities:
- - uid: 2345
- components:
- - pos: 14.440735,8.506005
- parent: 1
- type: Transform
- - uid: 2346
- components:
- - pos: 14.440735,8.381005
- parent: 1
- type: Transform
- - uid: 2347
- components:
- - pos: 14.458244,8.619274
- parent: 1
- type: Transform
-- proto: WeaponSubMachineGunWt550
- entities:
- - uid: 2348
- components:
- - pos: 13.51886,6.6310053
- parent: 1
- type: Transform
- - uid: 2349
- components:
- - pos: 13.51886,6.5216303
- parent: 1
- type: Transform
- - uid: 2350
- components:
- - pos: 13.51886,6.4278803
- parent: 1
- type: Transform
-- proto: WeldingFuelTankHighCapacity
- entities:
- - uid: 2351
- components:
- - pos: -10.5,7.5
- parent: 1
- type: Transform
-- proto: WetFloorSign
- entities:
- - uid: 2352
- components:
- - pos: 12.381899,3.9263859
- parent: 1
- type: Transform
- - uid: 2353
- components:
- - pos: 12.569399,3.9263859
- parent: 1
- type: Transform
- - uid: 2354
- components:
- - pos: 12.741274,3.9420109
- parent: 1
- type: Transform
-- proto: WindoorSecureArmoryLocked
- entities:
- - uid: 2355
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,7.5
- parent: 1
- type: Transform
-- proto: WindoorSecureChemistryLocked
- entities:
- - uid: 2356
- components:
- - pos: -4.5,2.5
- parent: 1
- type: Transform
- - uid: 2357
- components:
- - rot: 3.141592653589793 rad
- pos: -4.5,2.5
- parent: 1
- type: Transform
-- proto: WindoorSecureCommandLocked
- entities:
- - uid: 2358
- components:
- - pos: -4.5,15.5
- parent: 1
- type: Transform
- - uid: 2359
- components:
- - pos: 4.5,24.5
- parent: 1
- type: Transform
- - uid: 2360
- components:
- - pos: 2.5,24.5
- parent: 1
- type: Transform
- - uid: 2361
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,11.5
- parent: 1
- type: Transform
-- proto: WindoorSecureEngineeringLocked
- entities:
- - uid: 2362
- components:
- - pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 2363
- components:
- - pos: -7.5,9.5
- parent: 1
- type: Transform
- - uid: 2364
- components:
- - pos: -8.5,13.5
- parent: 1
- type: Transform
- - uid: 2365
- components:
- - pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 2366
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,12.5
- parent: 1
- type: Transform
- - uid: 2367
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-0.5
- parent: 1
- type: Transform
-- proto: WindoorSecureMedicalLocked
- entities:
- - uid: 2368
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,0.5
- parent: 1
- type: Transform
- - uid: 2369
- components:
- - pos: -21.5,2.5
- parent: 1
- type: Transform
- - uid: 2370
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,-3.5
- parent: 1
- type: Transform
-- proto: Window
- entities:
- - uid: 1461
- components:
- - pos: -3.5,21.5
- parent: 1
- type: Transform
- - uid: 1462
- components:
- - pos: -5.5,21.5
- parent: 1
- type: Transform
- - uid: 1732
- components:
- - pos: -4.5,21.5
- parent: 1
- type: Transform
-- proto: WindowReinforcedDirectional
- entities:
- - uid: 1408
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,22.5
- parent: 1
- type: Transform
- - uid: 1409
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,20.5
- parent: 1
- type: Transform
- - uid: 1872
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,22.5
- parent: 1
- type: Transform
- - uid: 1874
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,20.5
- parent: 1
- type: Transform
- - uid: 2371
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,13.5
- parent: 1
- type: Transform
- - uid: 2372
- components:
- - rot: 1.5707963267948966 rad
- pos: -11.5,11.5
- parent: 1
- type: Transform
- - uid: 2373
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,9.5
- parent: 1
- type: Transform
- - uid: 2374
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,9.5
- parent: 1
- type: Transform
- - uid: 2375
- components:
- - rot: 1.5707963267948966 rad
- pos: -7.5,13.5
- parent: 1
- type: Transform
- - uid: 2376
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,13.5
- parent: 1
- type: Transform
- - uid: 2377
- components:
- - rot: 3.141592653589793 rad
- pos: -5.5,8.5
- parent: 1
- type: Transform
- - uid: 2378
- components:
- - pos: -5.5,7.5
- parent: 1
- type: Transform
- - uid: 2379
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,8.5
- parent: 1
- type: Transform
- - uid: 2380
- components:
- - pos: -3.5,7.5
- parent: 1
- type: Transform
- - uid: 2381
- components:
- - rot: -1.5707963267948966 rad
- pos: -8.5,-0.5
- parent: 1
- type: Transform
- - uid: 2382
- components:
- - rot: 1.5707963267948966 rad
- pos: -6.5,-0.5
- parent: 1
- type: Transform
- - uid: 2383
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,1.5
- parent: 1
- type: Transform
- - uid: 2384
- components:
- - rot: -1.5707963267948966 rad
- pos: -12.5,-0.5
- parent: 1
- type: Transform
- - uid: 2385
- components:
- - pos: -20.5,2.5
- parent: 1
- type: Transform
- - uid: 2388
- components:
- - pos: -3.5,15.5
- parent: 1
- type: Transform
- - uid: 2389
- components:
- - pos: -5.5,15.5
- parent: 1
- type: Transform
- - uid: 2392
- components:
- - pos: 0.5,17.5
- parent: 1
- type: Transform
- - uid: 2393
- components:
- - pos: -1.5,17.5
- parent: 1
- type: Transform
- - uid: 2394
- components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 1
- type: Transform
- - uid: 2395
- components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,24.5
- parent: 1
- type: Transform
- - uid: 2396
- components:
- - rot: 3.141592653589793 rad
- pos: -0.5,1.5
- parent: 1
- type: Transform
- - uid: 2397
- components:
- - rot: 3.141592653589793 rad
- pos: 0.5,1.5
- parent: 1
- type: Transform
- - uid: 2398
- components:
- - pos: 0.5,-1.5
- parent: 1
- type: Transform
- - uid: 2399
- components:
- - pos: -0.5,-1.5
- parent: 1
- type: Transform
- - uid: 2400
- components:
- - pos: 2.5,-1.5
- parent: 1
- type: Transform
- - uid: 2401
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,1.5
- parent: 1
- type: Transform
- - uid: 2402
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 1
- type: Transform
- - uid: 2403
- components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
- parent: 1
- type: Transform
- - uid: 2404
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-3.5
- parent: 1
- type: Transform
- - uid: 2405
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 1
- type: Transform
- - uid: 2406
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,8.5
- parent: 1
- type: Transform
- - uid: 2407
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,6.5
- parent: 1
- type: Transform
- - uid: 2408
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,8.5
- parent: 1
- type: Transform
- - uid: 2409
- components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,6.5
- parent: 1
- type: Transform
- - uid: 2410
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,12.5
- parent: 1
- type: Transform
- - uid: 2411
- components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,10.5
- parent: 1
- type: Transform
- - uid: 2412
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,-2.5
- parent: 1
- type: Transform
- - uid: 2413
- components:
- - rot: -1.5707963267948966 rad
- pos: -9.5,-4.5
- parent: 1
- type: Transform
-- proto: YellowOxygenTankFilled
- entities:
- - uid: 14
- components:
- - flags: InContainer
- type: MetaData
- - parent: 2
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-...
diff --git a/Resources/Maps/Shuttles/ShuttleEvent/honki.yml b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml
index 0fca6a8ba9..ade69b06ca 100644
--- a/Resources/Maps/Shuttles/ShuttleEvent/honki.yml
+++ b/Resources/Maps/Shuttles/ShuttleEvent/honki.yml
@@ -16,7 +16,7 @@ entities:
name: Honkomother
- type: Transform
pos: 1.212189,-1.7551664
- parent: invalid
+ parent: 313
- type: MapGrid
chunks:
0,0:
@@ -168,13 +168,16 @@ entities:
1,0:
1: 56
1,-1:
- 0: 30576
+ 2: 4112
+ 0: 10016
+ 3: 16448
0,-2:
0: 48051
-1,-2:
0: 48056
-1,-1:
- 0: 56784
+ 3: 16
+ 0: 56768
0,-3:
1: 32768
1,-3:
@@ -185,7 +188,8 @@ entities:
-2,0:
1: 130
-2,-1:
- 0: 52928
+ 0: 52800
+ 3: 128
-2,-2:
1: 8708
0: 34944
@@ -209,6 +213,14 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
immutable: True
moles:
@@ -224,9 +236,76 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
+ - uid: 313
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
- proto: AirCanister
entities:
- uid: 2
@@ -237,6 +316,8 @@ entities:
parent: 1
- type: Physics
bodyType: Static
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
- uid: 3
components:
- type: Transform
@@ -245,7 +326,9 @@ entities:
parent: 1
- type: Physics
bodyType: Static
-- proto: AirlockShuttle
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+- proto: AirlockClownContractorShuttleLocked
entities:
- uid: 4
components:
@@ -280,7 +363,7 @@ entities:
- uid: 7
components:
- type: Transform
- pos: -1.4946816,-0.2775966
+ pos: 2.268822,0.6392218
parent: 1
- proto: BananiumDoor
entities:
@@ -296,6 +379,9 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,-1.5
parent: 1
+ - type: Door
+ secondsUntilStateChange: -131.67447
+ state: Opening
- uid: 10
components:
- type: Transform
@@ -381,6 +467,15 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: BorgModuleClowning
+ entities:
+ - uid: 379
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: CableApcExtension
entities:
- uid: 31
@@ -836,8 +931,16 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- 0
- 0
- 0
@@ -854,11 +957,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 25
- - 23
- - 22
- - 24
- 261
+ - 22
+ - 23
+ - 25
+ - 24
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -868,6 +971,52 @@ entities:
- type: Transform
pos: 4.5,-2.5
parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 30
+ - 28
+ - 27
+ - 315
+ - 29
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 1
- type: EntityStorage
air:
volume: 200
@@ -886,43 +1035,32 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 29
- - 315
- - 27
- - 28
- - 30
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 115
- components:
- - type: Transform
- pos: 6.5,-2.5
- parent: 1
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 125
- - 124
- - 123
- - 122
- - 121
- - 126
- - 120
- - 119
- - 118
- - 117
+ - 379
- 116
+ - 117
+ - 118
+ - 119
+ - 120
+ - 126
+ - 121
+ - 122
+ - 123
+ - 124
+ - 125
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -932,27 +1070,68 @@ entities:
- type: Transform
pos: 6.5,-0.5
parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 128
- - 129
- - 130
- - 131
- - 132
- - 133
- - 134
- - 135
- - 138
- - 136
- 137
+ - 136
+ - 138
+ - 135
+ - 134
+ - 133
+ - 132
+ - 131
+ - 130
+ - 129
+ - 380
+ - 128
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
+- proto: CrayonRainbow
+ entities:
+ - uid: 382
+ components:
+ - type: Transform
+ pos: -1.2894332,-0.29621565
+ parent: 1
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
- proto: DehydratedSpaceCarp
entities:
- uid: 24
@@ -962,6 +1141,9 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
- uid: 29
components:
- type: Transform
@@ -969,6 +1151,9 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
- proto: DeviceQuantumSpinInverter
entities:
- uid: 25
@@ -1008,6 +1193,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: FaxMachineBase
+ entities:
+ - uid: 383
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
- proto: FloorBananiumEntity
entities:
- uid: 139
@@ -1106,12 +1298,12 @@ entities:
- uid: 144
components:
- type: Transform
- pos: -1.5971907,0.54355335
+ pos: 2.7644207,0.14128423
parent: 1
- uid: 145
components:
- type: Transform
- pos: -1.405974,0.27368832
+ pos: 2.2753637,0.14128423
parent: 1
- proto: FoodCakeClown
entities:
@@ -1909,6 +2101,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: PaperBin10
+ entities:
+ - uid: 385
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
- proto: PlasmaWindow
entities:
- uid: 262
@@ -2223,6 +2422,11 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+ - uid: 381
+ components:
+ - type: Transform
+ pos: -1.6230972,-0.35871565
+ parent: 1
- proto: SpawnClownSpider
entities:
- uid: 312
@@ -2230,11 +2434,6 @@ entities:
- type: Transform
pos: -4.5,-4.5
parent: 1
- - uid: 313
- components:
- - type: Transform
- pos: -2.5,-5.5
- parent: 1
- uid: 314
components:
- type: Transform
@@ -2280,17 +2479,43 @@ entities:
parent: 1
- type: Lock
locked: False
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 96
- 95
- - 97
- - 94
+ - 96
- 98
+ - 94
+ - 97
- uid: 99
components:
- type: Transform
@@ -2314,15 +2539,41 @@ entities:
parent: 1
- type: Lock
locked: False
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 104
- - 105
- 106
+ - 105
+ - 104
- proto: TablePlasmaGlass
entities:
- uid: 317
@@ -2663,4 +2914,13 @@ entities:
- type: Transform
pos: 3.5,-2.5
parent: 1
+- proto: WhoopieCushion
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
...
diff --git a/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
index 7b6812c493..2770768f42 100644
--- a/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
+++ b/Resources/Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
@@ -26,7 +26,7 @@ entities:
name: SRV "Salami-Salami"
- type: Transform
pos: -0.5104167,-0.5
- parent: invalid
+ parent: 71
- type: MapGrid
chunks:
0,0:
@@ -86,34 +86,59 @@ entities:
data:
tiles:
0,0:
- 0: 7
- 1: 128
+ 0: 1
+ 1: 6
+ 2: 128
0,-1:
- 0: 29303
+ 1: 29303
-1,0:
- 1: 129
+ 2: 129
-1,-1:
- 0: 28686
- 1: 272
+ 1: 28686
+ 2: 272
-1,-2:
- 1: 28
- 0: 65024
+ 2: 28
+ 1: 65024
-1,-3:
- 1: 49152
+ 2: 49152
0,-3:
- 1: 61440
+ 2: 61440
0,-2:
- 0: 32624
- 1: 8
+ 1: 32624
+ 2: 8
1,-3:
- 1: 4096
+ 2: 4096
1,-2:
- 1: 65
- 0: 13056
+ 2: 65
+ 1: 12544
+ 3: 512
1,-1:
- 0: 3
- 1: 320
+ 1: 3
+ 2: 320
uniqueMixes:
+ - volume: 2500
+ temperature: 293.14978
+ moles:
+ - 21.813705
+ - 82.06108
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -129,6 +154,14 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
immutable: True
moles:
@@ -144,10 +177,62 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- type: NavMap
+ - uid: 71
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AirlockChefContractorShuttleLocked
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
- proto: AirlockShuttle
entities:
- uid: 2
@@ -156,12 +241,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,-4.5
parent: 1
- - uid: 3
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 1
- proto: APCBasic
entities:
- uid: 4
@@ -169,6 +248,13 @@ entities:
- type: Transform
pos: 2.5,-1.5
parent: 1
+- proto: ATM
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
- proto: AtmosDeviceFanTiny
entities:
- uid: 5
@@ -374,73 +460,21 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-0.5
parent: 1
-- proto: ClosetMaintenance
- entities:
- - uid: 71
- components:
- - type: Transform
- pos: 0.5,0.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14786
- moles:
- - 1.8856695
- - 7.0937095
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 80
- - 76
- - 73
- - 74
- - 78
- - 81
- - 77
- - 72
- - 75
- - 79
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: ClothingHeadHatCasa
entities:
- uid: 72
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingHeadHelmetEVALarge
- entities:
- - uid: 82
- components:
- - type: Transform
- pos: 0.30235916,-0.6487955
- parent: 1
- proto: ClothingOuterDameDane
entities:
- uid: 79
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -449,16 +483,16 @@ entities:
- uid: 73
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingOuterHardsuitAncientEVA
+- proto: ClothingOuterHardsuitBasic
entities:
- - uid: 74
+ - uid: 90
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -467,7 +501,7 @@ entities:
- uid: 75
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -476,7 +510,7 @@ entities:
- uid: 76
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -492,10 +526,17 @@ entities:
- uid: 77
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
- proto: ComputerShuttle
entities:
- uid: 84
@@ -516,8 +557,16 @@ entities:
immutable: False
temperature: 293.14783
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- 0
- 0
- 0
@@ -534,36 +583,36 @@ entities:
showEnts: False
occludes: True
ents:
- - 11
- - 29
- - 24
- - 13
- - 25
- - 37
- - 33
- - 32
- - 38
- - 16
- - 15
- - 19
- - 17
- - 18
- - 20
- - 40
- - 14
- - 22
- - 30
- - 21
- - 34
- - 23
- - 35
- - 28
- - 36
- - 27
- - 39
- - 31
- - 26
- 12
+ - 26
+ - 31
+ - 39
+ - 27
+ - 36
+ - 28
+ - 35
+ - 23
+ - 34
+ - 21
+ - 30
+ - 22
+ - 14
+ - 40
+ - 20
+ - 18
+ - 17
+ - 19
+ - 15
+ - 16
+ - 38
+ - 32
+ - 33
+ - 37
+ - 25
+ - 13
+ - 24
+ - 29
+ - 11
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -595,6 +644,15 @@ entities:
rot: 3.141592653589793 rad
pos: 1.8425496,-6.086302
parent: 1
+- proto: Eftpos
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: EggySeeds
entities:
- uid: 89
@@ -607,16 +665,25 @@ entities:
- uid: 78
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: FolderSpawner
+- proto: FaxMachineBase
entities:
- - uid: 90
+ - uid: 126
components:
- type: Transform
- pos: 2.6497245,-0.5822141
+ pos: 2.5,-0.5
+ parent: 1
+ - type: FaxMachine
+ name: Шаттл Бистро
+- proto: FolderSpawner
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 2.6700735,-0.7461357
parent: 1
- proto: FoodBowlBig
entities:
@@ -1066,6 +1133,13 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,0.5
parent: 1
+- proto: GrowingPot
+ entities:
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
- proto: Gyroscope
entities:
- uid: 123
@@ -1088,13 +1162,6 @@ entities:
- type: Transform
pos: 1.5,-1.5
parent: 1
-- proto: hydroponicsSoil
- entities:
- - uid: 126
- components:
- - type: Transform
- pos: 5.5,-4.5
- parent: 1
- proto: HydroponicsToolClippers
entities:
- uid: 127
@@ -1122,7 +1189,7 @@ entities:
- uid: 80
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -1147,6 +1214,9 @@ entities:
- type: Transform
pos: 0.5,-2.5
parent: 1
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -1165,6 +1235,14 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- type: ContainerContainer
containers:
entity_storage: !type:Container
@@ -1191,6 +1269,67 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: LockerSteel
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14703
+ moles:
+ - 1.8968438
+ - 7.1357465
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 233
+ - 133
+ - 80
+ - 76
+ - 73
+ - 78
+ - 81
+ - 77
+ - 72
+ - 79
+ - 75
+ - 185
+ - 90
+ - 82
+ - 147
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: MaterialSheetMeat
entities:
- uid: 39
@@ -1212,25 +1351,26 @@ entities:
- uid: 81
components:
- type: Transform
- parent: 71
+ parent: 74
- type: Physics
canCollide: False
- type: InsideEntityStorage
- proto: NoticeBoard
entities:
- - uid: 133
+ - uid: 234
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: -0.5,-2.5
parent: 1
- proto: Pen
entities:
- - uid: 232
+ - uid: 82
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.27949,-0.47790605
- parent: 1
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: PlushieVox
entities:
- uid: 134
@@ -1238,6 +1378,9 @@ entities:
- type: Transform
pos: -0.5571752,-4.2839594
parent: 1
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
- proto: PosterLegitFruitBowl
entities:
- uid: 135
@@ -1333,8 +1476,10 @@ entities:
- uid: 147
components:
- type: Transform
- pos: 2.6184745,-0.09783912
- parent: 1
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: Shovel
entities:
- uid: 148
@@ -1350,6 +1495,7 @@ entities:
pos: -0.5,-4.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 160
- uid: 150
@@ -1358,6 +1504,7 @@ entities:
pos: -0.5,-3.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 160
- uid: 151
@@ -1366,6 +1513,7 @@ entities:
pos: -0.5,-5.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 160
- uid: 152
@@ -1374,6 +1522,7 @@ entities:
pos: -3.5,-4.5
parent: 1
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- 160
- proto: ShuttleWindow
@@ -1459,7 +1608,7 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-6.5
parent: 1
-- proto: soda_dispenser
+- proto: SodaDispenser
entities:
- uid: 164
components:
@@ -1467,6 +1616,17 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,-6.5
parent: 1
+- proto: SpaceCash2500
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ parent: 74
+ - type: Stack
+ count: 7500
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: StoolBar
entities:
- uid: 165
@@ -1603,8 +1763,10 @@ entities:
- uid: 185
components:
- type: Transform
- pos: 0.5731925,-0.16962886
- parent: 1
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: TravelingChefSpawner
entities:
- uid: 186
@@ -1612,18 +1774,6 @@ entities:
- type: Transform
pos: 1.5,-0.5
parent: 1
- - uid: 187
- components:
- - type: Transform
- pos: 4.5,-5.5
- parent: 1
-- proto: VendingMachineChang
- entities:
- - uid: 188
- components:
- - type: Transform
- pos: 2.5,0.5
- parent: 1
- proto: WallShuttle
entities:
- uid: 189
diff --git a/Resources/Maps/ERT/ERTStation.yml b/Resources/Maps/White/ERTStation.yml
similarity index 97%
rename from Resources/Maps/ERT/ERTStation.yml
rename to Resources/Maps/White/ERTStation.yml
index 9e4b93eeb4..c1676f2968 100644
--- a/Resources/Maps/ERT/ERTStation.yml
+++ b/Resources/Maps/White/ERTStation.yml
@@ -22,6 +22,7 @@ entities:
name: ERT station "Theta-19"
- type: Transform
- type: Map
+ mapPaused: True
- type: PhysicsMap
- type: GridTree
- type: MovedGrids
@@ -149,13 +150,13 @@ entities:
color: '#00B400B2'
id: Bot
decals:
- 1510: 41,73
- 1511: 40,73
- 1512: 39,72
- 1513: 43,76
- 1514: 45,73
- 1515: 46,73
- 1516: 47,72
+ 1509: 41,73
+ 1510: 40,73
+ 1511: 39,72
+ 1512: 43,76
+ 1513: 45,73
+ 1514: 46,73
+ 1515: 47,72
- node:
color: '#80C71FB2'
id: Bot
@@ -175,7 +176,7 @@ entities:
1082: 20,49
1129: 16,48
1130: 15,48
- 1476: 53,68
+ 1475: 53,68
- node:
color: '#DE3A3AB2'
id: Bot
@@ -213,7 +214,7 @@ entities:
1176: 36,47
1177: 34,48
1178: 34,47
- 1477: 54,68
+ 1476: 54,68
- node:
color: '#EFB341B2'
id: Bot
@@ -245,19 +246,19 @@ entities:
169: 31,22
170: 31,20
907: 23,44
- 1478: 55,68
- 1843: 36,69
- 1847: 58,40
+ 1477: 55,68
+ 1837: 36,69
+ 1841: 58,40
- node:
color: '#EFB346B2'
id: Bot
decals:
- 1932: 41,18
+ 1926: 41,18
- node:
color: '#334E6DB2'
id: BotGreyscale
decals:
- 1479: 54,66
+ 1478: 54,66
- node:
color: '#52B4E9B2'
id: BotGreyscale
@@ -291,31 +292,31 @@ entities:
820: 12,44
821: 16,44
822: 16,42
- 1480: 56,68
- 1490: 51,68
+ 1479: 56,68
+ 1489: 51,68
- node:
color: '#8932B8B2'
id: BotGreyscale
decals:
- 2068: 33,54
- 2070: 37,54
- 2071: 36,54
+ 2059: 33,54
+ 2061: 37,54
+ 2062: 36,54
- node:
color: '#9FED58B2'
id: BotGreyscale
decals:
- 1481: 53,66
+ 1480: 53,66
- node:
color: '#D381C9B2'
id: BotGreyscale
decals:
- 1482: 55,66
+ 1481: 55,66
- node:
color: '#D4D4D4B2'
id: BotGreyscale
decals:
- 1483: 56,66
- 1489: 51,69
+ 1482: 56,66
+ 1488: 51,69
- node:
color: '#A46106B2'
id: BotLeft
@@ -362,18 +363,18 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 1468: 51,54
- 1469: 53,54
+ 1467: 51,54
+ 1468: 53,54
- node:
color: '#00B400B2'
id: Box
decals:
- 1428: 56,52
- 1429: 55,52
- 1430: 51,52
- 1431: 50,52
- 1432: 46,48
- 1441: 46,47
+ 1427: 56,52
+ 1428: 55,52
+ 1429: 51,52
+ 1430: 50,52
+ 1431: 46,48
+ 1440: 46,47
- node:
color: '#80C71FB2'
id: Box
@@ -415,7 +416,7 @@ entities:
904: 18,42
905: 19,42
906: 20,42
- 1844: 37,69
+ 1838: 37,69
- node:
color: '#00FFFF66'
id: BoxGreyscale
@@ -428,7 +429,7 @@ entities:
color: '#334E6DB2'
id: BoxGreyscale
decals:
- 1557: 39,67
+ 1556: 39,67
- node:
color: '#52B4E9B2'
id: BoxGreyscale
@@ -446,67 +447,67 @@ entities:
color: '#8932B8B2'
id: BoxGreyscale
decals:
- 2069: 33,55
+ 2060: 33,55
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 1442: 49,57
+ 1441: 49,57
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 1443: 48,57
- 1444: 47,56
+ 1442: 48,57
+ 1443: 47,56
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 1447: 49,54
+ 1446: 49,54
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 1445: 47,55
- 1446: 48,54
+ 1444: 47,55
+ 1445: 48,54
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
- 1450: 48,56
+ 1449: 48,56
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
- 1451: 48,55
+ 1450: 48,55
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 1448: 49,55
- 1449: 49,56
+ 1447: 49,55
+ 1448: 49,56
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
- 1584: 53,61
+ 1583: 53,61
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 1334: 39,65
- 1571: 46,61
+ 1333: 39,65
+ 1570: 46,61
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
1224: 24,36
- 2059: 25,21
+ 2053: 25,21
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndW
decals:
- 1575: 43,59
+ 1574: 43,59
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
@@ -516,12 +517,12 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 1592: 46,59
+ 1591: 46,59
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSe
decals:
- 1370: 41,63
+ 1369: 41,63
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSw
@@ -541,25 +542,25 @@ entities:
1218: 27,39
1219: 27,40
1268: 41,45
- 1342: 51,65
- 1354: 41,62
- 1355: 41,61
- 1356: 41,60
- 1357: 41,59
- 1358: 41,58
- 1359: 41,57
- 1360: 41,56
- 1361: 41,55
- 1362: 41,54
- 1363: 41,53
- 1364: 41,52
- 1365: 41,51
- 1366: 41,50
- 1367: 41,49
- 1368: 41,48
- 1369: 41,47
- 1583: 53,59
- 1585: 53,60
+ 1341: 51,65
+ 1353: 41,62
+ 1354: 41,61
+ 1355: 41,60
+ 1356: 41,59
+ 1357: 41,58
+ 1358: 41,57
+ 1359: 41,56
+ 1360: 41,55
+ 1361: 41,54
+ 1362: 41,53
+ 1363: 41,52
+ 1364: 41,51
+ 1365: 41,50
+ 1366: 41,49
+ 1367: 41,48
+ 1368: 41,47
+ 1582: 53,59
+ 1584: 53,60
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -584,37 +585,37 @@ entities:
1285: 56,44
1286: 57,44
1287: 58,44
- 1335: 40,65
- 1336: 41,65
- 1337: 42,65
+ 1334: 40,65
+ 1335: 41,65
+ 1336: 42,65
+ 1337: 43,65
1338: 43,65
- 1339: 43,65
- 1340: 44,65
- 1341: 48,65
- 1573: 45,59
- 1574: 44,59
- 1586: 52,61
- 1587: 51,61
- 1588: 50,61
- 1589: 49,61
- 1590: 48,61
- 1591: 47,61
+ 1339: 44,65
+ 1340: 48,65
+ 1572: 45,59
+ 1573: 44,59
+ 1585: 52,61
+ 1586: 51,61
+ 1587: 50,61
+ 1588: 49,61
+ 1589: 48,61
+ 1590: 47,61
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 1760: 60,44
- 1761: 61,44
- 1762: 62,44
- 1763: 63,44
- 1764: 67,44
- 1765: 71,44
- 1766: 72,44
- 1767: 73,44
- 1768: 75,44
- 1769: 74,44
- 1770: 76,44
+ 1759: 60,44
+ 1760: 61,44
+ 1761: 62,44
+ 1762: 63,44
+ 1763: 67,44
+ 1764: 71,44
+ 1765: 72,44
+ 1766: 73,44
+ 1767: 75,44
+ 1768: 74,44
+ 1769: 76,44
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
@@ -648,42 +649,42 @@ entities:
1301: 45,42
1302: 44,42
1303: 43,42
- 1343: 51,63
+ 1342: 51,63
+ 1343: 50,63
1344: 50,63
- 1345: 50,63
- 1346: 49,63
- 1347: 48,63
- 1348: 47,63
- 1349: 46,63
- 1350: 45,63
- 1351: 44,63
- 1352: 43,63
- 1353: 42,63
- 1576: 44,59
- 1577: 45,59
- 1578: 46,59
- 1579: 47,59
- 1580: 48,59
- 1581: 49,59
- 1582: 50,59
+ 1345: 49,63
+ 1346: 48,63
+ 1347: 47,63
+ 1348: 46,63
+ 1349: 45,63
+ 1350: 44,63
+ 1351: 43,63
+ 1352: 42,63
+ 1575: 44,59
+ 1576: 45,59
+ 1577: 46,59
+ 1578: 47,59
+ 1579: 48,59
+ 1580: 49,59
+ 1581: 50,59
- node:
cleanable: True
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 1771: 76,42
- 1772: 75,42
- 1773: 74,42
- 1774: 73,42
- 1775: 72,42
- 1776: 71,42
- 1777: 67,42
- 1778: 66,42
- 1779: 65,42
- 1780: 63,42
- 1781: 62,42
- 1782: 61,42
- 1783: 60,42
+ 1770: 76,42
+ 1771: 75,42
+ 1772: 74,42
+ 1773: 73,42
+ 1774: 72,42
+ 1775: 71,42
+ 1776: 67,42
+ 1777: 66,42
+ 1778: 65,42
+ 1779: 63,42
+ 1780: 62,42
+ 1781: 61,42
+ 1782: 60,42
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
@@ -702,44 +703,44 @@ entities:
1320: 39,51
1321: 39,53
1322: 39,52
- 1324: 39,55
- 1325: 39,56
- 1326: 39,57
- 1327: 39,58
- 1328: 39,59
- 1329: 39,60
- 1330: 39,61
- 1331: 39,62
- 1332: 39,63
- 1333: 39,64
- 1572: 46,60
- 2058: 25,22
+ 1323: 39,55
+ 1324: 39,56
+ 1325: 39,57
+ 1326: 39,58
+ 1327: 39,59
+ 1328: 39,60
+ 1329: 39,61
+ 1330: 39,62
+ 1331: 39,63
+ 1332: 39,64
+ 1571: 46,60
+ 2052: 25,22
- node:
color: '#EFB341B2'
id: BrickTileWhiteBox
decals:
- 1848: 58,38
+ 1842: 58,38
- node:
color: '#EFB346B2'
id: BrickTileWhiteBox
decals:
- 1931: 41,16
+ 1925: 41,16
- node:
color: '#00B400B2'
id: BrickTileWhiteCornerNe
decals:
- 1380: 46,52
- 1391: 51,48
- 1400: 56,48
- 1495: 47,73
- 1496: 45,76
- 1539: 47,70
+ 1379: 46,52
+ 1390: 51,48
+ 1399: 56,48
+ 1494: 47,73
+ 1495: 45,76
+ 1538: 47,70
- node:
color: '#334E6DB2'
id: BrickTileWhiteCornerNe
decals:
- 1548: 43,70
- 1559: 40,68
+ 1547: 43,70
+ 1558: 40,68
- node:
color: '#52B4E9B2'
id: BrickTileWhiteCornerNe
@@ -761,7 +762,7 @@ entities:
color: '#8932B8B2'
id: BrickTileWhiteCornerNe
decals:
- 2061: 37,56
+ 2054: 37,56
- node:
color: '#A46106B2'
id: BrickTileWhiteCornerNe
@@ -796,25 +797,25 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
- 1471: 53,57
- 2011: 45,61
+ 1470: 53,57
+ 2005: 45,61
- node:
color: '#00B400B2'
id: BrickTileWhiteCornerNw
decals:
- 1377: 43,52
- 1388: 48,48
- 1401: 53,48
- 1416: 45,48
- 1500: 41,76
- 1503: 39,73
- 1538: 45,70
+ 1376: 43,52
+ 1387: 48,48
+ 1400: 53,48
+ 1415: 45,48
+ 1499: 41,76
+ 1502: 39,73
+ 1537: 45,70
- node:
color: '#334E6DB2'
id: BrickTileWhiteCornerNw
decals:
- 1549: 42,70
- 1556: 39,68
+ 1548: 42,70
+ 1555: 39,68
- node:
color: '#52B4E9B2'
id: BrickTileWhiteCornerNw
@@ -837,7 +838,7 @@ entities:
color: '#8932B8B2'
id: BrickTileWhiteCornerNw
decals:
- 2080: 34,56
+ 2069: 34,56
- node:
color: '#A46106B2'
id: BrickTileWhiteCornerNw
@@ -880,27 +881,27 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
- 1462: 43,57
- 1470: 51,57
- 2012: 43,61
+ 1461: 43,57
+ 1469: 51,57
+ 2006: 43,61
- node:
color: '#00B400B2'
id: BrickTileWhiteCornerSe
decals:
- 1382: 46,50
- 1393: 51,46
- 1399: 56,46
- 1408: 56,50
- 1413: 51,50
- 1418: 46,46
- 1542: 47,67
+ 1381: 46,50
+ 1392: 51,46
+ 1398: 56,46
+ 1407: 56,50
+ 1412: 51,50
+ 1417: 46,46
+ 1541: 47,67
- node:
color: '#334E6DB2'
id: BrickTileWhiteCornerSe
decals:
- 1488: 51,67
- 1552: 43,67
- 1560: 40,67
+ 1487: 51,67
+ 1551: 43,67
+ 1559: 40,67
- node:
color: '#52B4E9B2'
id: BrickTileWhiteCornerSe
@@ -963,25 +964,25 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
- 1472: 53,56
- 2016: 45,60
+ 1471: 53,56
+ 2010: 45,60
- node:
color: '#00B400B2'
id: BrickTileWhiteCornerSw
decals:
- 1385: 43,50
- 1397: 48,46
- 1398: 53,46
- 1409: 55,50
- 1415: 50,50
- 1417: 45,46
- 1543: 45,67
+ 1384: 43,50
+ 1396: 48,46
+ 1397: 53,46
+ 1408: 55,50
+ 1414: 50,50
+ 1416: 45,46
+ 1542: 45,67
- node:
color: '#334E6DB2'
id: BrickTileWhiteCornerSw
decals:
- 1486: 49,67
- 1553: 42,67
+ 1485: 49,67
+ 1552: 42,67
- node:
color: '#52B4E9B2'
id: BrickTileWhiteCornerSw
@@ -1041,22 +1042,22 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
- 1459: 43,54
- 1473: 51,56
- 2014: 43,60
+ 1458: 43,54
+ 1472: 51,56
+ 2008: 43,60
- node:
color: '#EFB341B2'
id: BrickTileWhiteEndE
decals:
- 1846: 35,68
+ 1840: 35,68
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteEndE
decals:
418: 50,28
- 1454: 47,57
- 1455: 47,54
- 1563: 40,70
+ 1453: 47,57
+ 1454: 47,54
+ 1562: 40,70
- node:
color: '#DE3A3AB2'
id: BrickTileWhiteEndS
@@ -1067,19 +1068,19 @@ entities:
id: BrickTileWhiteEndS
decals:
1139: 16,50
- 1419: 43,46
- 1423: 53,50
- 1426: 48,50
+ 1418: 43,46
+ 1422: 53,50
+ 1425: 48,50
- node:
color: '#EFB341B2'
id: BrickTileWhiteEndW
decals:
- 1845: 34,68
+ 1839: 34,68
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteEndW
decals:
- 1564: 39,70
+ 1563: 39,70
- node:
color: '#52B4E9B2'
id: BrickTileWhiteInnerNe
@@ -1101,7 +1102,7 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerNe
decals:
- 1467: 46,54
+ 1466: 46,54
- node:
color: '#DE3A3AB2'
id: BrickTileWhiteInnerNw
@@ -1129,7 +1130,7 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteInnerSe
decals:
- 1466: 46,57
+ 1465: 46,57
- node:
color: '#52B4E9B2'
id: BrickTileWhiteInnerSw
@@ -1140,21 +1141,21 @@ entities:
color: '#00B400B2'
id: BrickTileWhiteLineE
decals:
- 1381: 46,51
- 1392: 51,47
- 1404: 56,47
- 1410: 56,51
- 1414: 51,51
- 1497: 45,75
- 1498: 45,74
- 1540: 47,69
- 1541: 47,68
+ 1380: 46,51
+ 1391: 51,47
+ 1403: 56,47
+ 1409: 56,51
+ 1413: 51,51
+ 1496: 45,75
+ 1497: 45,74
+ 1539: 47,69
+ 1540: 47,68
- node:
color: '#334E6DB2'
id: BrickTileWhiteLineE
decals:
- 1550: 43,69
- 1551: 43,68
+ 1549: 43,69
+ 1550: 43,68
- node:
color: '#52B4E9B2'
id: BrickTileWhiteLineE
@@ -1198,7 +1199,7 @@ entities:
color: '#8932B8B2'
id: BrickTileWhiteLineE
decals:
- 2062: 37,55
+ 2055: 37,55
- node:
color: '#A46106B2'
id: BrickTileWhiteLineE
@@ -1265,35 +1266,35 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
- 1420: 43,47
- 1424: 53,51
- 1425: 48,51
- 1452: 46,56
- 1453: 46,55
+ 1419: 43,47
+ 1423: 53,51
+ 1424: 48,51
+ 1451: 46,56
+ 1452: 46,55
- node:
color: '#00B400B2'
id: BrickTileWhiteLineN
decals:
- 1378: 45,52
- 1379: 44,52
- 1389: 49,48
- 1390: 50,48
- 1402: 54,48
- 1403: 55,48
- 1499: 44,76
- 1517: 42,76
- 1547: 46,70
- 1565: 45,65
- 1566: 47,65
- 1567: 46,65
- 1568: 49,65
- 1569: 50,65
- 1570: 51,65
+ 1377: 45,52
+ 1378: 44,52
+ 1388: 49,48
+ 1389: 50,48
+ 1401: 54,48
+ 1402: 55,48
+ 1498: 44,76
+ 1516: 42,76
+ 1546: 46,70
+ 1564: 45,65
+ 1565: 47,65
+ 1566: 46,65
+ 1567: 49,65
+ 1568: 50,65
+ 1569: 51,65
- node:
color: '#334E6DB2'
id: BrickTileWhiteLineN
decals:
- 1484: 50,69
+ 1483: 50,69
- node:
color: '#52B4E9B2'
id: BrickTileWhiteLineN
@@ -1361,8 +1362,8 @@ entities:
color: '#8932B8B2'
id: BrickTileWhiteLineN
decals:
- 2063: 36,56
- 2081: 35,56
+ 2056: 36,56
+ 2070: 35,56
- node:
color: '#A46106B2'
id: BrickTileWhiteLineN
@@ -1429,35 +1430,35 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
- 1463: 44,57
- 1464: 45,57
- 1465: 46,57
- 1475: 52,57
- 2013: 44,61
+ 1462: 44,57
+ 1463: 45,57
+ 1464: 46,57
+ 1474: 52,57
+ 2007: 44,61
- node:
color: '#00B400B2'
id: BrickTileWhiteLineS
decals:
- 1383: 45,50
- 1384: 44,50
- 1394: 50,46
- 1395: 49,46
- 1396: 37,52
- 1405: 55,46
- 1406: 54,46
- 1504: 41,72
- 1505: 42,72
- 1506: 43,72
- 1507: 44,72
- 1508: 45,72
- 1509: 46,72
- 1532: 40,72
- 1544: 46,67
+ 1382: 45,50
+ 1383: 44,50
+ 1393: 50,46
+ 1394: 49,46
+ 1395: 37,52
+ 1404: 55,46
+ 1405: 54,46
+ 1503: 41,72
+ 1504: 42,72
+ 1505: 43,72
+ 1506: 44,72
+ 1507: 45,72
+ 1508: 46,72
+ 1531: 40,72
+ 1543: 46,67
- node:
color: '#334E6DB2'
id: BrickTileWhiteLineS
decals:
- 1487: 50,67
+ 1486: 50,67
- node:
color: '#52B4E9B2'
id: BrickTileWhiteLineS
@@ -1531,8 +1532,8 @@ entities:
color: '#8932B8B2'
id: BrickTileWhiteLineS
decals:
- 2066: 35,54
- 2067: 34,54
+ 2057: 35,54
+ 2058: 34,54
- node:
color: '#A46106B2'
id: BrickTileWhiteLineS
@@ -1607,34 +1608,34 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
- 1456: 46,54
- 1457: 45,54
- 1458: 44,54
- 1474: 52,56
- 1593: 51,59
- 1594: 52,59
- 1595: 53,59
- 2015: 44,60
+ 1455: 46,54
+ 1456: 45,54
+ 1457: 44,54
+ 1473: 52,56
+ 1592: 51,59
+ 1593: 52,59
+ 1594: 53,59
+ 2009: 44,60
- node:
color: '#00B400B2'
id: BrickTileWhiteLineW
decals:
- 1386: 43,51
- 1387: 48,47
- 1407: 53,47
- 1411: 55,51
- 1412: 50,51
- 1501: 41,75
- 1502: 41,74
- 1545: 45,68
- 1546: 45,69
+ 1385: 43,51
+ 1386: 48,47
+ 1406: 53,47
+ 1410: 55,51
+ 1411: 50,51
+ 1500: 41,75
+ 1501: 41,74
+ 1544: 45,68
+ 1545: 45,69
- node:
color: '#334E6DB2'
id: BrickTileWhiteLineW
decals:
- 1485: 49,68
- 1554: 42,68
- 1555: 42,69
+ 1484: 49,68
+ 1553: 42,68
+ 1554: 42,69
- node:
color: '#52B4E9B2'
id: BrickTileWhiteLineW
@@ -1742,21 +1743,21 @@ entities:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
decals:
- 1421: 43,47
- 1422: 53,51
- 1427: 48,51
- 1460: 43,55
- 1461: 43,56
+ 1420: 43,47
+ 1421: 53,51
+ 1426: 48,51
+ 1459: 43,55
+ 1460: 43,56
- node:
color: '#52B4E996'
id: CheckerNESW
decals:
- 2005: 43,60
- 2006: 43,61
- 2007: 44,61
- 2008: 44,60
- 2009: 45,60
- 2010: 45,61
+ 1999: 43,60
+ 2000: 43,61
+ 2001: 44,61
+ 2002: 44,60
+ 2003: 45,60
+ 2004: 45,61
- node:
color: '#DE3A3ACC'
id: Delivery
@@ -1772,13 +1773,13 @@ entities:
color: '#EFB341C5'
id: Delivery
decals:
- 2051: 52,63
- 2052: 52,64
- 2053: 24,40
- 2054: 24,39
- 2055: 64,44
- 2056: 65,44
- 2057: 66,44
+ 2045: 52,63
+ 2046: 52,64
+ 2047: 24,40
+ 2048: 24,39
+ 2049: 64,44
+ 2050: 65,44
+ 2051: 66,44
- node:
color: '#EFB341CC'
id: Delivery
@@ -1893,127 +1894,127 @@ entities:
1154: 13,48
1155: 12,46
1156: 14,50
- 1884: 55,34
- 1885: 54,29
- 1886: 53,27
- 1887: 51,37
- 1888: 55,38
- 1889: 54,40
- 1890: 53,24
- 1891: 49,20
- 1892: 47,21
- 1893: 43,22
- 1894: 41,20
- 1915: 34,15
- 1916: 34,18
- 1917: 38,17
- 1918: 38,16
- 1919: 39,18
- 1920: 33,9
- 1970: 18,21
- 1971: 22,22
- 1972: 20,22
- 1973: 10,22
- 1974: 5,21
- 1975: 2,21
- 1977: -1,21
- 1978: -1,25
- 1979: 1,27
- 1980: 1,25
- 1988: -3,27
- 1989: -6,32
- 1990: -5,37
- 1991: -6,41
- 2004: -6,32
- 2039: 0,47
- 2040: -2,51
- 2041: 7,46
- 2042: 6,49
- 2043: 10,48
- 2044: 8,49
- 2045: -2,47
- 2046: 9,49
- 2047: 1,46
- 2048: 2,47
- 2049: 6,47
- 2050: 2,46
- 2087: 35,54
- 2088: 36,56
- 2089: 37,55
+ 1878: 55,34
+ 1879: 54,29
+ 1880: 53,27
+ 1881: 51,37
+ 1882: 55,38
+ 1883: 54,40
+ 1884: 53,24
+ 1885: 49,20
+ 1886: 47,21
+ 1887: 43,22
+ 1888: 41,20
+ 1909: 34,15
+ 1910: 34,18
+ 1911: 38,17
+ 1912: 38,16
+ 1913: 39,18
+ 1914: 33,9
+ 1964: 18,21
+ 1965: 22,22
+ 1966: 20,22
+ 1967: 10,22
+ 1968: 5,21
+ 1969: 2,21
+ 1971: -1,21
+ 1972: -1,25
+ 1973: 1,27
+ 1974: 1,25
+ 1982: -3,27
+ 1983: -6,32
+ 1984: -5,37
+ 1985: -6,41
+ 1998: -6,32
+ 2033: 0,47
+ 2034: -2,51
+ 2035: 7,46
+ 2036: 6,49
+ 2037: 10,48
+ 2038: 8,49
+ 2039: -2,47
+ 2040: 9,49
+ 2041: 1,46
+ 2042: 2,47
+ 2043: 6,47
+ 2044: 2,46
+ 2076: 35,54
+ 2077: 36,56
+ 2078: 37,55
- node:
cleanable: True
color: '#FFFFFFFF'
id: Dirt
decals:
- 1609: 28,24
- 1610: 23,28
- 1611: 26,30
- 1612: 25,25
- 1613: 27,21
- 1614: 27,25
- 1624: 27,33
- 1625: 25,36
- 1626: 27,38
- 1627: 25,40
- 1628: 26,36
- 1629: 26,32
- 1630: 24,36
- 1640: 37,43
- 1641: 30,44
- 1642: 29,42
- 1643: 25,44
- 1644: 27,47
- 1645: 26,48
- 1646: 28,42
- 1655: 40,42
- 1656: 40,45
- 1674: 39,55
- 1675: 41,51
- 1676: 39,47
- 1677: 41,58
- 1678: 41,65
- 1679: 40,63
- 1680: 49,65
- 1681: 47,63
- 1682: 41,55
- 1691: 47,67
- 1692: 46,70
- 1693: 45,72
- 1694: 42,75
- 1695: 44,75
- 1696: 41,72
- 1697: 45,76
- 1704: 43,70
- 1705: 43,67
- 1706: 42,68
- 1707: 42,69
- 1721: 46,60
- 1722: 51,59
- 1723: 45,59
- 1724: 52,61
- 1725: 52,60
- 1726: 48,56
- 1727: 49,54
- 1728: 45,55
- 1739: 51,57
- 1740: 53,56
- 1752: 49,42
- 1753: 55,44
- 1754: 57,42
- 1755: 47,44
- 1756: 44,42
- 1757: 45,44
- 1758: 47,42
- 1759: 51,44
- 1805: 73,42
- 1806: 67,44
- 1807: 64,42
- 1808: 60,44
- 1809: 73,44
- 1828: 35,64
- 1829: 36,63
- 1830: 34,57
- 1833: 36,60
+ 1608: 28,24
+ 1609: 23,28
+ 1610: 26,30
+ 1611: 25,25
+ 1612: 27,21
+ 1613: 27,25
+ 1623: 27,33
+ 1624: 25,36
+ 1625: 27,38
+ 1626: 25,40
+ 1627: 26,36
+ 1628: 26,32
+ 1629: 24,36
+ 1639: 37,43
+ 1640: 30,44
+ 1641: 29,42
+ 1642: 25,44
+ 1643: 27,47
+ 1644: 26,48
+ 1645: 28,42
+ 1654: 40,42
+ 1655: 40,45
+ 1673: 39,55
+ 1674: 41,51
+ 1675: 39,47
+ 1676: 41,58
+ 1677: 41,65
+ 1678: 40,63
+ 1679: 49,65
+ 1680: 47,63
+ 1681: 41,55
+ 1690: 47,67
+ 1691: 46,70
+ 1692: 45,72
+ 1693: 42,75
+ 1694: 44,75
+ 1695: 41,72
+ 1696: 45,76
+ 1703: 43,70
+ 1704: 43,67
+ 1705: 42,68
+ 1706: 42,69
+ 1720: 46,60
+ 1721: 51,59
+ 1722: 45,59
+ 1723: 52,61
+ 1724: 52,60
+ 1725: 48,56
+ 1726: 49,54
+ 1727: 45,55
+ 1738: 51,57
+ 1739: 53,56
+ 1751: 49,42
+ 1752: 55,44
+ 1753: 57,42
+ 1754: 47,44
+ 1755: 44,42
+ 1756: 45,44
+ 1757: 47,42
+ 1758: 51,44
+ 1804: 73,42
+ 1805: 67,44
+ 1806: 64,42
+ 1807: 60,44
+ 1808: 73,44
+ 1824: 35,64
+ 1825: 36,63
+ 1826: 34,57
+ 1827: 36,60
- node:
color: '#FFFFFFFF'
id: DirtHeavy
@@ -2044,59 +2045,59 @@ entities:
1097: 22,47
1098: 22,51
1099: 21,48
- 1863: 48,21
- 1864: 43,22
- 1865: 41,20
- 1866: 44,22
- 1883: 54,34
- 1926: 33,9
- 1927: 34,17
- 1928: 34,18
- 1929: 38,17
- 1930: 39,18
- 1954: 1,25
- 1955: 1,27
- 1956: -1,25
- 1957: -1,23
- 1958: 9,22
- 1959: 2,20
- 1960: 3,21
- 1961: 4,21
- 1962: 2,21
- 1963: 17,21
- 1964: 20,22
- 1965: 22,22
- 1986: -3,27
- 1987: -2,27
- 1999: -5,37
- 2000: -7,36
- 2026: 7,46
- 2027: 7,46
- 2028: 10,48
- 2029: 7,50
- 2030: 6,49
- 2031: -2,47
- 2032: 0,47
- 2033: -2,51
+ 1857: 48,21
+ 1858: 43,22
+ 1859: 41,20
+ 1860: 44,22
+ 1877: 54,34
+ 1920: 33,9
+ 1921: 34,17
+ 1922: 34,18
+ 1923: 38,17
+ 1924: 39,18
+ 1948: 1,25
+ 1949: 1,27
+ 1950: -1,25
+ 1951: -1,23
+ 1952: 9,22
+ 1953: 2,20
+ 1954: 3,21
+ 1955: 4,21
+ 1956: 2,21
+ 1957: 17,21
+ 1958: 20,22
+ 1959: 22,22
+ 1980: -3,27
+ 1981: -2,27
+ 1993: -5,37
+ 1994: -7,36
+ 2020: 7,46
+ 2021: 7,46
+ 2022: 10,48
+ 2023: 7,50
+ 2024: 6,49
+ 2025: -2,47
+ 2026: 0,47
+ 2027: -2,51
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1653: 39,43
- 1654: 41,45
- 1717: 43,59
- 1718: 48,60
- 1719: 49,59
- 1720: 53,60
- 1738: 52,56
- 1751: 48,42
- 1824: 34,57
- 1826: 36,63
- 1827: 36,63
- 1840: 36,54
- 1841: 37,56
- 1842: 33,55
+ 1652: 39,43
+ 1653: 41,45
+ 1716: 43,59
+ 1717: 48,60
+ 1718: 49,59
+ 1719: 53,60
+ 1737: 52,56
+ 1750: 48,42
+ 1821: 34,57
+ 1822: 36,63
+ 1823: 36,63
+ 1834: 36,54
+ 1835: 37,56
+ 1836: 33,55
- node:
color: '#FFFFFFFF'
id: DirtHeavyMonotile
@@ -2130,46 +2131,46 @@ entities:
985: 15,44
986: 12,42
1151: 13,46
- 1874: 47,21
- 1875: 52,22
- 1876: 54,29
- 1877: 55,34
- 1878: 55,34
- 1879: 51,37
- 1895: 48,36
- 1896: 48,36
- 1907: 34,17
- 1908: 37,17
- 1909: 39,18
- 1976: 4,21
- 2024: 10,48
- 2025: 8,46
- 2085: 36,55
- 2086: 34,55
+ 1868: 47,21
+ 1869: 52,22
+ 1870: 54,29
+ 1871: 55,34
+ 1872: 55,34
+ 1873: 51,37
+ 1889: 48,36
+ 1890: 48,36
+ 1901: 34,17
+ 1902: 37,17
+ 1903: 39,18
+ 1970: 4,21
+ 2018: 10,48
+ 2019: 8,46
+ 2074: 36,55
+ 2075: 34,55
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 1615: 25,32
- 1616: 27,36
- 1617: 26,40
- 1618: 25,36
- 1619: 27,35
- 1662: 41,57
- 1663: 39,60
- 1664: 44,63
- 1665: 42,65
- 1670: 43,63
- 1671: 39,64
- 1672: 39,58
- 1673: 39,53
- 1702: 41,72
- 1703: 44,74
- 1737: 53,57
- 1810: 73,44
- 1811: 68,42
- 1812: 63,44
+ 1614: 25,32
+ 1615: 27,36
+ 1616: 26,40
+ 1617: 25,36
+ 1618: 27,35
+ 1661: 41,57
+ 1662: 39,60
+ 1663: 44,63
+ 1664: 42,65
+ 1669: 43,63
+ 1670: 39,64
+ 1671: 39,58
+ 1672: 39,53
+ 1701: 41,72
+ 1702: 44,74
+ 1736: 53,57
+ 1809: 73,44
+ 1810: 68,42
+ 1811: 63,44
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -2245,78 +2246,78 @@ entities:
1112: 19,53
1113: 19,56
1114: 23,56
- 1853: 51,37
- 1854: 55,34
- 1855: 54,34
- 1860: 50,22
- 1861: 51,20
- 1862: 47,21
- 1871: 53,27
- 1872: 49,20
- 1873: 49,20
- 1903: 38,16
- 1904: 37,17
- 1905: 34,17
- 1906: 34,15
- 1914: 36,13
- 1924: 32,9
- 1925: 33,9
- 1945: 3,21
- 1946: 5,21
- 1947: 6,21
- 1948: 6,21
- 1949: -1,21
- 1950: -1,24
- 1951: -1,24
- 1952: -1,24
- 1953: 1,26
- 1966: 12,20
- 1967: 12,17
- 1981: -4,28
- 1982: -2,27
- 1983: -4,27
- 2001: -6,32
- 2002: -6,41
- 2003: -6,40
- 2034: 0,48
- 2082: 36,56
- 2083: 34,54
- 2084: 37,55
+ 1847: 51,37
+ 1848: 55,34
+ 1849: 54,34
+ 1854: 50,22
+ 1855: 51,20
+ 1856: 47,21
+ 1865: 53,27
+ 1866: 49,20
+ 1867: 49,20
+ 1897: 38,16
+ 1898: 37,17
+ 1899: 34,17
+ 1900: 34,15
+ 1908: 36,13
+ 1918: 32,9
+ 1919: 33,9
+ 1939: 3,21
+ 1940: 5,21
+ 1941: 6,21
+ 1942: 6,21
+ 1943: -1,21
+ 1944: -1,24
+ 1945: -1,24
+ 1946: -1,24
+ 1947: 1,26
+ 1960: 12,20
+ 1961: 12,17
+ 1975: -4,28
+ 1976: -2,27
+ 1977: -4,27
+ 1995: -6,32
+ 1996: -6,41
+ 1997: -6,40
+ 2028: 0,48
+ 2071: 36,56
+ 2072: 34,54
+ 2073: 37,55
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1600: 27,22
- 1601: 25,26
- 1602: 27,28
- 1603: 27,19
- 1604: 27,20
- 1605: 26,18
- 1620: 26,36
- 1621: 25,38
- 1622: 26,40
- 1623: 25,33
- 1631: 24,37
- 1632: 29,44
- 1633: 25,45
- 1634: 27,48
- 1683: 41,53
- 1684: 40,51
- 1685: 46,67
- 1686: 45,70
- 1687: 47,69
- 1741: 44,44
- 1742: 54,44
- 1743: 54,42
- 1744: 46,42
- 1745: 48,44
- 1796: 71,44
- 1797: 66,42
- 1798: 74,42
- 1817: 34,60
- 1818: 34,57
- 1822: 34,57
+ 1599: 27,22
+ 1600: 25,26
+ 1601: 27,28
+ 1602: 27,19
+ 1603: 27,20
+ 1604: 26,18
+ 1619: 26,36
+ 1620: 25,38
+ 1621: 26,40
+ 1622: 25,33
+ 1630: 24,37
+ 1631: 29,44
+ 1632: 25,45
+ 1633: 27,48
+ 1682: 41,53
+ 1683: 40,51
+ 1684: 46,67
+ 1685: 45,70
+ 1686: 47,69
+ 1740: 44,44
+ 1741: 54,44
+ 1742: 54,42
+ 1743: 46,42
+ 1744: 48,44
+ 1795: 71,44
+ 1796: 66,42
+ 1797: 74,42
+ 1816: 34,60
+ 1817: 34,57
+ 1819: 34,57
- node:
color: '#A46106A7'
id: DirtMedium
@@ -2366,147 +2367,147 @@ entities:
1149: 15,46
1150: 12,48
1152: 13,48
- 1849: 55,38
- 1850: 55,38
- 1851: 57,39
- 1852: 54,40
- 1856: 54,29
- 1857: 54,34
- 1858: 53,27
- 1859: 53,23
- 1867: 50,22
- 1868: 50,22
- 1869: 53,24
- 1870: 53,24
- 1880: 57,39
- 1881: 57,39
- 1882: 51,37
- 1897: 48,36
- 1898: 36,14
- 1899: 34,15
- 1900: 34,18
- 1901: 38,17
- 1902: 39,18
- 1910: 37,17
- 1911: 36,17
- 1912: 36,14
- 1913: 36,13
- 1921: 33,9
- 1922: 33,9
- 1923: 32,9
- 1933: 21,22
- 1934: 18,21
- 1935: 22,22
- 1936: 12,20
- 1937: 10,22
- 1938: 5,21
- 1939: -1,24
- 1940: 1,27
- 1941: -2,27
- 1942: -1,21
- 1943: 2,21
- 1944: 9,22
- 1968: 12,17
- 1969: 17,21
- 1984: -4,27
- 1985: -4,28
- 1992: -6,40
- 1993: -6,40
- 1994: -5,37
- 1995: -7,36
- 1996: -6,32
- 1997: -6,32
- 1998: -6,32
- 2017: -2,51
- 2018: 0,48
- 2019: -2,47
- 2020: 6,48
- 2021: 6,48
- 2022: 7,50
- 2023: 8,49
- 2035: 6,48
- 2036: 7,50
- 2037: 10,49
- 2038: 8,46
+ 1843: 55,38
+ 1844: 55,38
+ 1845: 57,39
+ 1846: 54,40
+ 1850: 54,29
+ 1851: 54,34
+ 1852: 53,27
+ 1853: 53,23
+ 1861: 50,22
+ 1862: 50,22
+ 1863: 53,24
+ 1864: 53,24
+ 1874: 57,39
+ 1875: 57,39
+ 1876: 51,37
+ 1891: 48,36
+ 1892: 36,14
+ 1893: 34,15
+ 1894: 34,18
+ 1895: 38,17
+ 1896: 39,18
+ 1904: 37,17
+ 1905: 36,17
+ 1906: 36,14
+ 1907: 36,13
+ 1915: 33,9
+ 1916: 33,9
+ 1917: 32,9
+ 1927: 21,22
+ 1928: 18,21
+ 1929: 22,22
+ 1930: 12,20
+ 1931: 10,22
+ 1932: 5,21
+ 1933: -1,24
+ 1934: 1,27
+ 1935: -2,27
+ 1936: -1,21
+ 1937: 2,21
+ 1938: 9,22
+ 1962: 12,17
+ 1963: 17,21
+ 1978: -4,27
+ 1979: -4,28
+ 1986: -6,40
+ 1987: -6,40
+ 1988: -5,37
+ 1989: -7,36
+ 1990: -6,32
+ 1991: -6,32
+ 1992: -6,32
+ 2011: -2,51
+ 2012: 0,48
+ 2013: -2,47
+ 2014: 6,48
+ 2015: 6,48
+ 2016: 7,50
+ 2017: 8,49
+ 2029: 6,48
+ 2030: 7,50
+ 2031: 10,49
+ 2032: 8,46
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 1596: 29,26
- 1597: 22,29
- 1598: 26,30
- 1599: 25,22
- 1606: 25,21
- 1607: 25,29
- 1608: 25,26
- 1635: 26,42
- 1636: 25,48
- 1637: 31,42
- 1638: 35,44
- 1639: 36,42
- 1647: 32,44
- 1648: 33,42
- 1649: 27,44
- 1650: 37,44
- 1651: 39,45
- 1652: 41,42
- 1657: 41,48
- 1658: 39,52
- 1659: 41,56
- 1660: 41,50
- 1661: 39,48
- 1666: 41,61
- 1667: 47,65
- 1668: 51,63
- 1669: 51,65
- 1688: 47,70
- 1689: 45,68
- 1690: 47,67
- 1698: 43,72
- 1699: 43,75
- 1700: 41,76
- 1701: 46,72
- 1708: 42,69
- 1709: 43,68
- 1710: 42,67
- 1711: 43,70
- 1712: 40,68
- 1713: 51,61
- 1714: 45,59
- 1715: 49,61
- 1716: 50,59
- 1729: 44,57
- 1730: 45,54
- 1731: 43,56
- 1732: 45,55
- 1733: 48,54
- 1734: 48,57
- 1735: 49,54
- 1736: 51,56
- 1746: 51,42
- 1747: 50,44
- 1748: 43,42
- 1749: 58,44
- 1750: 56,42
- 1799: 62,44
- 1800: 60,42
- 1801: 67,44
- 1802: 66,42
- 1803: 75,42
- 1804: 76,44
- 1813: 34,61
- 1814: 36,60
- 1815: 36,63
- 1816: 35,64
- 1821: 38,57
- 1823: 34,57
- 1834: 35,66
- 1835: 33,61
- 1836: 35,60
- 1837: 34,60
- 1838: 37,63
- 1839: 34,58
+ 1595: 29,26
+ 1596: 22,29
+ 1597: 26,30
+ 1598: 25,22
+ 1605: 25,21
+ 1606: 25,29
+ 1607: 25,26
+ 1634: 26,42
+ 1635: 25,48
+ 1636: 31,42
+ 1637: 35,44
+ 1638: 36,42
+ 1646: 32,44
+ 1647: 33,42
+ 1648: 27,44
+ 1649: 37,44
+ 1650: 39,45
+ 1651: 41,42
+ 1656: 41,48
+ 1657: 39,52
+ 1658: 41,56
+ 1659: 41,50
+ 1660: 39,48
+ 1665: 41,61
+ 1666: 47,65
+ 1667: 51,63
+ 1668: 51,65
+ 1687: 47,70
+ 1688: 45,68
+ 1689: 47,67
+ 1697: 43,72
+ 1698: 43,75
+ 1699: 41,76
+ 1700: 46,72
+ 1707: 42,69
+ 1708: 43,68
+ 1709: 42,67
+ 1710: 43,70
+ 1711: 40,68
+ 1712: 51,61
+ 1713: 45,59
+ 1714: 49,61
+ 1715: 50,59
+ 1728: 44,57
+ 1729: 45,54
+ 1730: 43,56
+ 1731: 45,55
+ 1732: 48,54
+ 1733: 48,57
+ 1734: 49,54
+ 1735: 51,56
+ 1745: 51,42
+ 1746: 50,44
+ 1747: 43,42
+ 1748: 58,44
+ 1749: 56,42
+ 1798: 62,44
+ 1799: 60,42
+ 1800: 67,44
+ 1801: 66,42
+ 1802: 75,42
+ 1803: 76,44
+ 1812: 34,61
+ 1813: 36,60
+ 1814: 36,63
+ 1815: 35,64
+ 1818: 38,57
+ 1820: 34,57
+ 1828: 35,66
+ 1829: 33,61
+ 1830: 35,60
+ 1831: 34,60
+ 1832: 37,63
+ 1833: 34,58
- node:
color: '#00FFFF66'
id: WarnCornerGreyscaleNW
@@ -2521,7 +2522,7 @@ entities:
color: '#00B400CC'
id: WarnCornerNE
decals:
- 1527: 46,72
+ 1526: 46,72
- node:
color: '#EFB341CC'
id: WarnCornerNE
@@ -2532,12 +2533,12 @@ entities:
color: '#00B400CC'
id: WarnCornerNW
decals:
- 1533: 40,72
+ 1532: 40,72
- node:
color: '#00B400CC'
id: WarnCornerSE
decals:
- 1525: 39,73
+ 1524: 39,73
- node:
color: '#DE3A3ACC'
id: WarnCornerSE
@@ -2547,12 +2548,12 @@ entities:
color: '#00B400CC'
id: WarnCornerSW
decals:
- 1526: 47,73
+ 1525: 47,73
- node:
color: '#334E6DB2'
id: WarnCornerSmallGreyscaleNE
decals:
- 1494: 50,67
+ 1493: 50,67
- node:
color: '#52B4E9CC'
id: WarnCornerSmallGreyscaleNE
@@ -2596,7 +2597,7 @@ entities:
color: '#8932B8CC'
id: WarnCornerSmallGreyscaleSE
decals:
- 2077: 35,55
+ 2068: 35,55
- node:
color: '#00FFFF66'
id: WarnCornerSmallGreyscaleSW
@@ -2606,7 +2607,7 @@ entities:
color: '#334E6DCC'
id: WarnCornerSmallGreyscaleSW
decals:
- 1562: 40,68
+ 1561: 40,68
- node:
color: '#52B4E9CC'
id: WarnCornerSmallGreyscaleSW
@@ -2620,9 +2621,9 @@ entities:
color: '#00B400CC'
id: WarnCornerSmallNE
decals:
- 1440: 45,46
- 1536: 42,75
- 1537: 44,72
+ 1439: 45,46
+ 1535: 42,75
+ 1536: 44,72
- node:
color: '#A46106CC'
id: WarnCornerSmallNE
@@ -2651,8 +2652,8 @@ entities:
color: '#00B400CC'
id: WarnCornerSmallNW
decals:
- 1534: 42,72
- 1535: 44,75
+ 1533: 42,72
+ 1534: 44,75
- node:
color: '#80C71FCC'
id: WarnCornerSmallNW
@@ -2677,7 +2678,7 @@ entities:
color: '#00B400CC'
id: WarnCornerSmallSE
decals:
- 1529: 44,74
+ 1528: 44,74
- node:
color: '#A46106CC'
id: WarnCornerSmallSE
@@ -2699,7 +2700,7 @@ entities:
color: '#00B400CC'
id: WarnCornerSmallSW
decals:
- 1531: 42,74
+ 1530: 42,74
- node:
color: '#DE3A3ACC'
id: WarnCornerSmallSW
@@ -2722,10 +2723,10 @@ entities:
color: '#00B400CC'
id: WarnLineE
decals:
- 1437: 45,47
- 1438: 45,48
- 1523: 44,73
- 1524: 42,76
+ 1436: 45,47
+ 1437: 45,48
+ 1522: 44,73
+ 1523: 42,76
- node:
color: '#80C71FCC'
id: WarnLineE
@@ -2795,14 +2796,14 @@ entities:
color: '#EFB341CC'
id: WarnLineE
decals:
- 1787: 76,44
- 1788: 76,43
- 1789: 76,42
+ 1786: 76,44
+ 1787: 76,43
+ 1788: 76,42
- node:
color: '#334E6DB2'
id: WarnLineGreyscaleE
decals:
- 1492: 50,68
+ 1491: 50,68
- node:
color: '#52B4E9CC'
id: WarnLineGreyscaleE
@@ -2828,12 +2829,12 @@ entities:
color: '#8932B8CC'
id: WarnLineGreyscaleE
decals:
- 2076: 35,54
+ 2067: 35,54
- node:
color: '#D4D4D4B2'
id: WarnLineGreyscaleE
decals:
- 1491: 50,69
+ 1490: 50,69
- node:
color: '#00FFFF66'
id: WarnLineGreyscaleN
@@ -2846,7 +2847,7 @@ entities:
color: '#334E6DB2'
id: WarnLineGreyscaleN
decals:
- 1493: 51,67
+ 1492: 51,67
- node:
color: '#52B4E9CC'
id: WarnLineGreyscaleN
@@ -2875,7 +2876,7 @@ entities:
color: '#334E6DCC'
id: WarnLineGreyscaleS
decals:
- 1558: 39,68
+ 1557: 39,68
- node:
color: '#52B4E9CC'
id: WarnLineGreyscaleS
@@ -2894,8 +2895,8 @@ entities:
color: '#8932B8CC'
id: WarnLineGreyscaleS
decals:
- 2074: 37,55
- 2075: 36,55
+ 2065: 37,55
+ 2066: 36,55
- node:
color: '#00FFFF66'
id: WarnLineGreyscaleW
@@ -2909,7 +2910,7 @@ entities:
color: '#334E6DCC'
id: WarnLineGreyscaleW
decals:
- 1561: 40,67
+ 1560: 40,67
- node:
color: '#52B4E9CC'
id: WarnLineGreyscaleW
@@ -2938,14 +2939,14 @@ entities:
color: '#8932B8CC'
id: WarnLineGreyscaleW
decals:
- 2072: 34,54
- 2073: 34,55
+ 2063: 34,54
+ 2064: 34,55
- node:
color: '#00B400CC'
id: WarnLineN
decals:
- 1528: 45,74
- 1530: 41,74
+ 1527: 45,74
+ 1529: 41,74
- node:
color: '#A46106CC'
id: WarnLineN
@@ -2979,23 +2980,23 @@ entities:
1264: 25,32
1265: 26,32
1266: 27,32
- 1371: 39,47
- 1372: 40,47
- 1373: 41,47
+ 1370: 39,47
+ 1371: 40,47
+ 1372: 41,47
- node:
cleanable: True
color: '#EFB341CC'
id: WarnLineN
decals:
- 1790: 70,42
- 1791: 69,42
- 1792: 68,42
+ 1789: 70,42
+ 1790: 69,42
+ 1791: 68,42
- node:
color: '#00B400CC'
id: WarnLineS
decals:
- 1521: 42,73
- 1522: 44,76
+ 1520: 42,73
+ 1521: 44,76
- node:
color: '#80C71FCC'
id: WarnLineS
@@ -3011,9 +3012,9 @@ entities:
color: '#DE3A3AB2'
id: WarnLineS
decals:
- 1374: 39,48
- 1375: 39,49
- 1376: 39,50
+ 1373: 39,48
+ 1374: 39,49
+ 1375: 39,50
- node:
color: '#DE3A3ACC'
id: WarnLineS
@@ -3061,21 +3062,21 @@ entities:
color: '#EFB341CC'
id: WarnLineS
decals:
- 1793: 60,42
- 1794: 60,43
- 1795: 60,44
+ 1792: 60,42
+ 1793: 60,43
+ 1794: 60,44
- node:
color: '#00B400CC'
id: WarnLineW
decals:
- 1433: 51,51
- 1434: 50,51
- 1435: 56,51
- 1436: 55,51
- 1439: 46,46
- 1518: 41,72
- 1519: 45,72
- 1520: 43,75
+ 1432: 51,51
+ 1433: 50,51
+ 1434: 56,51
+ 1435: 55,51
+ 1438: 46,46
+ 1517: 41,72
+ 1518: 45,72
+ 1519: 43,75
- node:
color: '#80C71FCC'
id: WarnLineW
@@ -3144,9 +3145,9 @@ entities:
color: '#EFB341CC'
id: WarnLineW
decals:
- 1784: 68,44
- 1785: 70,44
- 1786: 69,44
+ 1783: 68,44
+ 1784: 70,44
+ 1785: 69,44
- type: GridAtmosphere
version: 2
data:
@@ -4551,8 +4552,6 @@ entities:
- 2198
- 2277
- 6057
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4111
components:
- type: Transform
@@ -4564,8 +4563,6 @@ entities:
- 2192
- 2272
- 4025
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4383
components:
- type: Transform
@@ -4593,8 +4590,6 @@ entities:
- 2232
- 4331
- 4338
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4384
components:
- type: Transform
@@ -4621,8 +4616,6 @@ entities:
- 2290
- 2231
- 2291
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4385
components:
- type: Transform
@@ -4640,8 +4633,6 @@ entities:
- 2240
- 2241
- 4300
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4386
components:
- type: Transform
@@ -4658,8 +4649,6 @@ entities:
- 4340
- 2296
- 2235
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4387
components:
- type: Transform
@@ -4673,8 +4662,6 @@ entities:
- 4355
- 6059
- 6058
- - type: AtmosDevice
- joinedGrid: 2
- uid: 4388
components:
- type: Transform
@@ -4688,8 +4675,6 @@ entities:
- 2294
- 4339
- 4338
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5000
components:
- type: Transform
@@ -4705,8 +4690,6 @@ entities:
- 2334
- 2208
- 4998
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5001
components:
- type: Transform
@@ -4721,8 +4704,6 @@ entities:
- 2210
- 2337
- 2336
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5002
components:
- type: Transform
@@ -4753,8 +4734,6 @@ entities:
- 2218
- 2351
- 2217
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5003
components:
- type: Transform
@@ -4767,8 +4746,6 @@ entities:
- 2341
- 4797
- 4798
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5004
components:
- type: Transform
@@ -4781,8 +4758,6 @@ entities:
- 4806
- 4805
- 4799
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5005
components:
- type: Transform
@@ -4795,8 +4770,6 @@ entities:
- 4807
- 4801
- 4798
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5006
components:
- type: Transform
@@ -4811,8 +4784,6 @@ entities:
- 4797
- 4801
- 4804
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5007
components:
- type: Transform
@@ -4827,8 +4798,6 @@ entities:
- 2214
- 2344
- 4802
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5008
components:
- type: Transform
@@ -4843,8 +4812,6 @@ entities:
- 4804
- 4808
- 4809
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5009
components:
- type: Transform
@@ -4856,8 +4823,6 @@ entities:
- 2215
- 2348
- 4791
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5010
components:
- type: Transform
@@ -4868,8 +4833,6 @@ entities:
- 2333
- 2225
- 4872
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5033
components:
- type: Transform
@@ -4886,8 +4849,6 @@ entities:
- 5101
- 2332
- 2257
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5299
components:
- type: Transform
@@ -4902,16 +4863,12 @@ entities:
- 2254
- 2313
- 2314
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5300
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 52.5,48.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5339
components:
- type: Transform
@@ -4928,8 +4885,6 @@ entities:
- 2310
- 2252
- 2312
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5552
components:
- type: Transform
@@ -4942,8 +4897,6 @@ entities:
- 5121
- 2206
- 2306
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5553
components:
- type: Transform
@@ -4960,8 +4913,6 @@ entities:
- 5118
- 2303
- 2203
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5554
components:
- type: Transform
@@ -4982,8 +4933,6 @@ entities:
- 5116
- 2302
- 2202
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5555
components:
- type: Transform
@@ -4998,8 +4947,6 @@ entities:
- 2300
- 5113
- 5114
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5556
components:
- type: Transform
@@ -5017,8 +4964,6 @@ entities:
- 6057
- 5111
- 5112
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5557
components:
- type: Transform
@@ -5039,8 +4984,6 @@ entities:
- 5433
- 5676
- 5099
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5558
components:
- type: Transform
@@ -5059,16 +5002,12 @@ entities:
- 2264
- 2321
- 5676
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5559
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 57.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 5560
components:
- type: Transform
@@ -5086,8 +5025,6 @@ entities:
- 5435
- 6055
- 5436
- - type: AtmosDevice
- joinedGrid: 2
- uid: 6060
components:
- type: Transform
@@ -5101,8 +5038,6 @@ entities:
- 4795
- 4793
- 4796
- - type: AtmosDevice
- joinedGrid: 2
- uid: 6061
components:
- type: Transform
@@ -5116,8 +5051,6 @@ entities:
- 2262
- 5360
- 5359
- - type: AtmosDevice
- joinedGrid: 2
- uid: 6566
components:
- type: Transform
@@ -5143,8 +5076,6 @@ entities:
- 6749
- 6831
- 6819
- - type: AtmosDevice
- joinedGrid: 6565
- uid: 6567
components:
- type: Transform
@@ -5159,8 +5090,6 @@ entities:
- 6827
- 6750
- 6754
- - type: AtmosDevice
- joinedGrid: 6565
- proto: AirCanister
entities:
- uid: 5993
@@ -5168,22 +5097,22 @@ entities:
- type: Transform
pos: 22.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
- uid: 5994
components:
- type: Transform
pos: 12.5,18.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
- uid: 6568
components:
- type: Transform
pos: -2.5,-3.5
parent: 6565
- - type: AtmosDevice
- joinedGrid: 6565
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
- proto: AirlockArmoryLocked
entities:
- uid: 4360
@@ -5521,6 +5450,10 @@ entities:
- type: Docking
dockJointId: docking138610
dockedWith: 6574
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- uid: 5538
components:
- type: Transform
@@ -5530,6 +5463,10 @@ entities:
- type: Docking
dockJointId: docking138611
dockedWith: 6573
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- uid: 5542
components:
- type: Transform
@@ -5573,6 +5510,10 @@ entities:
- type: Docking
dockJointId: docking138611
dockedWith: 5538
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- uid: 6574
components:
- type: Transform
@@ -5582,6 +5523,10 @@ entities:
- type: Docking
dockJointId: docking138610
dockedWith: 5383
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- proto: AirlockFreezer
entities:
- uid: 4362
@@ -6262,11 +6207,13 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,-7.5
parent: 6565
- - uid: 6576
+- proto: APCHyperCapacity
+ entities:
+ - uid: 4609
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,7.5
+ pos: -2.5,8.5
parent: 6565
- proto: AppraisalTool
entities:
@@ -11576,6 +11523,11 @@ entities:
- type: Transform
pos: 36.5,57.5
parent: 2
+ - uid: 4613
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 6565
- uid: 5488
components:
- type: Transform
@@ -15825,6 +15777,11 @@ entities:
- type: Transform
pos: 58.5,37.5
parent: 2
+ - uid: 4641
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 6565
- uid: 5490
components:
- type: Transform
@@ -15987,15 +15944,15 @@ entities:
- type: Transform
pos: 41.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: CarbonDioxideCanister
- uid: 5991
components:
- type: Transform
pos: 10.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: CarbonDioxideCanister
- proto: Carpet
entities:
- uid: 4485
@@ -18370,18 +18327,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 44.63566,52.07726
parent: 2
-- proto: chem_master
- entities:
- - uid: 4499
- components:
- - type: Transform
- pos: 3.5,28.5
- parent: 2
- - uid: 6713
- components:
- - type: Transform
- pos: -0.5,4.5
- parent: 6565
- proto: ChemDispenser
entities:
- uid: 4497
@@ -18411,6 +18356,18 @@ entities:
- type: Transform
pos: 44.5,54.5
parent: 2
+- proto: ChemMaster
+ entities:
+ - uid: 4499
+ components:
+ - type: Transform
+ pos: 3.5,28.5
+ parent: 2
+ - uid: 6713
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 6565
- proto: ChessBoard
entities:
- uid: 4763
@@ -18658,11 +18615,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 6717
+ - 6718
- 6720
- 6719
- 6716
- - 6718
+ - 6717
- uid: 6726
components:
- type: Transform
@@ -19536,11 +19493,6 @@ entities:
- type: Transform
pos: 43.5,76.5
parent: 2
- - uid: 5400
- components:
- - type: Transform
- pos: 40.5,73.5
- parent: 2
- uid: 6737
components:
- type: Transform
@@ -19572,6 +19524,13 @@ entities:
- type: Transform
pos: 46.5,73.5
parent: 2
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 4605
+ components:
+ - type: Transform
+ pos: 40.5,73.5
+ parent: 2
- proto: ComputerId
entities:
- uid: 5398
@@ -20011,6 +19970,9 @@ entities:
- type: Transform
pos: 51.5,68.5
parent: 2
+ - type: SingletonDeviceNetServer
+ active: False
+ available: False
- proto: CryogenicSleepUnit
entities:
- uid: 6496
@@ -20029,6 +19991,14 @@ entities:
- type: Transform
pos: 51.5,48.5
parent: 2
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 4617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,7.5
+ parent: 6565
- proto: Defibrillator
entities:
- uid: 270
@@ -22013,6 +21983,16 @@ entities:
canCollide: False
- proto: ExtinguisherCabinetFilled
entities:
+ - uid: 4645
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 6565
+ - uid: 5042
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 6565
- uid: 6190
components:
- type: Transform
@@ -23075,8 +23055,6 @@ entities:
- type: Transform
pos: 18.5,19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- proto: GasMinerOxygenStationLarge
entities:
- uid: 1245
@@ -23084,8 +23062,6 @@ entities:
- type: Transform
pos: 16.5,19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- proto: GasMixerFlipped
entities:
- uid: 1249
@@ -23094,8 +23070,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,15.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- proto: GasPassiveVent
entities:
- uid: 1247
@@ -23103,23 +23077,17 @@ entities:
- type: Transform
pos: 18.5,18.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 1248
components:
- type: Transform
pos: 16.5,18.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 1723
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 19.5,7.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6756
@@ -23128,8 +23096,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-6.5
parent: 6565
- - type: AtmosDevice
- joinedGrid: 6565
- proto: GasPipeBend
entities:
- uid: 895
@@ -30894,8 +30860,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,11.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 3972
@@ -30904,8 +30868,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,10.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6816
@@ -30914,8 +30876,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,-3.5
parent: 6565
- - type: AtmosDevice
- joinedGrid: 6565
- proto: GasPressurePump
entities:
- uid: 1250
@@ -30923,23 +30883,17 @@ entities:
- type: Transform
pos: 18.5,16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 1251
components:
- type: Transform
pos: 16.5,16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- uid: 1256
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 19.5,15.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6817
@@ -30948,8 +30902,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-3.5
parent: 6565
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6818
@@ -30958,8 +30910,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,-4.5
parent: 6565
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- proto: GasValve
@@ -30969,8 +30919,6 @@ entities:
- type: Transform
pos: 19.5,10.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- proto: GasVentPump
@@ -30983,8 +30931,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2272
@@ -30996,8 +30942,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4111
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2273
@@ -31009,8 +30953,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2274
@@ -31022,8 +30964,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2275
@@ -31035,8 +30975,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2276
@@ -31047,8 +30985,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2277
@@ -31060,8 +30996,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2278
@@ -31070,8 +31004,6 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,21.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2279
@@ -31083,8 +31015,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4387
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2280
@@ -31096,8 +31026,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2281
@@ -31109,8 +31037,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2282
@@ -31122,8 +31048,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2283
@@ -31135,8 +31059,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2284
@@ -31147,8 +31069,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2285
@@ -31159,8 +31079,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2286
@@ -31172,8 +31090,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2287
@@ -31185,8 +31101,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2288
@@ -31198,8 +31112,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2289
@@ -31210,8 +31122,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2290
@@ -31222,8 +31132,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2291
@@ -31234,8 +31142,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2292
@@ -31247,8 +31153,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2293
@@ -31259,8 +31163,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2294
@@ -31271,8 +31173,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4388
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2295
@@ -31284,8 +31184,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4388
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2296
@@ -31297,8 +31195,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2297
@@ -31310,8 +31206,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2298
@@ -31323,8 +31217,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2299
@@ -31335,8 +31227,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5556
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2300
@@ -31347,8 +31237,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5555
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2301
@@ -31359,8 +31247,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5554
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2302
@@ -31372,8 +31258,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5554
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2303
@@ -31385,8 +31269,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5553
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2304
@@ -31398,8 +31280,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5553
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2305
@@ -31410,8 +31290,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5552
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2306
@@ -31422,8 +31300,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5552
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2307
@@ -31432,8 +31308,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,47.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2308
@@ -31441,8 +31315,6 @@ entities:
- type: Transform
pos: 55.5,51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2309
@@ -31453,8 +31325,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5339
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2310
@@ -31465,8 +31335,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5339
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2311
@@ -31474,8 +31342,6 @@ entities:
- type: Transform
pos: 53.5,51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2312
@@ -31487,8 +31353,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5339
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2313
@@ -31500,8 +31364,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5299
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2314
@@ -31513,8 +31375,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5299
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2315
@@ -31525,8 +31385,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5299
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2316
@@ -31534,8 +31392,6 @@ entities:
- type: Transform
pos: 40.5,48.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2317
@@ -31546,8 +31402,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2318
@@ -31559,8 +31413,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2319
@@ -31572,8 +31424,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2320
@@ -31585,8 +31435,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2321
@@ -31598,8 +31446,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2322
@@ -31611,8 +31457,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2323
@@ -31624,8 +31468,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2324
@@ -31636,8 +31478,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6061
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2325
@@ -31649,8 +31489,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6061
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2326
@@ -31662,8 +31500,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5560
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2327
@@ -31674,8 +31510,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5560
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2328
@@ -31684,8 +31518,6 @@ entities:
rot: 3.141592653589793 rad
pos: 43.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2329
@@ -31694,8 +31526,6 @@ entities:
rot: 3.141592653589793 rad
pos: 39.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2330
@@ -31703,8 +31533,6 @@ entities:
- type: Transform
pos: 39.5,70.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2331
@@ -31716,8 +31544,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5033
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2332
@@ -31729,8 +31555,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5033
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2333
@@ -31742,8 +31566,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5010
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2334
@@ -31754,8 +31576,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5000
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2335
@@ -31766,8 +31586,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5000
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2336
@@ -31778,8 +31596,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5001
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2337
@@ -31790,8 +31606,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5001
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2338
@@ -31803,8 +31617,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5001
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2339
@@ -31816,8 +31628,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5006
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2340
@@ -31829,8 +31639,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5005
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2341
@@ -31842,8 +31650,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5003
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2342
@@ -31855,8 +31661,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5007
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2343
@@ -31867,8 +31671,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2344
@@ -31880,8 +31682,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5007
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2345
@@ -31893,8 +31693,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2346
@@ -31906,8 +31704,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2347
@@ -31919,8 +31715,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6060
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2348
@@ -31931,8 +31725,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5009
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2349
@@ -31944,8 +31736,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2350
@@ -31957,8 +31747,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2351
@@ -31970,8 +31758,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2352
@@ -31982,8 +31768,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5004
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2353
@@ -31995,8 +31779,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5008
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2354
@@ -32005,8 +31787,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -0.5,39.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 4300
@@ -32017,8 +31797,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- uid: 6819
components:
- type: Transform
@@ -32027,8 +31805,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6820
@@ -32040,8 +31816,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6821
@@ -32053,8 +31827,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6822
@@ -32066,8 +31838,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6823
@@ -32079,8 +31849,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6824
@@ -32092,8 +31860,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6825
@@ -32105,8 +31871,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6567
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6826
@@ -32118,8 +31882,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6567
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
@@ -32133,8 +31895,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4111
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2193
@@ -32146,8 +31906,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2194
@@ -32159,8 +31917,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2195
@@ -32172,8 +31928,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2196
@@ -32184,8 +31938,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2197
@@ -32196,8 +31948,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2198
@@ -32209,8 +31959,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4107
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2199
@@ -32221,8 +31969,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5556
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2200
@@ -32233,8 +31979,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5555
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2201
@@ -32245,8 +31989,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5554
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2202
@@ -32258,8 +32000,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5554
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2203
@@ -32271,8 +32011,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5553
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2204
@@ -32284,8 +32022,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5553
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2205
@@ -32296,8 +32032,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5552
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2206
@@ -32308,8 +32042,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5552
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2207
@@ -32320,8 +32052,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5000
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2208
@@ -32332,8 +32062,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5000
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2209
@@ -32345,8 +32073,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5001
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2210
@@ -32357,8 +32083,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5001
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2211
@@ -32370,8 +32094,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5005
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2212
@@ -32383,8 +32105,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5003
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2213
@@ -32396,8 +32116,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5007
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2214
@@ -32409,8 +32127,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5007
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2215
@@ -32421,8 +32137,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5009
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2216
@@ -32434,8 +32148,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6060
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2217
@@ -32447,8 +32159,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2218
@@ -32460,8 +32170,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2219
@@ -32473,8 +32181,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5008
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2220
@@ -32486,8 +32192,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5006
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2221
@@ -32498,8 +32202,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2222
@@ -32510,8 +32212,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2223
@@ -32523,8 +32223,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2224
@@ -32535,8 +32233,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5004
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2225
@@ -32548,8 +32244,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5010
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2226
@@ -32560,8 +32254,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2227
@@ -32572,8 +32264,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2228
@@ -32585,8 +32275,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2229
@@ -32598,8 +32286,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2230
@@ -32611,8 +32297,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2231
@@ -32623,8 +32307,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2232
@@ -32635,8 +32317,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2233
@@ -32648,8 +32328,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4388
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2234
@@ -32660,8 +32338,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4388
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2235
@@ -32673,8 +32349,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2236
@@ -32686,8 +32360,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2237
@@ -32698,8 +32370,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4386
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2238
@@ -32711,8 +32381,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2239
@@ -32724,8 +32392,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2240
@@ -32737,8 +32403,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2241
@@ -32749,8 +32413,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4385
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2242
@@ -32762,8 +32424,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2243
@@ -32774,8 +32434,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2244
@@ -32786,8 +32444,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4383
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2245
@@ -32799,8 +32455,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4387
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2246
@@ -32809,8 +32463,6 @@ entities:
rot: 3.141592653589793 rad
pos: 35.5,21.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2247
@@ -32821,8 +32473,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4384
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2249
@@ -32834,8 +32484,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5002
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2250
@@ -32844,8 +32492,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,48.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2251
@@ -32853,8 +32499,6 @@ entities:
- type: Transform
pos: 56.5,51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2252
@@ -32866,8 +32510,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5339
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2253
@@ -32878,8 +32520,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5339
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2254
@@ -32891,8 +32531,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5299
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2255
@@ -32904,8 +32542,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5299
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2256
@@ -32917,8 +32553,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5033
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2257
@@ -32930,8 +32564,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5033
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2258
@@ -32939,8 +32571,6 @@ entities:
- type: Transform
pos: 41.5,48.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2259
@@ -32951,8 +32581,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2260
@@ -32964,8 +32592,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2261
@@ -32977,8 +32603,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5557
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2262
@@ -32990,8 +32614,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6061
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2263
@@ -33002,8 +32624,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6061
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2264
@@ -33015,8 +32635,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2265
@@ -33028,8 +32646,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2266
@@ -33041,8 +32657,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2267
@@ -33054,8 +32668,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5558
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2268
@@ -33067,8 +32679,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5560
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2269
@@ -33079,8 +32689,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 5560
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2270
@@ -33089,8 +32697,6 @@ entities:
rot: 3.141592653589793 rad
pos: 40.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2271
@@ -33099,8 +32705,6 @@ entities:
rot: 3.141592653589793 rad
pos: 42.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 2355
@@ -33109,8 +32713,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,38.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6827
@@ -33122,8 +32724,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6567
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6828
@@ -33135,8 +32735,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6829
@@ -33148,8 +32746,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6830
@@ -33161,8 +32757,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6831
@@ -33173,8 +32767,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6832
@@ -33185,8 +32777,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6833
@@ -33198,8 +32788,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6567
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- uid: 6834
@@ -33211,8 +32799,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6566
- - type: AtmosDevice
- joinedGrid: 6565
- type: AtmosPipeColor
color: '#E32636FF'
- proto: GeneratorBasic15kW
@@ -35217,8 +34803,8 @@ entities:
- type: Transform
pos: -1.5,51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: HydrogenCanister
- proto: JetpackBlueFilled
entities:
- uid: 4865
@@ -35284,6 +34870,9 @@ entities:
- type: Transform
pos: 15.5,13.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- proto: LockerChemistryFilled
entities:
- uid: 4506
@@ -35291,6 +34880,9 @@ entities:
- type: Transform
pos: 3.5,25.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- proto: LockerEngineer
entities:
- uid: 4074
@@ -35298,6 +34890,9 @@ entities:
- type: Transform
pos: 27.5,12.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35344,6 +34939,9 @@ entities:
- type: Transform
pos: 27.5,11.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35390,6 +34988,9 @@ entities:
- type: Transform
pos: 27.5,9.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35436,6 +35037,9 @@ entities:
- type: Transform
pos: 27.500174,8.500924
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35484,46 +35088,73 @@ entities:
- type: Transform
pos: 36.5,24.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4147
components:
- type: Transform
pos: 35.5,24.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4234
components:
- type: Transform
pos: 31.5,37.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4235
components:
- type: Transform
pos: 35.5,37.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4236
components:
- type: Transform
pos: 39.5,37.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4237
components:
- type: Transform
pos: 37.5,35.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4238
components:
- type: Transform
pos: 29.5,35.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4240
components:
- type: Transform
pos: 33.5,35.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4370
components:
- type: Transform
pos: 45.5,27.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35557,6 +35188,9 @@ entities:
- type: Transform
pos: 43.5,56.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- proto: LockerMedical
entities:
- uid: 231
@@ -35564,6 +35198,9 @@ entities:
- type: Transform
pos: 3.5,30.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35613,6 +35250,9 @@ entities:
- type: Transform
pos: 3.5,33.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35662,6 +35302,9 @@ entities:
- type: Transform
pos: 3.5,34.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35711,6 +35354,9 @@ entities:
- type: Transform
pos: 3.5,31.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35762,11 +35408,17 @@ entities:
- type: Transform
pos: 12.5,30.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- uid: 4703
components:
- type: Transform
pos: 18.5,40.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- proto: LockerQuarterMasterFilled
entities:
- uid: 4979
@@ -35774,6 +35426,9 @@ entities:
- type: Transform
pos: 12.5,50.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35828,6 +35483,9 @@ entities:
- type: Transform
pos: 46.5,48.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35884,6 +35542,9 @@ entities:
- type: Transform
pos: 55.5,52.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35940,6 +35601,9 @@ entities:
- type: Transform
pos: 50.5,52.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -35996,6 +35660,9 @@ entities:
- type: Transform
pos: 39.50126,67.50116
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36050,6 +35717,9 @@ entities:
- type: Transform
pos: 45.5,33.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36098,6 +35768,9 @@ entities:
- type: Transform
pos: 45.5,34.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36146,6 +35819,9 @@ entities:
- type: Transform
pos: 45.5,31.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36194,6 +35870,9 @@ entities:
- type: Transform
pos: 45.5,30.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36299,6 +35978,9 @@ entities:
- type: Transform
pos: 50.5,24.5
parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
- type: EntityStorage
air:
volume: 200
@@ -36801,29 +36483,29 @@ entities:
- type: Transform
pos: 54.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrogenCanister
- uid: 5912
components:
- type: Transform
pos: 39.5,16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrogenCanister
- uid: 5924
components:
- type: Transform
pos: -0.5,23.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrogenCanister
- uid: 6042
components:
- type: Transform
pos: -1.5,50.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrogenCanister
- proto: NitrousOxideCanister
entities:
- uid: 3992
@@ -36831,15 +36513,15 @@ entities:
- type: Transform
pos: 11.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrousOxideCanister
- uid: 5992
components:
- type: Transform
pos: 9.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrousOxideCanister
- proto: NitrousOxideTankFilled
entities:
- uid: 4706
@@ -36878,29 +36560,29 @@ entities:
- type: Transform
pos: 53.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: OxygenCanister
- uid: 5859
components:
- type: Transform
pos: 41.5,20.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: OxygenCanister
- uid: 5913
components:
- type: Transform
pos: 38.5,16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: OxygenCanister
- uid: 5989
components:
- type: Transform
pos: -0.5,24.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: OxygenCanister
- proto: PaperBin10
entities:
- uid: 5148
@@ -36997,29 +36679,29 @@ entities:
- type: Transform
pos: 14.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: PlasmaCanister
- uid: 5860
components:
- type: Transform
pos: 42.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: PlasmaCanister
- uid: 5990
components:
- type: Transform
pos: -5.5,27.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: PlasmaCanister
- uid: 6044
components:
- type: Transform
pos: -1.5,49.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: PlasmaCanister
- proto: PlasticFlapsAirtightClear
entities:
- uid: 4928
@@ -37250,6 +36932,8 @@ entities:
components:
- type: Transform
parent: 6715
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37257,6 +36941,8 @@ entities:
components:
- type: Transform
parent: 6715
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37264,6 +36950,8 @@ entities:
components:
- type: Transform
parent: 6715
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37271,6 +36959,8 @@ entities:
components:
- type: Transform
parent: 6715
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37278,6 +36968,8 @@ entities:
components:
- type: Transform
parent: 6715
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37285,6 +36977,8 @@ entities:
components:
- type: Transform
parent: 6726
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37292,6 +36986,8 @@ entities:
components:
- type: Transform
parent: 6726
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37299,6 +36995,8 @@ entities:
components:
- type: Transform
parent: 6726
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37306,6 +37004,8 @@ entities:
components:
- type: Transform
parent: 6726
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37313,6 +37013,8 @@ entities:
components:
- type: Transform
parent: 6726
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37338,6 +37040,8 @@ entities:
components:
- type: Transform
parent: 231
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37345,6 +37049,8 @@ entities:
components:
- type: Transform
parent: 231
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37352,6 +37058,8 @@ entities:
components:
- type: Transform
parent: 371
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37359,6 +37067,8 @@ entities:
components:
- type: Transform
parent: 371
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37366,6 +37076,8 @@ entities:
components:
- type: Transform
parent: 838
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37373,6 +37085,8 @@ entities:
components:
- type: Transform
parent: 838
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37380,6 +37094,8 @@ entities:
components:
- type: Transform
parent: 1236
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37387,6 +37103,8 @@ entities:
components:
- type: Transform
parent: 1236
+ - type: PointLight
+ enabled: True
- type: Physics
canCollide: False
- type: InsideEntityStorage
@@ -37395,6 +37113,8 @@ entities:
- type: Transform
pos: 34.924313,56.487045
parent: 2
+ - type: PointLight
+ enabled: True
- proto: PowerCellHyper
entities:
- uid: 4003
@@ -37402,6 +37122,8 @@ entities:
- type: Transform
pos: 15.239505,14.481647
parent: 2
+ - type: PointLight
+ enabled: True
- proto: PowerCellRecharger
entities:
- uid: 1040
@@ -38924,41 +38646,57 @@ entities:
- type: Transform
pos: 15.78638,15.122272
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4000
components:
- type: Transform
pos: 15.78638,14.966022
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4057
components:
- type: Transform
pos: 23.280857,14.713973
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4058
components:
- type: Transform
pos: 23.280857,14.635848
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4059
components:
- type: Transform
pos: 23.280857,14.557723
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4060
components:
- type: Transform
pos: 23.452732,14.713973
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4061
components:
- type: Transform
pos: 23.452732,14.620223
parent: 2
+ - type: RCDAmmo
+ charges: 45
- uid: 4062
components:
- type: Transform
pos: 23.452732,14.557723
parent: 2
+ - type: RCDAmmo
+ charges: 45
- proto: Recycler
entities:
- uid: 6470
@@ -39766,6 +39504,9 @@ entities:
- type: Transform
pos: -2.5370512,36.56543
parent: 2
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
- proto: ScalpelLaser
entities:
- uid: 4684
@@ -39858,31 +39599,43 @@ entities:
- type: Transform
pos: 47.56637,24.567667
parent: 2
+ - type: RCDAmmo
+ charges: 15
- uid: 4380
components:
- type: Transform
pos: 47.56637,24.567667
parent: 2
+ - type: RCDAmmo
+ charges: 15
- uid: 4381
components:
- type: Transform
pos: 47.56637,24.567667
parent: 2
+ - type: RCDAmmo
+ charges: 15
- uid: 4594
components:
- type: Transform
pos: 5.565196,36.518917
parent: 2
+ - type: RCDAmmo
+ charges: 15
- uid: 4615
components:
- type: Transform
pos: 5.565196,36.518917
parent: 2
+ - type: RCDAmmo
+ charges: 15
- uid: 4647
components:
- type: Transform
pos: 5.565196,36.518917
parent: 2
+ - type: RCDAmmo
+ charges: 15
- proto: SheetSteel
entities:
- uid: 4373
@@ -40463,8 +40216,8 @@ entities:
- type: Transform
pos: 13.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: StorageCanister
- proto: Stunbaton
entities:
- uid: 5095
@@ -41448,8 +41201,8 @@ entities:
- type: Transform
pos: 12.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: TritiumCanister
- proto: Truncheon
entities:
- uid: 4195
@@ -47521,15 +47274,15 @@ entities:
- type: Transform
pos: -1.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: WaterVaporCanister
- uid: 6046
components:
- type: Transform
pos: -1.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
+ - type: PolymorphableCanister
+ currentPrototype: WaterVaporCanister
- proto: WeaponAdvancedLaser
entities:
- uid: 1017
diff --git a/Resources/Maps/White/Shuttles/CBURN.yml b/Resources/Maps/White/Shuttles/CBURN.yml
new file mode 100644
index 0000000000..85fcefcdf4
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/CBURN.yml
@@ -0,0 +1,8007 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 34: FloorDark
+ 35: FloorDarkDiagonal
+ 39: FloorDarkMini
+ 40: FloorDarkMono
+ 5: FloorDarkOffset
+ 46: FloorDarkPlastic
+ 1: FloorElevatorShaft
+ 52: FloorFreezer
+ 73: FloorMetalDiamond
+ 85: FloorPlastic
+ 86: FloorRGlass
+ 2: FloorShuttleWhite
+ 3: FloorSteel
+ 4: FloorSteelOffset
+ 120: FloorTechMaint2
+ 121: FloorTechMaint3
+ 129: FloorWhiteMono
+ 139: Lattice
+ 140: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: 1.2477331,-10.725662
+ parent: 1
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: eAAAAAAAeAAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAAgAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAASQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVgAAAAAAVgAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAASQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAAAgAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAjAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAASQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAASQAAAAAASQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeQAAAAAAeQAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAASQAAAAAABAAAAAAABAAAAAAASQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAjAAAAAAABAAAAAAABAAAAAAAjAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAQAAAAAAAQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAQAAAAAAAQAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAKAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAKAAAAAAABQAAAAAABQAAAAAAKAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAKAAAAAAAIwAAAAAAIwAAAAAAKAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAJwAAAAAAJwAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAVQAAAAAAVQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAiwAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAASQAAAAAASQAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAANAAAAAAANAAAAAAANAAAAAAAjAAAAAAAIgAAAAAASQAAAAAASQAAAAAAIgAAAAAAjAAAAAAAeAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAVQAAAAAAVQAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAiwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAANAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAeAAAAAAAeAAAAAAAjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 252: -4,27
+ 286: -4,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 251: -5,27
+ 285: -5,22
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 253: -4,25
+ 287: -4,20
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 254: -5,25
+ 284: -5,20
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSe
+ decals:
+ 231: -6,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSw
+ decals:
+ 230: -3,24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 255: -4,26
+ 289: -4,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 226: -5,18
+ 227: -4,18
+ 249: -5,18
+ 250: -4,18
+ 293: -3,21
+ 294: -2,21
+ 295: -1,21
+ 296: -7,21
+ 297: -8,21
+ 298: -6,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 228: -5,24
+ 229: -4,24
+ 290: -3,21
+ 291: -2,21
+ 292: -1,21
+ 299: -8,21
+ 300: -7,21
+ 301: -6,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 256: -5,26
+ 288: -5,21
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 232: -4,2
+ 237: -4,11
+ 244: -4,18
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 234: -5,2
+ 236: -5,11
+ 243: -5,18
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 235: -4,1
+ 247: -4,13
+ 517: -4,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 233: -5,1
+ 248: -5,13
+ 516: -5,6
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 238: -4,7
+ 239: -4,10
+ 245: -4,14
+ 246: -4,17
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 485: 3,4
+ 486: 4,4
+ 522: -13,4
+ 523: -12,4
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
+ decals:
+ 487: 4,-1
+ 488: 4,-1
+ 489: 3,-1
+ 524: -13,-1
+ 525: -12,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 240: -5,10
+ 241: -5,14
+ 242: -5,17
+ 714: -5,7
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 512: -3,0
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 507: -6,0
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 513: -3,3
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 511: -6,0
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 510: -3,0
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 506: -6,3
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 502: -3,1
+ 503: -3,2
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 528: -4,8
+ 529: -4,9
+ 530: -4,15
+ 531: -4,16
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineN
+ decals:
+ 499: -1,4
+ 500: 0,4
+ 501: 1,4
+ - node:
+ color: '#3EB38896'
+ id: BrickTileWhiteLineN
+ decals:
+ 515: -5,4
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineN
+ decals:
+ 314: -6,-4
+ 315: -5,-4
+ 316: -4,-4
+ 317: -2,-4
+ 323: -3,-4
+ 324: -10,-3
+ 325: -9,-3
+ 326: -8,-3
+ 327: -1,-3
+ 328: 0,-3
+ 329: 1,-3
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 478: -10,4
+ 479: -9,4
+ 480: -8,4
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineN
+ decals:
+ 514: -4,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineS
+ decals:
+ 496: -1,-1
+ 497: 0,-1
+ 498: 1,-1
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineS
+ decals:
+ 330: -6,-7
+ 331: -5,-7
+ 332: -4,-7
+ 333: -3,-7
+ 334: -2,-7
+ 335: -1,-7
+ 336: 0,-7
+ 337: 1,-7
+ 338: -8,-7
+ 339: -9,-7
+ 340: -10,-7
+ 508: -5,0
+ 509: -4,0
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 475: -10,-1
+ 476: -9,-1
+ 477: -8,-1
+ - node:
+ color: '#3EB38896'
+ id: BrickTileWhiteLineW
+ decals:
+ 526: -5,8
+ 527: -5,9
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineW
+ decals:
+ 504: -6,1
+ 505: -6,2
+ - node:
+ color: '#EFB34196'
+ id: BrickTileWhiteLineW
+ decals:
+ 532: -5,15
+ 533: -5,16
+ - node:
+ color: '#334E6DC8'
+ id: DeliveryGreyscale
+ decals:
+ 490: -1,-1
+ 491: 0,-1
+ 492: 1,-1
+ 493: 1,4
+ 494: 0,4
+ 495: -1,4
+ - node:
+ color: '#43990996'
+ id: DeliveryGreyscale
+ decals:
+ 318: -6,-2
+ 319: -3,-2
+ 320: -4,-7
+ 321: -3,-7
+ 322: -3,-4
+ - node:
+ color: '#52B4E996'
+ id: DeliveryGreyscale
+ decals:
+ 469: -10,4
+ 470: -9,4
+ 471: -8,4
+ 472: -8,-1
+ 473: -9,-1
+ 474: -10,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: DeliveryGreyscale
+ decals:
+ 481: 3,-1
+ 482: 4,-1
+ 483: 4,4
+ 484: 3,4
+ 518: -13,-1
+ 519: -12,-1
+ 520: -12,4
+ 521: -13,4
+ - node:
+ color: '#781D2393'
+ id: Dirt
+ decals:
+ 2: 0,-7
+ - node:
+ color: '#79150096'
+ id: Dirt
+ decals:
+ 5: -9,2
+ 6: 0,7
+ 7: 0,6
+ 8: -1,6
+ 9: -1,10
+ 10: -1,10
+ 11: 0,10
+ 12: 0,10
+ 13: 0,10
+ 14: -1,11
+ 15: 1,11
+ 16: 1,11
+ 17: 1,10
+ 18: 0,10
+ 19: 0,9
+ 20: 2,10
+ 21: 2,10
+ 22: 1,10
+ 23: 2,9
+ 24: 2,8
+ 25: 2,7
+ 26: 2,6
+ 27: 1,6
+ 28: 0,7
+ 29: 0,7
+ 30: 0,6
+ 31: 1,6
+ 32: 1,6
+ 33: -1,6
+ 34: -2,6
+ 35: -1,8
+ 36: -1,9
+ 37: 0,9
+ 38: 1,10
+ 39: 2,9
+ 40: 2,9
+ 84: -8,8
+ 85: -10,8
+ 86: -11,8
+ 87: -11,9
+ 88: -11,9
+ 89: -10,10
+ 90: -8,10
+ 91: -9,14
+ 92: -10,14
+ 93: -10,14
+ 94: -9,13
+ 95: -8,14
+ 96: -8,14
+ 97: -9,15
+ 98: -9,16
+ 99: -9,16
+ 100: -9,16
+ 101: -10,16
+ 102: -10,16
+ 103: -8,16
+ 104: -8,17
+ 105: -8,18
+ 106: -9,18
+ 107: -9,17
+ 108: -10,17
+ 109: -8,16
+ 110: -9,17
+ 111: -10,15
+ 112: -10,15
+ 113: -9,15
+ 114: -8,14
+ 115: -10,14
+ 116: -10,14
+ 117: -10,15
+ 118: -10,14
+ 119: -9,13
+ 120: -8,13
+ 121: -7,13
+ 122: -1,13
+ 123: -1,13
+ 124: -1,18
+ 125: -1,16
+ 126: -1,15
+ 127: -1,14
+ 128: -1,13
+ 129: 0,14
+ 130: 0,16
+ 131: -1,17
+ 132: 0,17
+ 133: 1,15
+ 134: 1,14
+ 135: 0,13
+ 136: -1,15
+ 137: 0,15
+ 138: -1,16
+ 139: -1,17
+ 140: -1,18
+ 141: -1,17
+ 142: -1,15
+ 143: -1,15
+ 144: 0,14
+ 341: -9,-6
+ 342: -10,-6
+ 343: -9,-7
+ 344: -8,-7
+ 345: -8,-6
+ 346: -8,-5
+ 347: -9,-5
+ 348: -8,-4
+ 349: -9,-4
+ 350: -10,-4
+ 351: -9,-3
+ 352: -8,-3
+ 353: -9,-5
+ 354: -10,-6
+ 355: -10,-7
+ 356: -7,-7
+ 357: -7,-5
+ 358: -7,-5
+ 359: -7,-5
+ 360: -6,-5
+ 361: -6,-6
+ 362: -5,-5
+ 363: -5,-4
+ 364: -5,-6
+ 365: -5,-7
+ 366: -4,-6
+ 367: -4,-5
+ 368: -4,-4
+ 369: -3,-5
+ 370: -3,-6
+ 371: -3,-6
+ 372: -2,-7
+ 373: -2,-6
+ 374: -3,-7
+ 375: -4,-7
+ 376: -3,-5
+ 377: -2,-5
+ 378: -2,-4
+ 379: -4,-4
+ 380: -5,-4
+ 381: -6,-4
+ 382: -1,-6
+ 383: 0,-6
+ 384: -1,-7
+ 385: 1,-7
+ 386: 1,-6
+ 387: 1,-5
+ 388: 0,-5
+ 389: -1,-4
+ 390: 1,-4
+ 391: 1,-3
+ 392: 0,-3
+ 393: 0,-4
+ 394: -1,-5
+ 395: -1,-5
+ 396: -5,-6
+ 397: -6,-6
+ 398: -8,-7
+ 399: -9,-6
+ 400: -8,-6
+ 401: -8,-3
+ 402: -9,-3
+ 403: -10,-4
+ 404: -9,-4
+ 405: -8,-4
+ 406: -5,-3
+ 407: -4,-3
+ 408: -4,-2
+ 409: -5,-2
+ 410: -6,-2
+ 411: -3,-2
+ 412: -4,-1
+ 413: -5,-1
+ 414: -5,-2
+ 415: -4,-3
+ 416: -5,-3
+ 417: -4,-1
+ 418: -5,4
+ 419: -5,3
+ 420: -5,3
+ 421: -6,3
+ 422: -6,2
+ 423: -5,2
+ 424: -6,1
+ 425: -4,1
+ 426: -3,1
+ 427: -5,1
+ 428: -4,2
+ 429: -3,2
+ 430: -4,3
+ 431: -4,3
+ 432: -3,2
+ 433: -3,3
+ - node:
+ cleanable: True
+ color: '#79150096'
+ id: Dirt
+ decals:
+ 534: -9,0
+ 535: -10,0
+ 536: -9,1
+ 537: -10,2
+ 538: -10,2
+ 539: -10,1
+ 540: -10,3
+ 541: -8,3
+ 542: -8,2
+ 543: -8,1
+ 544: -8,0
+ 545: -9,3
+ 546: -12,0
+ 547: -13,0
+ 548: -12,-1
+ 549: -13,-1
+ 550: -12,0
+ 551: -12,3
+ 552: -13,3
+ 553: -13,4
+ 554: -12,4
+ 555: -12,4
+ 556: -13,4
+ 557: -6,1
+ 558: -6,0
+ 559: -5,1
+ 560: -4,2
+ 561: -4,1
+ 562: -5,2
+ 563: -4,0
+ 564: -5,0
+ 565: -3,0
+ 566: -6,3
+ 567: -5,4
+ 568: -4,4
+ 569: -3,4
+ 570: -6,4
+ 571: -9,3
+ 572: -10,3
+ 573: -8,4
+ 574: -8,2
+ 575: -9,2
+ 576: -8,1
+ 577: -9,0
+ 578: 0,0
+ 579: -1,0
+ 580: 0,1
+ 581: -1,1
+ 582: -1,3
+ 583: 0,3
+ 584: -1,2
+ 585: 0,3
+ 586: -1,4
+ 587: 1,4
+ 588: 1,3
+ 589: 0,3
+ 590: 1,1
+ 591: 1,0
+ 592: 1,-1
+ 593: 0,-1
+ 594: 3,0
+ 595: 3,-1
+ 596: 4,-1
+ 597: 0,2
+ 598: -1,3
+ 599: 1,3
+ 600: 3,3
+ 601: 3,4
+ 602: 4,4
+ 603: 4,3
+ 604: 0,2
+ 605: -4,6
+ 606: -5,6
+ 607: -4,7
+ 608: -5,8
+ 609: -5,8
+ 610: -5,9
+ 611: -5,9
+ 612: -4,8
+ 613: -4,9
+ 614: -4,11
+ 615: -4,9
+ 616: -5,10
+ 617: -5,11
+ 618: -2,10
+ 619: -2,9
+ 620: -2,7
+ 621: -2,6
+ 622: 2,10
+ 623: -1,10
+ 624: -2,10
+ 625: -2,9
+ 626: -4,10
+ 627: -5,10
+ 628: -5,11
+ 629: -4,13
+ 630: -5,13
+ 631: -5,14
+ 632: -4,14
+ 633: -4,15
+ 634: -5,15
+ 635: -5,16
+ 636: -4,16
+ 637: -5,17
+ 638: -5,17
+ 639: -4,18
+ 640: -6,15
+ 641: -6,16
+ 642: -3,16
+ 643: -3,15
+ 644: -3,9
+ 645: -3,9
+ 646: -3,8
+ 647: -3,8
+ 648: -6,9
+ 649: -6,8
+ 650: -6,8
+ 651: -5,5
+ 652: -4,5
+ 653: -4,5
+ 654: -5,5
+ 655: -7,1
+ 656: -7,2
+ 657: -2,1
+ 658: -2,2
+ 659: -3,3
+ 660: -3,21
+ 661: -7,20
+ 662: -7,20
+ 663: -7,21
+ 664: -8,21
+ 665: -6,22
+ 666: -8,20
+ 667: -5,21
+ 668: -5,22
+ 669: -4,20
+ 670: -4,20
+ 671: -2,20
+ 672: -1,20
+ 673: -1,22
+ 674: -2,22
+ 675: -2,21
+ 676: -2,21
+ 677: -4,24
+ 678: -5,24
+ 679: -6,25
+ 680: -6,24
+ 681: -7,24
+ 682: -7,26
+ 683: -6,26
+ 684: -6,28
+ 685: -5,29
+ 686: -4,28
+ 687: -4,27
+ 688: -5,26
+ 689: -4,26
+ 690: -3,25
+ 691: -3,26
+ 692: -3,28
+ 693: -4,25
+ 694: -5,25
+ 695: -4,27
+ 715: -5,7
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#79150096'
+ id: Dirt
+ decals:
+ 205: -5,30
+ 206: -4,30
+ 207: -7,27
+ 208: -7,24
+ 209: -5,30
+ 210: -14,3
+ 211: -14,3
+ 212: -14,0
+ 213: -14,0
+ 214: 2,3
+ 215: -4,5
+ 216: -5,5
+ 217: -4,5
+ 218: -4,12
+ 219: -5,19
+ 220: -4,19
+ 221: -5,19
+ 222: -5,23
+ 223: -4,23
+ 224: -4,23
+ - node:
+ color: '#B02E26A3'
+ id: Dirt
+ decals:
+ 225: -7,27
+ - node:
+ color: '#DE3A3A8C'
+ id: Dirt
+ decals:
+ 277: -4,13
+ 278: -5,13
+ 279: -4,14
+ 280: -5,14
+ 281: -4,17
+ 282: -4,17
+ 283: -5,18
+ - node:
+ color: '#DE3A3A96'
+ id: Dirt
+ decals:
+ 257: -2,14
+ 258: -2,15
+ 259: -2,16
+ 260: -2,17
+ 261: -2,17
+ 262: -2,16
+ 263: -2,15
+ 264: -2,17
+ 265: -2,15
+ 266: -2,14
+ 267: -7,14
+ 268: -7,16
+ 269: -8,15
+ 270: -7,16
+ 271: -7,16
+ 272: -7,14
+ 273: -7,16
+ 274: -7,17
+ 275: -8,15
+ 276: -7,15
+ - node:
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 145: -1,14
+ 146: -1,13
+ 147: 1,13
+ 148: 1,15
+ 149: 0,16
+ 150: 0,18
+ 151: -1,17
+ 152: -7,13
+ 153: -8,17
+ 154: -9,17
+ 155: -10,16
+ 156: -10,15
+ 157: -9,14
+ 158: -9,13
+ 159: -9,13
+ - node:
+ color: '#79150096'
+ id: DirtHeavy
+ decals:
+ 464: 0,-4
+ 465: -8,-5
+ 466: -10,-6
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 160: -1,17
+ 161: -1,16
+ 162: -1,15
+ 163: 0,13
+ 164: 1,14
+ 165: 1,15
+ 166: 0,15
+ 167: -2,13
+ 168: -1,14
+ 169: 0,18
+ 170: -1,19
+ 171: -9,13
+ 172: -10,14
+ 173: -9,15
+ 174: -10,15
+ 175: -9,15
+ 176: -9,16
+ 177: -9,17
+ 178: -9,14
+ 179: -10,13
+ 180: -10,15
+ 181: -8,17
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 696: -9,1
+ 697: -8,2
+ 698: -8,0
+ 699: -6,0
+ 700: -5,3
+ 701: -3,0
+ 702: 0,1
+ 703: -1,3
+ - node:
+ color: '#79150096'
+ id: DirtHeavyMonotile
+ decals:
+ 41: 2,9
+ 42: 2,10
+ 43: 0,10
+ 44: 0,10
+ 45: 0,9
+ 46: 0,9
+ 47: -1,10
+ 48: -1,6
+ 49: -1,6
+ 50: 0,6
+ 51: 1,6
+ 52: 1,6
+ 53: 0,7
+ 54: 0,6
+ 55: 2,6
+ 56: 2,7
+ 57: 2,9
+ 58: 1,9
+ 59: -1,9
+ 60: -1,10
+ 61: -1,10
+ 62: -2,11
+ 63: -1,11
+ 64: 1,11
+ 65: 2,11
+ 66: -9,8
+ 67: -10,8
+ 68: -11,8
+ 69: -11,9
+ 70: -11,10
+ 71: -10,11
+ 72: -9,10
+ 73: -7,11
+ 74: -10,10
+ 75: -10,10
+ 76: -11,10
+ 77: -11,9
+ 78: -10,9
+ 79: -10,8
+ 80: -10,8
+ 81: -10,8
+ 82: -11,6
+ 83: -9,6
+ 434: -9,-7
+ 435: -9,-6
+ 436: -10,-6
+ 437: -8,-5
+ 438: -9,-4
+ 439: -9,-4
+ 440: -6,-5
+ 441: -6,-6
+ 442: -5,-5
+ 443: -4,-5
+ 444: -4,-6
+ 445: -3,-6
+ 446: -1,-5
+ 447: 0,-4
+ 448: 0,-5
+ 449: 1,-6
+ 450: 1,-5
+ 451: 1,-4
+ 452: -1,-6
+ 453: 0,-6
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 3: 1,-7
+ 4: -9,2
+ 182: 0,15
+ 183: 0,16
+ 184: -1,18
+ 185: -2,13
+ 186: -2,13
+ 187: 1,13
+ 188: 1,14
+ 189: 1,15
+ 190: 1,16
+ 191: 0,17
+ 192: 0,17
+ 193: 0,14
+ 194: 0,17
+ 195: 0,18
+ 196: -8,16
+ 197: -8,17
+ 198: -7,18
+ 199: -7,18
+ 200: -9,17
+ 201: -10,15
+ 202: -10,13
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 704: -2,9
+ 705: -2,7
+ 706: -7,9
+ 707: -7,8
+ 708: -9,8
+ 709: -10,8
+ 710: -10,10
+ 711: -8,15
+ 712: -6,24
+ 713: -7,26
+ - node:
+ color: '#79150096'
+ id: DirtLight
+ decals:
+ 454: -5,-6
+ 455: -5,-5
+ 456: -6,-5
+ 457: -4,-5
+ 458: -4,-6
+ 459: -3,-6
+ 460: 0,-4
+ 461: 0,-6
+ 462: -8,-4
+ 463: -9,-4
+ - node:
+ color: '#DE3A3A72'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 302: -6,20
+ - node:
+ color: '#DE3A3A72'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 305: -3,20
+ - node:
+ color: '#DE3A3A72'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 304: -6,22
+ - node:
+ color: '#DE3A3A72'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 303: -3,22
+ - node:
+ color: '#43990996'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 1: -6,-1
+ - node:
+ color: '#43990996'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 0: -3,-1
+ - node:
+ color: '#334E6DC8'
+ id: WarnFullGreyscale
+ decals:
+ 203: -5,30
+ 204: -4,30
+ - node:
+ color: '#DE3A3A72'
+ id: WarnLineGreyscaleN
+ decals:
+ 306: -2,20
+ 307: -1,20
+ 312: -7,20
+ 313: -8,20
+ - node:
+ color: '#DE3A3A72'
+ id: WarnLineGreyscaleS
+ decals:
+ 308: -2,22
+ 309: -1,22
+ 310: -7,22
+ 311: -8,22
+ - node:
+ color: '#8C2E0093'
+ id: splatter
+ decals:
+ 468: -9.740415,-6.887703
+ - node:
+ color: '#D79E0093'
+ id: splatter
+ decals:
+ 467: -9.865415,-6.809578
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 64447
+ 0,-1:
+ 0: 45243
+ -1,0:
+ 0: 49147
+ 0,1:
+ 0: 30475
+ -1,1:
+ 0: 56603
+ 0,2:
+ 0: 30583
+ -1,2:
+ 0: 40447
+ 1: 16384
+ 0,3:
+ 0: 13104
+ 2: 128
+ -1,3:
+ 0: 64785
+ 1: 192
+ 0,4:
+ 0: 307
+ 1,0:
+ 0: 12563
+ 1,1:
+ 0: 1
+ 2: 8192
+ 1,2:
+ 2: 258
+ 1,-1:
+ 0: 4096
+ 2: 2
+ -4,0:
+ 0: 51340
+ -4,1:
+ 0: 8
+ 2: 16384
+ -4,2:
+ 2: 2052
+ -4,-1:
+ 0: 32768
+ 2: 4
+ -3,0:
+ 0: 64991
+ -3,1:
+ 0: 1549
+ -3,2:
+ 0: 61167
+ -3,-1:
+ 0: 53469
+ -3,3:
+ 2: 16
+ 0: 52416
+ -3,4:
+ 0: 2252
+ -2,0:
+ 0: 57341
+ -2,1:
+ 1: 1
+ 0: 35724
+ -2,2:
+ 0: 48127
+ -2,3:
+ 0: 64440
+ -2,-1:
+ 0: 55513
+ -2,4:
+ 0: 35775
+ -1,-1:
+ 0: 45497
+ -1,4:
+ 0: 7647
+ 0,5:
+ 2: 34
+ -1,5:
+ 0: 8191
+ 0,6:
+ 2: 17
+ -3,5:
+ 2: 68
+ -2,5:
+ 0: 36863
+ -3,6:
+ 2: 136
+ -2,6:
+ 0: 61166
+ 2: 4096
+ -2,7:
+ 0: 3276
+ 2: 16896
+ -1,6:
+ 0: 30583
+ 2: 32768
+ -1,7:
+ 0: 819
+ 2: 9216
+ -4,-2:
+ 2: 16392
+ -4,-3:
+ 2: 32768
+ -3,-2:
+ 0: 40384
+ -3,-3:
+ 2: 1
+ 0: 26188
+ -2,-3:
+ 0: 47887
+ -2,-2:
+ 0: 36850
+ -1,-3:
+ 0: 56591
+ -1,-2:
+ 0: 8181
+ 0,-3:
+ 0: 26147
+ 2: 8
+ 0,-2:
+ 0: 39728
+ 1,-3:
+ 2: 4096
+ 1,-2:
+ 2: 8193
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,23.5
+ parent: 2
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 2
+ - uid: 5
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 7
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,7.5
+ parent: 2
+- proto: AirlockAtmosphericsLocked
+ entities:
+ - uid: 814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 2
+ - uid: 815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
+ parent: 2
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,19.5
+ parent: 2
+ - uid: 808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 2
+- proto: AirlockEVALocked
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+- proto: AirlockMaintAtmoLocked
+ entities:
+ - uid: 816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,16.5
+ parent: 2
+- proto: AirlockMaintEngiLocked
+ entities:
+ - uid: 810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,15.5
+ parent: 2
+ - uid: 811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,16.5
+ parent: 2
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 2
+- proto: AirlockMedicalLocked
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+- proto: AirlockShuttle
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,0.5
+ parent: 2
+ - type: Door
+ secondsUntilStateChange: -2166.9548
+ state: Opening
+ - uid: 33
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,3.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 2
+- proto: AirlockVirologyGlassLocked
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 2
+- proto: AirlockVirologyLocked
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 24
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 2
+- proto: APCBasic
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,15.5
+ parent: 2
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 835
+ components:
+ - type: Transform
+ pos: -13.5,0.5
+ parent: 2
+ - uid: 836
+ components:
+ - type: Transform
+ pos: -13.5,3.5
+ parent: 2
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 2
+- proto: BaseComputer
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,25.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,25.5
+ parent: 2
+- proto: Bed
+ entities:
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -9.5,-4.5
+ parent: 2
+ - uid: 257
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+- proto: BedsheetGreen
+ entities:
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-4.5
+ parent: 2
+ - uid: 256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 2
+- proto: BlastDoorOpen
+ entities:
+ - uid: 818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 867
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 867
+ - uid: 821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 867
+ - uid: 828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 867
+ - uid: 829
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 889
+ - 869
+ - uid: 830
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 889
+ - 869
+ - uid: 831
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 832
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 833
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 834
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 861
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 868
+ - uid: 862
+ components:
+ - type: Transform
+ pos: -3.5,19.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 868
+ - uid: 863
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 864
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 865
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 866
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 876
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 878
+ components:
+ - type: Transform
+ pos: -13.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 870
+ - uid: 883
+ components:
+ - type: Transform
+ pos: -12.5,8.5
+ parent: 2
+- proto: BoxFolderCentCom
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -1.4711609,24.592113
+ parent: 2
+- proto: BoxFolderGreen
+ entities:
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -6.377411,24.545238
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -6.658661,24.701488
+ parent: 2
+- proto: BoxVial
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -4.486111,-6.261362
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ pos: -8.529626,-2.323269
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -9.5,13.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -6.5,13.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -8.5,18.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 2
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -5.5,23.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -3.5,23.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -1.5,23.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -4.5,24.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -4.5,25.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -4.5,26.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -4.5,27.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -4.5,28.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -4.5,29.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -4.5,30.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -3.5,21.5
+ parent: 2
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -2.5,21.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -1.5,21.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -0.5,21.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: -5.5,21.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: -6.5,21.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -7.5,21.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 2
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 2
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -4.5,17.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 2
+ - uid: 105
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 106
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 2
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 2
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -0.5,15.5
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -0.5,17.5
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -0.5,18.5
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 2
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -9.5,11.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -9.5,8.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -7.5,11.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -7.5,8.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 2
+ - uid: 167
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 185
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 2
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -9.5,0.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: -12.5,4.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: -12.5,3.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: -12.5,2.5
+ parent: 2
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 210
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: Transform
+ pos: -8.5,13.5
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 2
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 222
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 223
+ components:
+ - type: Transform
+ pos: -11.5,9.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -11.5,8.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ pos: -11.5,7.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ pos: -12.5,7.5
+ parent: 2
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: -12.5,-1.5
+ parent: 2
+ - uid: 229
+ components:
+ - type: Transform
+ pos: -12.5,-2.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ pos: -9.5,-5.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: -6.5,18.5
+ parent: 2
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 266
+ components:
+ - type: Transform
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 268
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 293
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 403
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 417
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 2
+ - uid: 438
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -8.5,17.5
+ parent: 2
+ - uid: 481
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ pos: -9.5,-3.5
+ parent: 2
+ - uid: 496
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: -8.5,-4.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 2
+ - uid: 745
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: -11.5,-4.5
+ parent: 2
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 759
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 909
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 910
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 299
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 2
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 2
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -10.5,9.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: -10.5,10.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -4.5,10.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: -4.5,17.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: -4.5,18.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -4.5,20.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -4.5,21.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -4.5,22.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: -5.5,23.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 362
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 2
+ - uid: 366
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - uid: 370
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 707
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 2
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+- proto: CableTerminal
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,10.5
+ parent: 2
+ - uid: 385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
+ parent: 2
+- proto: Catwalk
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ pos: -9.5,9.5
+ parent: 2
+ - uid: 387
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 2
+ - uid: 388
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 2
+ - uid: 389
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+- proto: ChairOfficeDark
+ entities:
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,26.5
+ parent: 2
+ - uid: 401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,25.5
+ parent: 2
+ - uid: 771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,27.5
+ parent: 2
+- proto: ChairOfficeLight
+ entities:
+ - uid: 677
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-3.5
+ parent: 2
+- proto: ChairPilotSeat
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,28.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,28.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: Transform
+ pos: -7.5,22.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: Transform
+ pos: -6.5,22.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 2
+ - uid: 408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,20.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,20.5
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,20.5
+ parent: 2
+ - uid: 411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,20.5
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,20.5
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,20.5
+ parent: 2
+ - uid: 414
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: -1.5,22.5
+ parent: 2
+ - uid: 416
+ components:
+ - type: Transform
+ pos: -0.5,22.5
+ parent: 2
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: -12.5,-0.5
+ parent: 2
+ - uid: 420
+ components:
+ - type: Transform
+ pos: -6.5,18.5
+ parent: 2
+- proto: ClosetEmergencyN2FilledRandom
+ entities:
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ pos: -11.5,4.5
+ parent: 2
+- proto: ClosetFireFilled
+ entities:
+ - uid: 423
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 2
+ - uid: 424
+ components:
+ - type: Transform
+ pos: -12.5,4.5
+ parent: 2
+ - uid: 425
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 2
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 2
+- proto: ClosetL3Virology
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+- proto: ClosetL3VirologyFilled
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 719
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 2
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 429
+ components:
+ - type: Transform
+ pos: -0.5,18.5
+ parent: 2
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 0.5,18.5
+ parent: 2
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 2
+- proto: ClosetToolFilled
+ entities:
+ - uid: 435
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 436
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -0.48486328,15.584873
+ parent: 2
+- proto: ComputerAlert
+ entities:
+ - uid: 769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,27.5
+ parent: 2
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,27.5
+ parent: 2
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,26.5
+ parent: 2
+- proto: ComputerIFF
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 2
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,26.5
+ parent: 2
+- proto: ComputerRadar
+ entities:
+ - uid: 298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,28.5
+ parent: 2
+- proto: ComputerShuttle
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -4.5,29.5
+ parent: 2
+- proto: ComputerStationRecords
+ entities:
+ - uid: 296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,28.5
+ parent: 2
+- proto: CrateEmergencyInflatablewall
+ entities:
+ - uid: 450
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 2
+- proto: CrateEmergencyRadiation
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -8.5,13.5
+ parent: 2
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 2
+- proto: CrateEngineeringGear
+ entities:
+ - uid: 453
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateEngineeringToolbox
+ entities:
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 2
+- proto: CrateMedicalScrubs
+ entities:
+ - uid: 280
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 2
+- proto: CrateMedicalSupplies
+ entities:
+ - uid: 297
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 456
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 845
+ components:
+ - type: Transform
+ pos: -5.5,29.5
+ parent: 2
+- proto: Defibrillator
+ entities:
+ - uid: 458
+ components:
+ - type: Transform
+ pos: -8.529861,18.489729
+ parent: 2
+- proto: DiseaseDiagnoser
+ entities:
+ - uid: 591
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 2
+- proto: EmergencyLight
+ entities:
+ - uid: 460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,21.5
+ parent: 2
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,21.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,17.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 2
+ - uid: 465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,8.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,7.5
+ parent: 2
+ - uid: 468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - uid: 474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,2.5
+ parent: 2
+ - uid: 475
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,15.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 2
+- proto: EmergencyMedipen
+ entities:
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 1.4545593,1.7414551
+ parent: 2
+- proto: filingCabinetDrawer
+ entities:
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 2
+- proto: filingCabinetRandom
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 2
+- proto: Firelock
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 2
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 483
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 2
+ - uid: 484
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 2
+ - uid: 485
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 486
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 487
+ components:
+ - type: Transform
+ pos: -10.5,0.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: -10.5,3.5
+ parent: 2
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 499
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - uid: 500
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 2
+ - uid: 502
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ pos: -2.5,15.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -5.5,16.5
+ parent: 2
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -4.5,19.5
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ pos: -3.5,19.5
+ parent: 2
+ - uid: 513
+ components:
+ - type: Transform
+ pos: -4.5,23.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ pos: -3.5,23.5
+ parent: 2
+- proto: FirelockEdge
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 2
+ - uid: 20
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,4.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,4.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,11.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,11.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 2
+- proto: FloorDrain
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+ - uid: 30
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: GasMinerNitrogenStation
+ entities:
+ - uid: 517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,6.5
+ parent: 2
+- proto: GasMinerOxygenStation
+ entities:
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,6.5
+ parent: 2
+- proto: GasMixer
+ entities:
+ - uid: 519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+- proto: GasPassiveVent
+ entities:
+ - uid: 520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 522
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 755
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 534
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 536
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 537
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 238
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 443
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 492
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 579
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 580
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 582
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 583
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 584
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 585
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 586
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 589
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -7.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 648
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 654
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 655
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 656
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 658
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 659
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 669
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 670
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 671
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 730
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 756
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GasPort
+ entities:
+ - uid: 709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,8.5
+ parent: 2
+- proto: GasPressurePump
+ entities:
+ - uid: 710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+- proto: GasVentPump
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 245
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 375
+ components:
+ - type: Transform
+ pos: -4.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 713
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+ - uid: 715
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#111199FF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 353
+ components:
+ - type: Transform
+ pos: -3.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 445
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 451
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 491
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+ - uid: 729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GasVolumePump
+ entities:
+ - uid: 735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#991111FF'
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 736
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 738
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 2
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 2
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+- proto: Girder
+ entities:
+ - uid: 276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-2.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-3.5
+ parent: 2
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -3.5,30.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: -4.5,30.5
+ parent: 2
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,8.5
+ parent: 2
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 0.5,21.5
+ parent: 2
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -8.5,21.5
+ parent: 2
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,28.5
+ parent: 2
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,28.5
+ parent: 2
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -7.5,25.5
+ parent: 2
+ - uid: 785
+ components:
+ - type: Transform
+ pos: -7.5,24.5
+ parent: 2
+ - uid: 786
+ components:
+ - type: Transform
+ pos: -0.5,25.5
+ parent: 2
+ - uid: 787
+ components:
+ - type: Transform
+ pos: -0.5,24.5
+ parent: 2
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 2
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 792
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 793
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 794
+ components:
+ - type: Transform
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 795
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 2
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 797
+ components:
+ - type: Transform
+ pos: -13.5,2.5
+ parent: 2
+ - uid: 798
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,7.5
+ parent: 2
+ - uid: 805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,7.5
+ parent: 2
+ - uid: 806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,7.5
+ parent: 2
+- proto: GrilleDiagonal
+ entities:
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -5.5,30.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,29.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,29.5
+ parent: 2
+ - uid: 673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,30.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -6.5,29.5
+ parent: 2
+ - uid: 702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,29.5
+ parent: 2
+- proto: Gyroscope
+ entities:
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,23.5
+ parent: 2
+ - uid: 799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,23.5
+ parent: 2
+- proto: HolofanProjector
+ entities:
+ - uid: 822
+ components:
+ - type: Transform
+ pos: -9.641907,11.322522
+ parent: 2
+ - uid: 823
+ components:
+ - type: Transform
+ pos: -9.407532,11.697522
+ parent: 2
+- proto: KitchenMicrowave
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 253
+ components:
+ - type: Transform
+ pos: -9.5,-3.5
+ parent: 2
+- proto: Lamp
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: -5.468435,-3.0793047
+ parent: 2
+ - uid: 824
+ components:
+ - type: Transform
+ pos: -9.524406,1.9696546
+ parent: 2
+- proto: LockerAtmosphericsFilledHardsuit
+ entities:
+ - uid: 825
+ components:
+ - type: Transform
+ pos: -10.5,11.5
+ parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 826
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+ - uid: 827
+ components:
+ - type: Transform
+ pos: -7.5,-0.5
+ parent: 2
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 674
+ components:
+ - type: Transform
+ pos: -8.405861,16.66937
+ parent: 2
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 705
+ components:
+ - type: Transform
+ pos: -8.421486,16.434996
+ parent: 2
+- proto: NitrogenCanister
+ entities:
+ - uid: 837
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 2
+ - type: PolymorphableCanister
+ currentPrototype: NitrogenCanister
+- proto: OxygenCanister
+ entities:
+ - uid: 839
+ components:
+ - type: Transform
+ pos: -6.5,13.5
+ parent: 2
+ - type: PolymorphableCanister
+ currentPrototype: OxygenCanister
+- proto: PlaqueAtmos
+ entities:
+ - uid: 840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,12.5
+ parent: 2
+- proto: PortableScrubber
+ entities:
+ - uid: 841
+ components:
+ - type: Transform
+ pos: -7.5,11.5
+ parent: 2
+ - uid: 842
+ components:
+ - type: Transform
+ pos: -6.5,11.5
+ parent: 2
+ - uid: 843
+ components:
+ - type: Transform
+ pos: -11.5,8.5
+ parent: 2
+- proto: PowerCellRecharger
+ entities:
+ - uid: 846
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 2
+- proto: PowerConsoleWallMount
+ entities:
+ - uid: 847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-5.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: -4.5,29.5
+ parent: 2
+ - uid: 676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,2.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,21.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,21.5
+ parent: 2
+ - uid: 848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,2.5
+ parent: 2
+ - uid: 849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 2
+ - uid: 851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 2
+ - uid: 854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,26.5
+ parent: 2
+ - uid: 857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,26.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,13.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: -0.5,18.5
+ parent: 2
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,13.5
+ parent: 2
+- proto: Rack
+ entities:
+ - uid: 432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,16.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,17.5
+ parent: 2
+ - uid: 874
+ components:
+ - type: Transform
+ pos: -9.5,11.5
+ parent: 2
+ - uid: 877
+ components:
+ - type: Transform
+ pos: -8.5,18.5
+ parent: 2
+ - uid: 880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,15.5
+ parent: 2
+ - uid: 881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,16.5
+ parent: 2
+- proto: Railing
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -12.5,1.5
+ parent: 2
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,2.5
+ parent: 2
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,2.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: -11.5,1.5
+ parent: 2
+ - uid: 774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 781
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 2
+- proto: ReinforcedUraniumWindow
+ entities:
+ - uid: 381
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 2
+ - uid: 431
+ components:
+ - type: Transform
+ pos: -3.5,30.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ pos: -4.5,30.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,7.5
+ parent: 2
+ - uid: 855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,7.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,1.5
+ parent: 2
+ - uid: 890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,2.5
+ parent: 2
+ - uid: 891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,2.5
+ parent: 2
+ - uid: 893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,0.5
+ parent: 2
+ - uid: 894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,3.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 2
+ - uid: 901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,21.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,21.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,24.5
+ parent: 2
+ - uid: 904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,25.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,24.5
+ parent: 2
+ - uid: 906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,25.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,28.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,28.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -12.5,8.5
+ parent: 2
+ - uid: 1207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,7.5
+ parent: 2
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,7.5
+ parent: 2
+- proto: ReinforcedUraniumWindowDiagonal
+ entities:
+ - uid: 599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,30.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,29.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,29.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,29.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: -6.5,29.5
+ parent: 2
+ - uid: 706
+ components:
+ - type: Transform
+ pos: -5.5,30.5
+ parent: 2
+- proto: ShelfGlass
+ entities:
+ - uid: 926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,1.5
+ parent: 2
+ - uid: 927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,2.5
+ parent: 2
+- proto: SignalButton
+ entities:
+ - uid: 867
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 828:
+ - Pressed: Toggle
+ 821:
+ - Pressed: Toggle
+ 818:
+ - Pressed: Toggle
+ 820:
+ - Pressed: Toggle
+ - uid: 868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.4680905,25.689644
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 861:
+ - Pressed: Toggle
+ 862:
+ - Pressed: Toggle
+ - uid: 869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 830:
+ - Pressed: Toggle
+ 829:
+ - Pressed: Toggle
+ - uid: 870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.4680905,25.37946
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 866:
+ - Pressed: Toggle
+ 865:
+ - Pressed: Toggle
+ 864:
+ - Pressed: Toggle
+ 863:
+ - Pressed: Toggle
+ 882:
+ - Pressed: Toggle
+ 879:
+ - Pressed: Toggle
+ 878:
+ - Pressed: Toggle
+ 876:
+ - Pressed: Toggle
+ 833:
+ - Pressed: Toggle
+ 834:
+ - Pressed: Toggle
+ 831:
+ - Pressed: Toggle
+ 832:
+ - Pressed: Toggle
+ - uid: 889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 830:
+ - Pressed: Toggle
+ 829:
+ - Pressed: Toggle
+- proto: SignAtmos
+ entities:
+ - uid: 928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 2
+- proto: SignBridge
+ entities:
+ - uid: 929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,23.5
+ parent: 2
+- proto: SignEVA
+ entities:
+ - uid: 930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 2
+- proto: SignMedical
+ entities:
+ - uid: 931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,0.5
+ parent: 2
+- proto: SignSpace
+ entities:
+ - uid: 933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,1.5
+ parent: 2
+ - uid: 934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,1.5
+ parent: 2
+- proto: SignToolStorage
+ entities:
+ - uid: 936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,14.5
+ parent: 2
+- proto: SMESBasic
+ entities:
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 2
+- proto: SpaceMedipen
+ entities:
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 1.4701843,1.4602051
+ parent: 2
+- proto: StasisBed
+ entities:
+ - uid: 940
+ components:
+ - type: Transform
+ pos: -8.5,-0.5
+ parent: 2
+- proto: SubstationBasic
+ entities:
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 2
+- proto: SuitStorageEVA
+ entities:
+ - uid: 943
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+- proto: TableReinforced
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 272
+ components:
+ - type: Transform
+ pos: -9.5,-3.5
+ parent: 2
+ - uid: 273
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-6.5
+ parent: 2
+ - uid: 482
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 2
+ - uid: 949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,24.5
+ parent: 2
+ - uid: 950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,24.5
+ parent: 2
+ - uid: 951
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 2
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 953
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 2
+- proto: Thruster
+ entities:
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-5.5
+ parent: 2
+ - uid: 742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,10.5
+ parent: 2
+ - uid: 743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 2
+ - uid: 744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,6.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-7.5
+ parent: 2
+ - uid: 753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 2
+ - uid: 954
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 2
+ - uid: 955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,10.5
+ parent: 2
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 2
+ - uid: 958
+ components:
+ - type: Transform
+ pos: -9.5,20.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,24.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,24.5
+ parent: 2
+ - uid: 968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-3.5
+ parent: 2
+ - uid: 969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 2
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-6.5
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 2
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 973
+ components:
+ - type: Transform
+ pos: -0.5064697,16.730707
+ parent: 2
+ - uid: 974
+ components:
+ - type: Transform
+ pos: -0.5064697,16.522373
+ parent: 2
+- proto: UraniumReinforcedWindowDirectional
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 2
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-4.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 2
+ - uid: 493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-4.5
+ parent: 2
+- proto: Vaccinator
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+- proto: VendingMachineViroDrobe
+ entities:
+ - uid: 720
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 976
+ components:
+ - type: Transform
+ pos: -1.5,18.5
+ parent: 2
+- proto: WallShuttle
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
+ parent: 2
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,14.5
+ parent: 2
+ - uid: 53
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,16.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-7.5
+ parent: 2
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 2
+ - uid: 236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
+ parent: 2
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 2
+ - uid: 252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-4.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,16.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 427
+ components:
+ - type: Transform
+ pos: -6.5,-2.5
+ parent: 2
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-2.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 2
+ - uid: 516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-7.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,15.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-7.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,14.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: -6.5,27.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,13.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,13.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -1.5,27.5
+ parent: 2
+ - uid: 746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-4.5
+ parent: 2
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 1.5,17.5
+ parent: 2
+ - uid: 748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,7.5
+ parent: 2
+ - uid: 749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 2
+ - uid: 750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 2
+ - uid: 766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-0.5
+ parent: 2
+ - uid: 767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: -13.5,-1.5
+ parent: 2
+ - uid: 978
+ components:
+ - type: Transform
+ pos: -13.5,-2.5
+ parent: 2
+ - uid: 979
+ components:
+ - type: Transform
+ pos: -13.5,-0.5
+ parent: 2
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 982
+ components:
+ - type: Transform
+ pos: -13.5,4.5
+ parent: 2
+ - uid: 983
+ components:
+ - type: Transform
+ pos: -13.5,5.5
+ parent: 2
+ - uid: 985
+ components:
+ - type: Transform
+ pos: -12.5,6.5
+ parent: 2
+ - uid: 986
+ components:
+ - type: Transform
+ pos: -12.5,7.5
+ parent: 2
+ - uid: 987
+ components:
+ - type: Transform
+ pos: -12.5,9.5
+ parent: 2
+ - uid: 988
+ components:
+ - type: Transform
+ pos: -11.5,9.5
+ parent: 2
+ - uid: 989
+ components:
+ - type: Transform
+ pos: -11.5,10.5
+ parent: 2
+ - uid: 990
+ components:
+ - type: Transform
+ pos: -11.5,11.5
+ parent: 2
+ - uid: 991
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - uid: 992
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 2
+ - uid: 998
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 2
+ - uid: 999
+ components:
+ - type: Transform
+ pos: -9.5,19.5
+ parent: 2
+ - uid: 1000
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 2
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: -8.5,20.5
+ parent: 2
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 0.5,22.5
+ parent: 2
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: -8.5,22.5
+ parent: 2
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: -8.5,23.5
+ parent: 2
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: -7.5,23.5
+ parent: 2
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: -7.5,26.5
+ parent: 2
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: -0.5,26.5
+ parent: 2
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: -0.5,23.5
+ parent: 2
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 0.5,23.5
+ parent: 2
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 0.5,20.5
+ parent: 2
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 0.5,19.5
+ parent: 2
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 1.5,19.5
+ parent: 2
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 1.5,18.5
+ parent: 2
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 2
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 2.5,12.5
+ parent: 2
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 2
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 2
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 2
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 2
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 2
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 2
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 2
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: -11.5,-6.5
+ parent: 2
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: -12.5,-4.5
+ parent: 2
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 2
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: -12.5,-2.5
+ parent: 2
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 2
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 2
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 2
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 2
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 2
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: -12.5,-1.5
+ parent: 2
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: -12.5,5.5
+ parent: 2
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: -11.5,5.5
+ parent: 2
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: -10.5,5.5
+ parent: 2
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: -9.5,5.5
+ parent: 2
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 2
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 2
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 2
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 2
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 2
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: -10.5,-0.5
+ parent: 2
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: -10.5,4.5
+ parent: 2
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: -1.5,19.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: -5.5,18.5
+ parent: 2
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: -0.5,19.5
+ parent: 2
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: -5.5,17.5
+ parent: 2
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: -2.5,19.5
+ parent: 2
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: -6.5,19.5
+ parent: 2
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -7.5,19.5
+ parent: 2
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: -5.5,19.5
+ parent: 2
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 2
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 2
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 2
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 2
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 2
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -5.5,11.5
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 2
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 2
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 2
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: -2.5,18.5
+ parent: 2
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: -2.5,17.5
+ parent: 2
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 2
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 2
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 2
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 2
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 2
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 2
+ - uid: 1137
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 2
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 2
+ - uid: 1139
+ components:
+ - type: Transform
+ pos: -6.5,12.5
+ parent: 2
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: -7.5,12.5
+ parent: 2
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: -9.5,12.5
+ parent: 2
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: -10.5,-6.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: -10.5,-7.5
+ parent: 2
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: -9.5,-7.5
+ parent: 2
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 2
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 2
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: -10.5,-3.5
+ parent: 2
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 1182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 1189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 1190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 1191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,7.5
+ parent: 2
+ - uid: 1192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,6.5
+ parent: 2
+ - uid: 1193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,12.5
+ parent: 2
+ - uid: 1194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,12.5
+ parent: 2
+ - uid: 1195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,7.5
+ parent: 2
+ - uid: 1196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 2
+ - uid: 1197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,23.5
+ parent: 2
+ - uid: 1198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,23.5
+ parent: 2
+ - uid: 1199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,23.5
+ parent: 2
+ - uid: 1200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,23.5
+ parent: 2
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 602
+ components:
+ - type: Transform
+ pos: -7.5,27.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,27.5
+ parent: 2
+ - uid: 1201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 1202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,4.5
+ parent: 2
+- proto: WardrobeMedicalDoctorFilled
+ entities:
+ - uid: 678
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 2
+- proto: WardrobeVirologyFilled
+ entities:
+ - uid: 382
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+- proto: WarningWaste
+ entities:
+ - uid: 1205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,9.5
+ parent: 2
+- proto: WeaponParticleDecelerator
+ entities:
+ - uid: 708
+ components:
+ - type: Transform
+ pos: -8.467545,17.608757
+ parent: 2
+- proto: WindoorSecureUranium
+ entities:
+ - uid: 242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 2
+...
diff --git a/Resources/Maps/ERT/Old/ERTShuttle.yml b/Resources/Maps/White/Shuttles/ERTShuttle.yml
similarity index 100%
rename from Resources/Maps/ERT/Old/ERTShuttle.yml
rename to Resources/Maps/White/Shuttles/ERTShuttle.yml
diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml
new file mode 100644
index 0000000000..0ab84eacd2
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/ShuttleEvent/honki.yml
@@ -0,0 +1,2922 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 20: FloorCarpetClown
+ 25: FloorClown
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Honkomother
+ - type: Transform
+ pos: 1.212189,-1.7551664
+ parent: 313
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: GQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAAGQAAAAAAGQAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 21: 5,-5
+ 39: -4,-1
+ 40: 6,-1
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 20: -5,-5
+ 41: -6,-1
+ 42: 4,-1
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 0: 2,-3
+ 23: 5,-7
+ 35: -4,-3
+ 36: 6,-3
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 1: -2,-3
+ 33: -5,-7
+ 37: -6,-3
+ 38: 4,-3
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 57: -2,0
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 56: 2,0
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineE
+ decals:
+ 2: 2,-2
+ 3: 2,-1
+ 4: 2,0
+ 5: 2,1
+ 22: 5,-6
+ 47: -4,-2
+ 48: 6,-2
+ 55: -2,1
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineN
+ decals:
+ 13: 0,-5
+ 14: 4,-5
+ 15: -1,-5
+ 16: 1,-5
+ 17: 3,-5
+ 18: -3,-5
+ 19: -4,-5
+ 49: -5,-1
+ 50: 5,-1
+ 51: -1,0
+ 52: 0,0
+ 53: 1,0
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineS
+ decals:
+ 10: -1,-3
+ 11: 0,-3
+ 12: 1,-3
+ 24: 4,-7
+ 25: 3,-7
+ 26: 2,-7
+ 27: 1,-7
+ 28: 0,-7
+ 29: -1,-7
+ 30: -2,-7
+ 31: -3,-7
+ 32: -4,-7
+ 43: -5,-3
+ 44: 5,-3
+ - node:
+ color: '#EFB34196'
+ id: MiniTileWhiteLineW
+ decals:
+ 6: -2,-2
+ 7: -2,-1
+ 8: -2,0
+ 9: -2,1
+ 34: -5,-6
+ 45: 4,-2
+ 46: -6,-2
+ 54: 2,1
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 887
+ 1: 18432
+ 0,-1:
+ 0: 30576
+ -1,0:
+ 0: 2252
+ 1: 16912
+ 1,0:
+ 1: 56
+ 1,-1:
+ 2: 4112
+ 0: 10016
+ 3: 16448
+ 0,-2:
+ 0: 48051
+ -1,-2:
+ 0: 48056
+ -1,-1:
+ 3: 16
+ 0: 56768
+ 0,-3:
+ 1: 32768
+ 1,-3:
+ 1: 12288
+ 1,-2:
+ 0: 13104
+ 1: 34820
+ -2,0:
+ 1: 130
+ -2,-1:
+ 0: 52800
+ 3: 128
+ -2,-2:
+ 1: 8708
+ 0: 34944
+ -2,-3:
+ 1: 32768
+ -1,-3:
+ 1: 12288
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - uid: 313
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+- proto: AirCanister
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ anchored: True
+ pos: -1.5,-2.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+ - uid: 3
+ components:
+ - type: Transform
+ anchored: True
+ pos: 2.5,-2.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+- proto: AirlockShuttle
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 1
+- proto: AltarBananium
+ entities:
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 1
+- proto: BananaPhoneInstrument
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 2.268822,0.6392218
+ parent: 1
+- proto: BananiumDoor
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-3.5
+ parent: 1
+- proto: BarricadeBlock
+ entities:
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 1
+- proto: Bed
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+- proto: BedsheetSpawner
+ entities:
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+- proto: BikeHornImplanter
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ parent: 21
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 27
+ components:
+ - type: Transform
+ parent: 26
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: BorgModuleClowning
+ entities:
+ - uid: 379
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CableApcExtension
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -5.5,-5.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: CigaretteBanana
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ parent: 93
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 95
+ components:
+ - type: Transform
+ parent: 93
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 96
+ components:
+ - type: Transform
+ parent: 93
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitClown
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ parent: 93
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 100
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 104
+ components:
+ - type: Transform
+ parent: 103
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterWinterClown
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ parent: 103
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClownRecorder
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 2.6453638,0.42502415
+ parent: 1
+- proto: ClownTroupeSpawner
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+- proto: CluwneHorn
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ parent: 21
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 28
+ components:
+ - type: Transform
+ parent: 26
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ComfyChair
+ entities:
+ - uid: 111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+- proto: ComputerShuttle
+ entities:
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+- proto: CrateCargoGambling
+ entities:
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+- proto: CratePirate
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 261
+ - 22
+ - 23
+ - 25
+ - 24
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 30
+ - 28
+ - 27
+ - 315
+ - 29
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 115
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 379
+ - 116
+ - 117
+ - 118
+ - 119
+ - 120
+ - 126
+ - 121
+ - 122
+ - 123
+ - 124
+ - 125
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 137
+ - 136
+ - 138
+ - 135
+ - 134
+ - 133
+ - 132
+ - 131
+ - 130
+ - 129
+ - 380
+ - 128
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CrayonRainbow
+ entities:
+ - uid: 382
+ components:
+ - type: Transform
+ pos: -1.2894332,-0.29621565
+ parent: 1
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+- proto: DehydratedSpaceCarp
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ parent: 21
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
+ - uid: 29
+ components:
+ - type: Transform
+ parent: 26
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
+- proto: DeviceQuantumSpinInverter
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ parent: 21
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 30
+ components:
+ - type: Transform
+ parent: 26
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: EmergencyFunnyOxygenTankFilled
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ parent: 93
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 101
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 106
+ components:
+ - type: Transform
+ parent: 103
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FaxMachineBase
+ entities:
+ - uid: 383
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+- proto: FloorBananiumEntity
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+- proto: FoodBanana
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 117
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 118
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 119
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 128
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 129
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 130
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 131
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodBurgerClown
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 2.7644207,0.14128423
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 2.2753637,0.14128423
+ parent: 1
+- proto: FoodCakeClown
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 2.4229474,-0.24963892
+ parent: 1
+- proto: FoodMeatClown
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ pos: 3.4782665,-4.592343
+ parent: 1
+- proto: FoodPieBananaCream
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 121
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 122
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 123
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 124
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 125
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 132
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 133
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 134
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 135
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 136
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 137
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: GasPassiveVent
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 1
+- proto: GasPipeBend
+ entities:
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 1
+ - uid: 151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+- proto: GasPipeFourway
+ entities:
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+- proto: GasPipeStraight
+ entities:
+ - uid: 161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+- proto: GasPipeTJunction
+ entities:
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 1
+- proto: GasPort
+ entities:
+ - uid: 203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+- proto: GasVentPump
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+- proto: GasVentScrubber
+ entities:
+ - uid: 211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-1.5
+ parent: 1
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+- proto: GoldenBikeHorn
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 6.4591703,-1.2964956
+ parent: 1
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,0.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-5.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-6.5
+ parent: 1
+ - uid: 238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 241
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 242
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+- proto: GrilleDiagonal
+ entities:
+ - uid: 243
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-4.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-7.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
+- proto: LampBanana
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 2.532099,1.060484
+ parent: 1
+- proto: LauncherCreamPie
+ entities:
+ - uid: 126
+ components:
+ - type: Transform
+ parent: 115
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 138
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: PaperBin10
+ entities:
+ - uid: 385
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+- proto: PlasmaWindow
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,0.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-4.5
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-5.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-6.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 279
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+- proto: PlasmaWindowDiagonal
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,0.5
+ parent: 1
+ - uid: 291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-4.5
+ parent: 1
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-7.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+- proto: PoweredlightLED
+ entities:
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+- proto: PoweredlightOrange
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 1
+- proto: PoweredlightPink
+ entities:
+ - uid: 302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,2.5
+ parent: 1
+- proto: RailingCorner
+ entities:
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+- proto: RailingCornerSmall
+ entities:
+ - uid: 310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+- proto: RubberStampClown
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 381
+ components:
+ - type: Transform
+ pos: -1.6230972,-0.35871565
+ parent: 1
+- proto: SpawnClownSpider
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+- proto: SpiderWebClown
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 378
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+- proto: StatueBananiumClown
+ entities:
+ - uid: 375
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+- proto: SuitStorageBase
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - type: Lock
+ locked: False
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 95
+ - 96
+ - 98
+ - 94
+ - 97
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -5.5,-2.5
+ parent: 1
+ - type: Lock
+ locked: False
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 101
+ - 100
+ - 102
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 1
+ - type: Lock
+ locked: False
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 106
+ - 105
+ - 104
+- proto: TablePlasmaGlass
+ entities:
+ - uid: 317
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: Transform
+ rot: -3.141592653589793 rad
+ pos: -2.5,-8.5
+ parent: 1
+ - uid: 323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-5.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 1
+ - uid: 325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-8.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-8.5
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ parent: 21
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 315
+ components:
+ - type: Transform
+ parent: 26
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 329
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+- proto: WallClown
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-0.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-1.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-3.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-7.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-7.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 347
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 1
+ - uid: 357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-0.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-2.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+- proto: WhoopieCushion
+ entities:
+ - uid: 380
+ components:
+ - type: Transform
+ parent: 127
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+...
diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml
new file mode 100644
index 0000000000..908831cebc
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml
@@ -0,0 +1,1438 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 54: FloorGreenCircuit
+ 85: FloorShuttleWhite
+ 89: FloorSteel
+ 104: FloorTechMaint
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Cargo shuttle
+ - type: Transform
+ pos: 2.2710133,-2.4148211
+ parent: 140
+ - type: MapGrid
+ chunks:
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAANgAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: CargoShuttle
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 0: -5,5
+ 1: -4,5
+ 2: -1,5
+ 3: -1,-1
+ 4: -2,-1
+ 5: -4,-1
+ 6: -1,2
+ 7: -4,2
+ 8: -5,2
+ - node:
+ color: '#9FED5896'
+ id: CheckerNESW
+ decals:
+ 9: -3,-1
+ 10: -3,0
+ 11: -3,1
+ 12: -3,2
+ 13: -3,3
+ 14: -3,4
+ 15: -3,5
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 29: -1,5
+ 30: -2,6
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 19: -5,5
+ 20: -4,6
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 21: -1,-1
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 22: -5,-1
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 33: -2,5
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 32: -4,5
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteLineE
+ decals:
+ 26: -1,0
+ 27: -1,2
+ 28: -1,4
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteLineN
+ decals:
+ 31: -3,6
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteLineS
+ decals:
+ 23: -4,-1
+ 24: -3,-1
+ 25: -2,-1
+ - node:
+ color: '#9FED5896'
+ id: MiniTileWhiteLineW
+ decals:
+ 16: -5,0
+ 17: -5,2
+ 18: -5,4
+ - node:
+ color: '#9FED5896'
+ id: WarnLineE
+ decals:
+ 36: -1,1
+ 37: -1,3
+ - node:
+ color: '#9FED5896'
+ id: WarnLineS
+ decals:
+ 34: -5,1
+ 35: -5,3
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -2,0:
+ 0: 51400
+ -2,1:
+ 0: 16520
+ -2,-1:
+ 0: 32832
+ -1,0:
+ 0: 65535
+ -1,1:
+ 0: 30719
+ -2,2:
+ 0: 128
+ -1,-1:
+ 0: 63346
+ -1,2:
+ 0: 130
+ 0,0:
+ 0: 4112
+ 0,1:
+ 0: 4096
+ -2,-2:
+ 0: 32768
+ -1,-2:
+ 0: 32768
+ 0,-1:
+ 0: 16
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: RadiationGridResistance
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+ - uid: 140
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AirCanister
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 1
+ - uid: 4
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: APCHyperCapacity
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 135
+ - uid: 13
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 134
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 136
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 133
+- proto: BoxMRE
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -1.366688,7.6937246
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+- proto: CableTerminal
+ entities:
+ - uid: 66
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,7.5
+ parent: 1
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 1
+- proto: ComputerShuttle
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 1
+- proto: ConveyorBelt
+ entities:
+ - uid: 81
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 151
+ - uid: 82
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 151
+ - uid: 83
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 151
+ - uid: 84
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 149
+ - uid: 85
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 149
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 149
+ - uid: 87
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 150
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 152
+ - uid: 89
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 152
+ - uid: 90
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 152
+ - uid: 91
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 150
+ - uid: 92
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 150
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+- proto: DrinkBeerBottleFull
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -1.616936,7.547891
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -1.53352,7.422891
+ parent: 1
+- proto: GasPipeBend
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 1
+- proto: GasPipeStraight
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 1
+- proto: GasPort
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+- proto: GasVentPump
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+- proto: LostCargoTechnicianSpawner
+ entities:
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 1
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: RandomCash
+ entities:
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+- proto: RandomPosterAny
+ entities:
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+- proto: RandomSpawner100
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+- proto: SalvageLootSpawner
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+- proto: ShuttleWindow
+ entities:
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15:
+ - Pressed: Toggle
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13:
+ - Pressed: Toggle
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12:
+ - Pressed: Toggle
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14:
+ - Pressed: Toggle
+- proto: SMESBasic
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 1
+- proto: TwoWayLever
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 86:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 85:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 84:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 91:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 87:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 92:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 81:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 82:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 83:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 90:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 89:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 88:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: WallShuttle
+ entities:
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+- proto: Windoor
+ entities:
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+...
diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml
new file mode 100644
index 0000000000..f9be6853d1
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/ShuttleEvent/striker.yml
@@ -0,0 +1,2404 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 29: FloorDark
+ 84: FloorShuttleRed
+ 104: FloorTechMaint
+ 105: FloorTechMaint2
+ 118: FloorWood
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 3
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+ - uid: 325
+ components:
+ - type: MetaData
+ - type: Transform
+ pos: 0.5638949,0.47865233
+ parent: 3
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAB
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: VAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: Shuttle
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 11: 1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 5: -3,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 4: 1,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 3: -3,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 0: -1,-3
+ 1: -2,-3
+ 2: 0,-3
+ - node:
+ color: '#7F1C1FFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 13: 1,-1
+ - node:
+ color: '#7F1C1FFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 12: -3,-1
+ - node:
+ color: '#7F1C1FFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 9: 1,-3
+ - node:
+ color: '#7F1C1FFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 10: -3,-3
+ - node:
+ color: '#7F1C1FFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 6: -2,-3
+ 7: -1,-3
+ 8: 0,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 23: 2,-2
+ 24: -4,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 14: 1,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 16: -3,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 15: -1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 17: -1,-5
+ 18: 0,-5
+ 19: -2,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 20: -2,-6
+ 21: -1,-6
+ 22: 0,-6
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -1,-1:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ -2,-1:
+ 0: 52424
+ -1,-3:
+ 0: 65280
+ -1,-2:
+ 0: 65535
+ 0,-3:
+ 0: 30464
+ 0,-2:
+ 0: 30583
+ -2,0:
+ 0: 8
+ -1,0:
+ 0: 3839
+ 0,0:
+ 0: 895
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: GravityShake
+ shakeTimes: 10
+ - type: SpreaderGrid
+ - type: GridPathfinding
+ - type: NukeOpsShuttle
+- proto: AirCanister
+ entities:
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 325
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+- proto: AirlockExternalShuttleSyndicateLocked
+ entities:
+ - uid: 142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 325
+- proto: AirlockSyndicateLocked
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 325
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 325
+- proto: APCBasic
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 325
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15107
+ currentReceiving: 15106.935
+ currentSupply: 15107
+ supplyRampPosition: 0.064453125
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 325
+- proto: Bed
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 325
+- proto: BedsheetSyndie
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 325
+- proto: BlastDoorOpen
+ entities:
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 331
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 332
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 333
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 334
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 337
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 340
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 341
+ - type: DeviceLinkSink
+ links:
+ - 170
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 342
+ - type: DeviceLinkSink
+ links:
+ - 170
+- proto: BoxMRE
+ entities:
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 0.70504504,-7.29326
+ parent: 325
+- proto: CableApcExtension
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 325
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 325
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 325
+ - uid: 123
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 325
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 325
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 325
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 325
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 325
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 325
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 325
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 325
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 325
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 325
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 325
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 325
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 325
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 325
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 325
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 325
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 325
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 325
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 325
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 325
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 325
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 325
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 325
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 325
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 325
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 325
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 325
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 325
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 325
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 325
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 325
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 325
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 325
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 325
+- proto: CableHV
+ entities:
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 325
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 325
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 325
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 325
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 325
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 325
+- proto: CableHVStack1
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ parent: 41
+ - type: Stack
+ count: 10
+ - type: RCDAmmo
+ charges: 2
+ - type: Physics
+ canCollide: False
+ - uid: 239
+ components:
+ - type: Transform
+ parent: 56
+ - type: Stack
+ count: 10
+ - type: RCDAmmo
+ charges: 2
+ - type: Physics
+ canCollide: False
+- proto: CableMV
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 325
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 325
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 325
+- proto: CapacitorStockPart
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ parent: 41
+ - type: Physics
+ canCollide: False
+ - uid: 234
+ components:
+ - type: Transform
+ parent: 41
+ - type: Physics
+ canCollide: False
+ - uid: 237
+ components:
+ - type: Transform
+ parent: 56
+ - type: Physics
+ canCollide: False
+ - uid: 238
+ components:
+ - type: Transform
+ parent: 56
+ - type: Physics
+ canCollide: False
+ - uid: 241
+ components:
+ - type: Transform
+ parent: 58
+ - type: Physics
+ canCollide: False
+ - uid: 242
+ components:
+ - type: Transform
+ parent: 58
+ - type: Physics
+ canCollide: False
+ - uid: 243
+ components:
+ - type: Transform
+ parent: 58
+ - type: Physics
+ canCollide: False
+ - uid: 254
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 261
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 268
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 275
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 282
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 289
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 296
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 303
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+- proto: Carpet
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 325
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 325
+- proto: Catwalk
+ entities:
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 325
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 325
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 325
+- proto: ChairOfficeDark
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 325
+- proto: ChairPilotSeat
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 325
+- proto: ComputerIFFSyndicate
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 325
+- proto: ComputerShuttleSyndie
+ entities:
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 245
+ disk_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CyberPen
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -1.1813428,-5.15565
+ parent: 325
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 325
+- proto: DoorElectronics
+ entities:
+ - uid: 331
+ components:
+ - type: Transform
+ parent: 190
+ - type: Physics
+ canCollide: False
+ - uid: 332
+ components:
+ - type: Transform
+ parent: 191
+ - type: Physics
+ canCollide: False
+ - uid: 333
+ components:
+ - type: Transform
+ parent: 192
+ - type: Physics
+ canCollide: False
+ - uid: 334
+ components:
+ - type: Transform
+ parent: 193
+ - type: Physics
+ canCollide: False
+ - uid: 337
+ components:
+ - type: Transform
+ parent: 196
+ - type: Physics
+ canCollide: False
+ - uid: 340
+ components:
+ - type: Transform
+ parent: 199
+ - type: Physics
+ canCollide: False
+ - uid: 341
+ components:
+ - type: Transform
+ parent: 200
+ - type: Physics
+ canCollide: False
+ - uid: 342
+ components:
+ - type: Transform
+ parent: 201
+ - type: Physics
+ canCollide: False
+ - uid: 346
+ components:
+ - type: Transform
+ parent: 206
+ - type: Physics
+ canCollide: False
+- proto: DresserFilled
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 325
+- proto: DrinkNukieCan
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -2.6964839,-2.109029
+ parent: 325
+- proto: FaxMachineSyndie
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 325
+ - type: FaxMachine
+ name: Striker
+- proto: filingCabinetRandom
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 325
+- proto: Firelock
+ entities:
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 350
+ - type: DeviceNetwork
+ address: 44a24659
+ receiveFrequency: 1621
+ - uid: 225
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 351
+ - type: DeviceNetwork
+ address: 6fdb75cf
+ receiveFrequency: 1621
+- proto: FirelockElectronics
+ entities:
+ - uid: 350
+ components:
+ - type: Transform
+ parent: 224
+ - type: Physics
+ canCollide: False
+ - uid: 351
+ components:
+ - type: Transform
+ parent: 225
+ - type: Physics
+ canCollide: False
+- proto: FoodBoxDonut
+ entities:
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -2.470145,-2.3953476
+ parent: 325
+- proto: GasPipeFourway
+ entities:
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 325
+- proto: GasPipeStraight
+ entities:
+ - uid: 211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 325
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 325
+ - uid: 214
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 325
+ - uid: 215
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 325
+ - uid: 217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 325
+- proto: GasPipeTJunction
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 325
+ - uid: 212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 325
+- proto: GasPort
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 325
+- proto: GasVentPump
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 325
+ - type: DeviceNetwork
+ address: Vnt-5f41a0ae
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ - uid: 219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 325
+ - type: DeviceNetwork
+ address: Vnt-129c27d2
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ - uid: 220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 325
+ - type: DeviceNetwork
+ address: Vnt-11c4609d
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ - uid: 221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 325
+ - type: DeviceNetwork
+ address: Vnt-6859729f
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+ - uid: 222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 325
+ - type: DeviceNetwork
+ address: Vnt-19d24c7f
+ transmitFrequency: 1621
+ receiveFrequency: 1621
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 325
+ - type: PowerSupplier
+ supplyRampPosition: 7552.5303
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ ents:
+ - 232
+ machine_parts: !type:Container
+ ents:
+ - 233
+ - 234
+ - 235
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 325
+ - type: PowerSupplier
+ supplyRampPosition: 7552.5303
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ ents:
+ - 236
+ machine_parts: !type:Container
+ ents:
+ - 237
+ - 238
+ - 239
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 325
+- proto: Grille
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 325
+ - uid: 2
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 325
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 325
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 325
+ - uid: 50
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 325
+ - uid: 51
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 325
+ - uid: 52
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 325
+ - uid: 53
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 325
+- proto: GrilleDiagonal
+ entities:
+ - uid: 18
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 325
+ - uid: 169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
+ parent: 325
+- proto: Gyroscope
+ entities:
+ - uid: 58
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-8.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 240
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 241
+ - 242
+ - 243
+ - 244
+- proto: GyroscopeMachineCircuitboard
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ parent: 58
+ - type: Physics
+ canCollide: False
+- proto: MedkitCombatFilled
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 1.48298,-0.3211529
+ parent: 325
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 251
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 252
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 253
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 257
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 258
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 259
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 260
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 264
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 265
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 266
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 267
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 271
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 272
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 273
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 274
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 278
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 279
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 280
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 281
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 285
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 286
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 287
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 288
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 292
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 293
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 294
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 295
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 299
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+ - uid: 300
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+ - uid: 301
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+ - uid: 302
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+- proto: Mirror
+ entities:
+ - uid: 321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 325
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 1.373605,-0.2749618
+ parent: 325
+- proto: NukeCodePaper
+ entities:
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 1.561105,-2.5567772
+ parent: 325
+- proto: OxygenTankFilled
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 1.60798,-0.3062118
+ parent: 325
+- proto: PhoneInstrumentSyndicate
+ entities:
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 0.51331455,-4.19952
+ parent: 325
+- proto: PinpointerNuclear
+ entities:
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 1.3790641,-2.3161128
+ parent: 325
+ - type: Physics
+ canCollide: False
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 325
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 325
+- proto: PlushieNuke
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 0.5061571,-5.233775
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
+- proto: PortableGeneratorSuperPacmanMachineCircuitboard
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ parent: 41
+ - type: Physics
+ canCollide: False
+ - uid: 236
+ components:
+ - type: Transform
+ parent: 56
+ - type: Physics
+ canCollide: False
+- proto: PosterContrabandC20r
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 325
+- proto: PosterContrabandEnergySwords
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 325
+- proto: PosterContrabandNuclearDeviceInformational
+ entities:
+ - uid: 228
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 325
+- proto: PosterContrabandSyndicateRecruitment
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 325
+- proto: Poweredlight
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 325
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
+ parent: 325
+- proto: PoweredlightLED
+ entities:
+ - uid: 182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
+ parent: 325
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 325
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 325
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLight
+ entities:
+ - uid: 204
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-5.5
+ parent: 325
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 325
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 325
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 325
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 325
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 325
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 325
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 325
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 325
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 325
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 325
+- proto: ReinforcedPlasmaWindowDiagonal
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 325
+ - uid: 168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,1.5
+ parent: 325
+- proto: RemoteSignaller
+ entities:
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 1.3427892,-2.379079
+ parent: 325
+ - type: Physics
+ canCollide: False
+- proto: SheetGlass1
+ entities:
+ - uid: 244
+ components:
+ - type: Transform
+ parent: 58
+ - type: Stack
+ count: 2
+ - type: RCDAmmo
+ charges: 2
+ - type: Physics
+ canCollide: False
+- proto: SheetSteel1
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ parent: 95
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 262
+ components:
+ - type: Transform
+ parent: 96
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 269
+ components:
+ - type: Transform
+ parent: 97
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 276
+ components:
+ - type: Transform
+ parent: 98
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 283
+ components:
+ - type: Transform
+ parent: 99
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 290
+ components:
+ - type: Transform
+ parent: 100
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 297
+ components:
+ - type: Transform
+ parent: 101
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+ - uid: 304
+ components:
+ - type: Transform
+ parent: 102
+ - type: Stack
+ count: 5
+ - type: RCDAmmo
+ charges: 5
+ - type: Physics
+ canCollide: False
+- proto: SignalButton
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-3.5
+ parent: 325
+ - type: DeviceLinkSource
+ linkedPorts:
+ 199:
+ - Pressed: Toggle
+ 200:
+ - Pressed: Toggle
+ 201:
+ - Pressed: Toggle
+ 193:
+ - Pressed: Toggle
+ 192:
+ - Pressed: Toggle
+ 190:
+ - Pressed: Toggle
+ 191:
+ - Pressed: Toggle
+ 196:
+ - Pressed: Toggle
+- proto: SignSpace
+ entities:
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 325
+- proto: SoapSyndie
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 0.5436061,-7.5129323
+ parent: 325
+- proto: SpawnPointNukies
+ entities:
+ - uid: 322
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 325
+- proto: StealthBox
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 0.49860507,-2.4513345
+ parent: 325
+ - type: Stealth
+ enabled: False
+ - type: EntityStorage
+ open: True
+- proto: SubstationWallBasic
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 325
+ - type: PowerNetworkBattery
+ loadingNetworkDemand: 15106.935
+ currentReceiving: 15105.06
+ currentSupply: 15106.935
+ supplyRampPosition: 1.875
+- proto: SuitStorageSyndie
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 325
+- proto: SyndicateCommsComputerCircuitboard
+ entities:
+ - uid: 246
+ components:
+ - type: Transform
+ parent: 65
+ - type: Physics
+ canCollide: False
+- proto: SyndicateComputerComms
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 246
+- proto: SyndicateIDCard
+ entities:
+ - uid: 324
+ components:
+ - type: Transform
+ pos: 1.57673,-2.3849022
+ parent: 325
+- proto: SyndicateShuttleConsoleCircuitboard
+ entities:
+ - uid: 245
+ components:
+ - type: Transform
+ parent: 64
+ - type: Physics
+ canCollide: False
+- proto: Table
+ entities:
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 325
+- proto: TableWood
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 325
+- proto: Thruster
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-9.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 249
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 250
+ - 251
+ - 252
+ - 253
+ - 254
+ - 255
+ - uid: 96
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-9.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 256
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 257
+ - 258
+ - 259
+ - 260
+ - 261
+ - 262
+ - uid: 97
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 263
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 264
+ - 265
+ - 266
+ - 267
+ - 268
+ - 269
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 270
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 271
+ - 272
+ - 273
+ - 274
+ - 275
+ - 276
+ - uid: 99
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 277
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 278
+ - 279
+ - 280
+ - 281
+ - 282
+ - 283
+ - uid: 100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 284
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 285
+ - 286
+ - 287
+ - 288
+ - 289
+ - 290
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 291
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 292
+ - 293
+ - 294
+ - 295
+ - 296
+ - 297
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 298
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 299
+ - 300
+ - 301
+ - 302
+ - 303
+ - 304
+- proto: ThrusterMachineCircuitboard
+ entities:
+ - uid: 249
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - uid: 256
+ components:
+ - type: Transform
+ parent: 96
+ - type: Physics
+ canCollide: False
+ - uid: 263
+ components:
+ - type: Transform
+ parent: 97
+ - type: Physics
+ canCollide: False
+ - uid: 270
+ components:
+ - type: Transform
+ parent: 98
+ - type: Physics
+ canCollide: False
+ - uid: 277
+ components:
+ - type: Transform
+ parent: 99
+ - type: Physics
+ canCollide: False
+ - uid: 284
+ components:
+ - type: Transform
+ parent: 100
+ - type: Physics
+ canCollide: False
+ - uid: 291
+ components:
+ - type: Transform
+ parent: 101
+ - type: Physics
+ canCollide: False
+ - uid: 298
+ components:
+ - type: Transform
+ parent: 102
+ - type: Physics
+ canCollide: False
+- proto: ToolboxSyndicateFilled
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 1.5699697,-0.44908836
+ parent: 325
+ - type: Physics
+ canCollide: False
+- proto: ToyFigurineNukie
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -2.3371089,-2.140279
+ parent: 325
+- proto: VendingMachineSyndieDrobe
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 325
+- proto: WallPlastitanium
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 325
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 325
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 325
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 325
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 325
+ - uid: 13
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 325
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 325
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 325
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 325
+ - uid: 28
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 325
+ - uid: 29
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-6.5
+ parent: 325
+ - uid: 30
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 325
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-8.5
+ parent: 325
+ - uid: 32
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 325
+ - uid: 33
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-6.5
+ parent: 325
+ - uid: 34
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 325
+ - uid: 35
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-9.5
+ parent: 325
+ - uid: 36
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-8.5
+ parent: 325
+ - uid: 37
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-9.5
+ parent: 325
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 325
+ - uid: 39
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 325
+ - uid: 44
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 325
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 325
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 325
+ - uid: 54
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 325
+ - uid: 55
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 325
+ - uid: 60
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-6.5
+ parent: 325
+ - uid: 61
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
+ parent: 325
+ - uid: 62
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-3.5
+ parent: 325
+ - uid: 63
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-3.5
+ parent: 325
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 325
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 325
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 325
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 325
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 325
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 325
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 325
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 325
+ - uid: 43
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 325
+ - uid: 68
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 325
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 325
+ - uid: 82
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-3.5
+ parent: 325
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 325
+- proto: WindoorSecure
+ entities:
+ - uid: 166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 325
+ - uid: 206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 325
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 346
+...
diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml
new file mode 100644
index 0000000000..545a92e20d
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml
@@ -0,0 +1,1325 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 29: FloorDark
+ 84: FloorShuttleRed
+ 101: FloorSteelOffset
+ 104: FloorTechMaint
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ desc: Evacuation pod
+ name: Evacuation pod
+ - type: Transform
+ parent: 2
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAZQAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: ZQAAAAAAZQAAAAAAZQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAZQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#A91409FF'
+ id: StandClearGreyscale
+ decals:
+ 18: 0,-1
+ - node:
+ color: '#A91409FF'
+ id: WarnCornerSmallGreyscaleNE
+ decals:
+ 15: -2,0
+ - node:
+ color: '#A91409FF'
+ id: WarnCornerSmallGreyscaleNW
+ decals:
+ 14: 2,0
+ - node:
+ color: '#A91409FF'
+ id: WarnEndGreyscaleN
+ decals:
+ 9: -2,1
+ 10: 2,1
+ - node:
+ color: '#A91409FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 0: 2,0
+ 8: 2,-1
+ 17: 5,0
+ - node:
+ color: '#A91409FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 11: -1,0
+ 12: 0,0
+ 13: 1,0
+ - node:
+ color: '#A91409FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 1: 1,-1
+ 2: 0,-1
+ 3: -1,-1
+ 4: -2,-1
+ 5: 2,-1
+ - node:
+ color: '#A91409FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 6: -2,-1
+ 7: -2,0
+ 16: -5,0
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -2,-1:
+ 0: 18432
+ -2,0:
+ 1: 12
+ 0: 64
+ -1,-1:
+ 0: 601
+ 1: 51200
+ -1,0:
+ 2: 1
+ 1: 2254
+ 0: 16896
+ 0,-1:
+ 0: 2115
+ 1: 21248
+ 3: 8192
+ -2,1:
+ 0: 8
+ -1,1:
+ 0: 4096
+ 0,0:
+ 1: 895
+ 0: 18432
+ 1,-1:
+ 0: 16913
+ 1,0:
+ 1: 7
+ 0: 64
+ 1,1:
+ 0: 4098
+ uniqueMixes:
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: NavMap
+ - type: RadiationGridResistance
+ - uid: 2
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - uid: 93
+ components:
+ - type: MetaData
+ name: solution - food
+ - type: Transform
+ parent: 92
+ - type: Solution
+ solution:
+ maxVol: 10
+ name: food
+ reagents:
+ - ReagentId: Fiber
+ Quantity: 10
+ - type: ContainedSolution
+ containerName: food
+ container: 92
+- proto: AirlockExternalShuttleSyndicateLocked
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,0.5
+ parent: 1
+- proto: AirlockSyndicateGlassLocked
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,0.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-0.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-0.5
+ parent: 1
+- proto: ClothingHeadHelmetSyndicate
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ parent: 91
+ - type: SolutionContainerManager
+ solutions: null
+ containers:
+ - food
+ - type: Physics
+ canCollide: False
+ - type: ContainerContainer
+ containers:
+ solution@food: !type:ContainerSlot
+ ent: 93
+ - type: Forensics
+ residues: []
+ dnas: []
+ fibers: []
+ fingerprints:
+ - F269A3816AF5EC71576E815E8A6A9AC3
+ - type: InsideEntityStorage
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingNeckScarfStripedSyndieRed
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 102
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitSyndicate
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ComputerShuttleSyndie
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+- proto: CyberPen
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 2.3074882,1.8251894
+ parent: 1
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+- proto: FaxMachineSyndie
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - type: FaxMachine
+ name: Неизвестный
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+- proto: GeneratorWallmountBasic
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+- proto: GrilleDiagonal
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+- proto: LockerSyndicatePersonal
+ entities:
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14697
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 95
+ - 94
+ - 96
+ - 102
+ - 92
+ - 101
+ - 98
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: Paper
+ entities:
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 2.3700502,1.5126894
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 2.4117582,1.5543563
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 2.3283422,1.4710224
+ parent: 1
+- proto: PhoneInstrumentSyndicate
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 2.7245681,1.8668563
+ parent: 1
+- proto: PlasmaWindowDiagonal
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+- proto: RandomPosterContraband
+ entities:
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+- proto: RubberStampSyndicate
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: SubstationWallBasic
+ entities:
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+- proto: SyndieDisasterVictimSpawner
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: TableReinforcedGlass
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+- proto: ToolboxSyndicateFilled
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ parent: 91
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+- proto: WallPlastitanium
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,3.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+- proto: WallPlastitaniumDiagonal
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-0.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,4.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-0.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-3.5
+ parent: 1
+...
diff --git a/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
new file mode 100644
index 0000000000..52b575244f
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
@@ -0,0 +1,2020 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 40: FloorDirt
+ 44: FloorFreezer
+ 50: FloorGrassLight
+ 76: FloorRGlass
+ 85: FloorShuttleWhite
+ 96: FloorSteelDirty
+ 98: FloorSteelLime
+ 106: FloorTechMaint3
+ 112: FloorWhiteMini
+ 117: FloorWhitePlastic
+ 119: FloorWoodTile
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: SRV "Salami-Salami"
+ - type: Transform
+ pos: -0.5104167,-0.5
+ parent: 71
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: YgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAMgAAAAAAMgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAATAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAdwAAAAAAdwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAagAAAAAAKAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAATAAAAAAALAAAAAAAcAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAAdQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 3: -2,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 2: -3,-7
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 0: -2,-7
+ 1: -3,-7
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 1
+ 1: 6
+ 2: 128
+ 0,-1:
+ 1: 29303
+ -1,0:
+ 2: 129
+ -1,-1:
+ 1: 28686
+ 2: 272
+ -1,-2:
+ 2: 28
+ 1: 65024
+ -1,-3:
+ 2: 49152
+ 0,-3:
+ 2: 61440
+ 0,-2:
+ 1: 32624
+ 2: 8
+ 1,-3:
+ 2: 4096
+ 1,-2:
+ 2: 65
+ 1: 12544
+ 3: 512
+ 1,-1:
+ 1: 3
+ 2: 320
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.14978
+ moles:
+ - 21.813705
+ - 82.06108
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: NavMap
+ - uid: 71
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AirlockShuttle
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+- proto: ATM
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+- proto: BarSignMaidCafe
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 161
+- proto: Bucket
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 0.32937366,-3.3336349
+ parent: 1
+- proto: ButchCleaver
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CableApcExtension
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-0.5
+ parent: 1
+- proto: ClothingHeadHatCasa
+ entities:
+ - uid: 72
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterDameDane
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterDogi
+ entities:
+ - uid: 73
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingOuterHardsuitBasic
+ entities:
+ - uid: 90
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingShoesDameDane
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitDameDane
+ entities:
+ - uid: 76
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitFamilyGuy
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 4.1954827,-4.679846
+ parent: 1
+- proto: ClothingUniformJumpsuitKimono
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+- proto: ComputerShuttle
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+- proto: CrateFreezer
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14783
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12
+ - 26
+ - 31
+ - 39
+ - 27
+ - 36
+ - 28
+ - 35
+ - 23
+ - 34
+ - 21
+ - 30
+ - 22
+ - 14
+ - 40
+ - 20
+ - 18
+ - 17
+ - 19
+ - 15
+ - 16
+ - 38
+ - 32
+ - 33
+ - 37
+ - 25
+ - 13
+ - 24
+ - 29
+ - 11
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: DrinkCanPack
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 2.4942255,-4.6459746
+ parent: 1
+- proto: DrinkGlass
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.9675496,-6.258177
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.9050496,-6.383177
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.8425496,-6.086302
+ parent: 1
+- proto: Eftpos
+ entities:
+ - uid: 233
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: EggySeeds
+ entities:
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 4.8663497,-4.2508607
+ parent: 1
+- proto: ExtendedEmergencyOxygenTankFilled
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FaxMachineBase
+ entities:
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - type: FaxMachine
+ name: Шаттл Бистро
+- proto: FolderSpawner
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 2.6700735,-0.7461357
+ parent: 1
+- proto: FoodBowlBig
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 13
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 4.5392327,-5.695471
+ parent: 1
+- proto: FoodBreadTofu
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -0.56204444,-5.412466
+ parent: 1
+- proto: FoodButter
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodEgg
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 16
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 17
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 18
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 19
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 20
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMealSashimi
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 2.532601,-3.619526
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 2.5117679,-3.192443
+ parent: 1
+- proto: FoodMeat
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatBear
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 24
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatBearCooked
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatClown
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatCorgi
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatDragon
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 97
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 98
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatFish
+ entities:
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 2.3519397,-4.0480876
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 2.5602732,-4.4543376
+ parent: 1
+- proto: FoodMeatGoliath
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 29
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatHuman
+ entities:
+ - uid: 30
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatLizard
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatPlant
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRat
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRouny
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 35
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatSnake
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 37
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatSpider
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodNoodlesButter
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 100
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodNoodlesChowmein
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodNoodlesMeatball
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodRiceBoiled
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 104
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 105
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 4.2319775,-4.0944357
+ parent: 1
+- proto: FoodRiceEgg
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 107
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodRiceGumbo
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodRicePork
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 110
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodRicePudding
+ entities:
+ - uid: 111
+ components:
+ - type: Transform
+ parent: 95
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodTofu
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -2.4682944,-0.4437158
+ parent: 1
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - type: PowerSupplier
+ supplyRampRate: 1000
+ supplyRampTolerance: 1000
+ supplyRate: 16000
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+- proto: GrowingPot
+ entities:
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-3.5
+ parent: 1
+- proto: HospitalCurtains
+ entities:
+ - uid: 124
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+- proto: HydroponicsToolClippers
+ entities:
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 4.6706424,-4.7269287
+ parent: 1
+- proto: HydroponicsToolMiniHoe
+ entities:
+ - uid: 128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.0306153,-4.877862
+ parent: 1
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 1
+- proto: KitchenKnife
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: KitchenMicrowave
+ entities:
+ - uid: 130
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 1
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 131
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 1
+- proto: LockerFreezerBase
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14798
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 110
+ - 109
+ - 103
+ - 104
+ - 105
+ - 96
+ - 98
+ - 97
+ - 99
+ - 101
+ - 100
+ - 106
+ - 102
+ - 108
+ - 107
+ - 111
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerSteel
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - type: PointLight
+ color: '#D56C6CFF'
+ enabled: True
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14703
+ moles:
+ - 1.8968438
+ - 7.1357465
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 233
+ - 133
+ - 80
+ - 76
+ - 73
+ - 78
+ - 81
+ - 77
+ - 72
+ - 79
+ - 75
+ - 185
+ - 90
+ - 82
+ - 147
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: MaterialSheetMeat
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Mattress
+ entities:
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 81
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: NoticeBoard
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+- proto: Pen
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: PlushieVox
+ entities:
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -0.5571752,-4.2839594
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ item: !type:ContainerSlot {}
+- proto: PosterLegitFruitBowl
+ entities:
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+- proto: PottedPlantRandom
+ entities:
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-6.5
+ parent: 1
+- proto: RagItem
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -0.47175223,-3.4022202
+ parent: 1
+- proto: RandomSpawner100
+ entities:
+ - uid: 145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-4.5
+ parent: 1
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ parent: 10
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: RiceSeeds
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 4.716352,-4.1569357
+ parent: 1
+- proto: RubberStampTrader
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Shovel
+ entities:
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 5.0644813,-4.460167
+ parent: 1
+- proto: ShuttersWindowOpen
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 160
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 160
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 160
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 160
+- proto: ShuttleWindow
+ entities:
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 150:
+ - Pressed: Toggle
+ 149:
+ - Pressed: Toggle
+ 151:
+ - Pressed: Toggle
+ 152:
+ - Pressed: Toggle
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8:
+ - Pressed: Toggle
+- proto: SignDoors
+ entities:
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
+ parent: 1
+- proto: SodaDispenser
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
+ parent: 1
+- proto: SpaceCash2500
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ parent: 74
+ - type: Stack
+ count: 7500
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: StoolBar
+ entities:
+ - uid: 165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+- proto: SubstationWallBasic
+ entities:
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+- proto: Table
+ entities:
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-6.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
+ parent: 1
+- proto: TableGlass
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-2.5
+ parent: 1
+- proto: TableStone
+ entities:
+ - uid: 175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-5.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 185
+ components:
+ - type: Transform
+ parent: 74
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: TravelingChefSpawner
+ entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+- proto: WallShuttle
+ entities:
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-7.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 1
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 222
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-8.5
+ parent: 1
+...
diff --git a/Resources/Maps/White/Shuttles/cargo.yml b/Resources/Maps/White/Shuttles/cargo.yml
new file mode 100644
index 0000000000..972f590f9f
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/cargo.yml
@@ -0,0 +1,1274 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 84: FloorShuttleBlue
+ 89: FloorShuttleWhite
+ 93: FloorSteel
+ 108: FloorTechMaint
+ 126: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 143
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - uid: 173
+ components:
+ - type: MetaData
+ name: Cargo shuttle
+ - type: Transform
+ pos: 2.2710133,-2.4148211
+ parent: 143
+ - type: MapGrid
+ chunks:
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAVAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: XQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: CargoShuttle
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 12: -5,1
+ 13: -5,3
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 14: -1,1
+ 15: -1,3
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 0: -5,5
+ 1: -4,5
+ 2: -2,5
+ 3: -1,5
+ 4: -1,-1
+ 5: -2,-1
+ 6: -4,-1
+ 7: -5,-1
+ 8: -1,2
+ 9: -2,2
+ 10: -4,2
+ 11: -5,2
+ - node:
+ color: '#A4610696'
+ id: CheckerNWSE
+ decals:
+ 16: -3,0
+ 17: -3,1
+ 18: -3,2
+ 19: -3,3
+ 20: -3,4
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 22: -3,-1
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 21: -3,5
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -2,-1:
+ 0: 52428
+ -1,-1:
+ 0: 65535
+ -1,-2:
+ 0: 61440
+ -2,1:
+ 0: 52428
+ -1,0:
+ 0: 65535
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 255
+ 0,-1:
+ 0: 4369
+ 0,1:
+ 0: 4369
+ 0,2:
+ 0: 1
+ 0,0:
+ 0: 4369
+ -2,0:
+ 0: 52428
+ -2,2:
+ 0: 140
+ -2,-2:
+ 0: 32768
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: RadiationGridResistance
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+- proto: AirCanister
+ entities:
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 173
+ - type: PolymorphableCanister
+ currentPrototype: AirCanister
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 173
+ - uid: 50
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 173
+ - uid: 52
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 173
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 173
+- proto: APCHyperCapacity
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 173
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 173
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 173
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 173
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 173
+- proto: BlastDoor
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 57
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 55
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 58
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 2
+- proto: CableApcExtension
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 173
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 173
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 173
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 173
+ - uid: 104
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 173
+ - uid: 105
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 173
+ - uid: 106
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 173
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 173
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 173
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 173
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 173
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 173
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 173
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 173
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 173
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 173
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 173
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 173
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 173
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 173
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 173
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 173
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 173
+ - uid: 123
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 173
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 173
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 173
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 173
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 173
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 173
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 173
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 173
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 173
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 173
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 173
+- proto: CableHV
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 173
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 173
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 173
+- proto: CableMV
+ entities:
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 173
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 173
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 173
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 173
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 173
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 173
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 173
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 173
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 173
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 173
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 173
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 173
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 173
+- proto: CableTerminal
+ entities:
+ - uid: 82
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 173
+- proto: CargoPallet
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 173
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 173
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 173
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 173
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 173
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 173
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 173
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 173
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 173
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 173
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 173
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 173
+- proto: ChairPilotSeat
+ entities:
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,7.5
+ parent: 173
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 173
+- proto: ComputerShuttle
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 173
+- proto: ConveyorBelt
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 36
+ - uid: 39
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 36
+ - uid: 40
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 36
+ - uid: 41
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 34
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 34
+ - uid: 43
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 34
+ - uid: 46
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 35
+ - uid: 47
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 37
+ - uid: 48
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 37
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 37
+ - uid: 51
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 35
+ - uid: 167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 173
+ - type: DeviceLinkSink
+ links:
+ - 35
+- proto: GasPipeBend
+ entities:
+ - uid: 134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-1.5
+ parent: 173
+- proto: GasPipeStraight
+ entities:
+ - uid: 136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 173
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,1.5
+ parent: 173
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 173
+- proto: GasPort
+ entities:
+ - uid: 135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
+ parent: 173
+- proto: GasVentPump
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 173
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 173
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 173
+- proto: Grille
+ entities:
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 173
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 173
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 173
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 173
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 173
+- proto: Gyroscope
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 173
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 173
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 173
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 173
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 173
+- proto: Poweredlight
+ entities:
+ - uid: 147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 173
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 173
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 173
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 173
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: ShuttleWindow
+ entities:
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 173
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 173
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 173
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 173
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 173
+- proto: SignalButton
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 56:
+ - Pressed: Toggle
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - Pressed: Toggle
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1:
+ - Pressed: Toggle
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 54:
+ - Pressed: Toggle
+- proto: SMESBasic
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 173
+- proto: SubstationBasic
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 173
+- proto: TableReinforced
+ entities:
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 173
+- proto: Thruster
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 173
+ - uid: 13
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
+ parent: 173
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,7.5
+ parent: 173
+ - uid: 15
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 173
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 173
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 173
+ - uid: 61
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
+ parent: 173
+ - uid: 62
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 173
+- proto: TwoWayLever
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 43:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 42:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 41:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 51:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 46:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 167:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 39:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 40:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 173
+ - type: DeviceLinkSource
+ linkedPorts:
+ 49:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 48:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 47:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: WallShuttle
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 173
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 173
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 173
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 173
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 173
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 173
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 173
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 173
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 173
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 173
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 173
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 173
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 173
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 173
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 173
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 173
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 173
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 173
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 173
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 173
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 173
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -5.5,5.5
+ parent: 173
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 173
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 173
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 173
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 173
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 173
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 173
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 173
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 173
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 173
+- proto: WindoorCargoLocked
+ entities:
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 173
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 173
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 173
+...
diff --git a/Resources/Maps/White/Shuttles/mining.yml b/Resources/Maps/White/Shuttles/mining.yml
new file mode 100644
index 0000000000..6e85a87b2b
--- /dev/null
+++ b/Resources/Maps/White/Shuttles/mining.yml
@@ -0,0 +1,1483 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 51: FloorGrayConcrete
+ 89: FloorSteel
+ 104: FloorTechMaint
+ 120: Lattice
+ 121: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 153
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - uid: 181
+ components:
+ - type: MetaData
+ name: NT-Reclaimer
+ - type: Transform
+ pos: 2.2710133,-2.4148211
+ parent: 153
+ - type: MapGrid
+ chunks:
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: SalvageShuttle
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1: -5,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 0: -3,1
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 2: -1,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: ArrowsGreyscale
+ decals:
+ 166: -3,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 164: -5,-5
+ 165: -1,-5
+ - node:
+ color: '#A4610696'
+ id: CheckerNWSE
+ decals:
+ 11: -3,2
+ 12: -3,3
+ 13: -3,4
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 45: -3,-6
+ 46: -4,-6
+ 47: -2,1
+ 48: -4,2
+ 49: -1,1
+ 50: -2,3
+ 168: 0,2
+ 169: 0,1
+ 170: -5,-1
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 16: -4,-3
+ 17: -2,2
+ 18: -3,4
+ 19: -4,5
+ 167: -4,4
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 25: -4,1
+ 26: -3,2
+ 27: -3,3
+ 28: -2,4
+ 29: -3,5
+ 30: -2,-1
+ 31: -3,-2
+ 32: -2,-3
+ 33: -3,-3
+ 34: -3,-4
+ 35: -2,-5
+ 36: -1,-4
+ 37: -1,-3
+ 38: -3,-5
+ 39: -4,-4
+ 40: -5,-5
+ 41: -5,-4
+ 42: -5,-3
+ 43: -5,-2
+ 44: -1,-2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 20: -2,-4
+ 21: -4,-5
+ 22: -2,-2
+ 23: -3,-1
+ 24: -3,1
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5: -5,-2
+ 6: -5,-1
+ 15: -3,1
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 9: -1,-5
+ 10: -1,-4
+ 14: -3,5
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 3: -5,-5
+ 4: -5,-4
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 7: -1,-1
+ 8: -1,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 163: -5,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 162: -1,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 159: -2,-5
+ 160: -3,-5
+ 161: -4,-5
+ - node:
+ angle: -4.71238898038469 rad
+ color: '#00000034'
+ id: footprint
+ decals:
+ 107: -0.76830435,-4.312702
+ 108: -1.1120543,-3.9220772
+ 109: -1.2370543,-4.406452
+ 110: -1.7526793,-4.109577
+ 111: -1.7526793,-4.500202
+ 112: -0.75267935,-2.5314522
+ 113: -1.3308043,-2.1720772
+ 114: -1.3933043,-2.6564522
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#00000034'
+ id: footprint
+ decals:
+ 91: -2.8151793,1.7528267
+ 92: -3.2995543,2.2528267
+ 93: -2.8308043,2.3622017
+ 94: -2.2995543,2.7372017
+ 95: -2.3933043,1.1278267
+ 96: -2.1276793,-1.5909233
+ 97: -2.4089293,-1.9971733
+ 98: -1.9245543,-2.6690483
+ 99: -2.3620543,-3.0909233
+ 100: -1.8776793,-3.6846733
+ 101: -2.2683043,-4.0284233
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#00000034'
+ id: footprint
+ decals:
+ 115: -1.2839293,-3.3127022
+ 116: -0.94017935,-3.5627022
+ 117: -5.2526793,-2.4064522
+ 118: -4.8620543,-2.2814522
+ 119: -4.2526793,-2.6720772
+ 120: -4.0026793,-2.3595772
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#00000034'
+ id: footprint
+ decals:
+ 102: -5.1901793,-3.6720772
+ 103: -4.7683043,-3.3752022
+ 104: -4.2683043,-3.7970772
+ 105: -4.0026793,-3.5002022
+ 106: -3.4089293,-3.8908272
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#0000004A'
+ id: footprint
+ decals:
+ 121: -5.1901793,-3.430749
+ 122: -4.8464293,-3.602624
+ 123: -4.4245543,-3.258874
+ 124: -3.9558043,-3.586999
+ 125: -3.5808043,-3.180749
+ 126: -5.3776793,-4.086999
+ 127: -4.5808043,-3.711999
+ - node:
+ color: '#0000004A'
+ id: footprint
+ decals:
+ 128: -2.6433043,-2.883874
+ 129: -2.3776793,-2.508874
+ 130: -2.8933043,-1.8994989
+ 131: -2.3933043,-1.5869989
+ 132: -2.7683043,-0.89949894
+ 133: -2.2370543,-0.71199894
+ - node:
+ cleanable: True
+ angle: -4.71238898038469 rad
+ color: '#00000050'
+ id: footprint
+ decals:
+ 63: -0.13161492,0.82056475
+ 64: -0.49098992,1.0393147
+ 65: -1.2097399,0.99243975
+ 66: -1.6472399,1.2893147
+ 67: -1.8659899,0.96118975
+ 68: -2.89724,1.1486897
+ 69: -4.1628647,1.2111897
+ 70: -6.7253647,1.1330647
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#00000050'
+ id: footprint
+ decals:
+ 59: -1.8659899,1.6955647
+ 60: -1.5847399,1.2893147
+ 61: -0.9753649,1.5861897
+ 62: -0.28786492,1.2893147
+ - node:
+ cleanable: True
+ color: '#00000050'
+ id: footprint
+ decals:
+ 51: -2.61599,-0.929533
+ 52: -2.86599,-0.648283
+ 53: -3.11599,2.4611897
+ 54: -2.787865,3.2268147
+ 55: -2.86599,2.8205647
+ 56: -3.11599,3.0393147
+ 57: -3.08474,3.5393147
+ 58: -2.67849,4.1486897
+ 85: -3.162865,1.6799397
+ 86: -2.39724,2.1643147
+ 87: -2.037865,2.3674397
+ 88: -2.39724,2.9768147
+ 89: -3.17849,3.8205647
+ 90: -3.569115,2.5705647
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#00000050'
+ id: footprint
+ decals:
+ 79: -1.7566149,0.91431475
+ 80: -2.225365,1.7580647
+ 81: -1.8503649,2.0861897
+ 82: -1.5222399,2.1330647
+ 83: -1.0847399,1.3049397
+ 84: -2.569115,1.6955647
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#00000050'
+ id: footprint
+ decals:
+ 71: -6.7878647,2.0080647
+ 72: -4.1941147,1.7424397
+ 73: -3.86599,1.9455647
+ 74: -6.5534897,0.69556475
+ 75: -4.1941147,1.2268147
+ 76: -3.70974,1.0080647
+ 77: -3.975365,0.75806475
+ 78: -3.694115,1.4143147
+ - node:
+ cleanable: True
+ color: '#0000001F'
+ id: splatter
+ decals:
+ 134: -3.6745543,-4.4900737
+ 135: -3.9714293,-4.5369487
+ 136: -3.4714293,-5.0681987
+ 137: -4.2370543,-4.9744487
+ 138: -1.5495543,-1.4431987
+ 139: -1.7058043,-1.2713237
+ 140: -1.2058043,-1.3650737
+ 141: -1.0339293,-1.9119487
+ - node:
+ cleanable: True
+ color: '#A461060F'
+ id: splatter
+ decals:
+ 142: -1.4245543,-4.7713237
+ 143: -1.7526793,-4.3650737
+ 144: -3.5183043,-2.8338237
+ 145: -4.8620543,-4.0994487
+ 146: -4.4714293,-4.7869487
+ 147: -3.9245543,-5.9275737
+ 148: -3.4558043,-6.0838237
+ 149: -2.6433043,1.3849263
+ 150: -2.1589293,1.6661763
+ 151: -2.4558043,1.8224263
+ 152: -2.4089293,1.1193013
+ - node:
+ cleanable: True
+ color: '#D381C909'
+ id: splatter
+ decals:
+ 153: -2.5808043,-4.6931987
+ - node:
+ cleanable: True
+ color: '#EFB34109'
+ id: splatter
+ decals:
+ 154: -3.2995543,-1.4588237
+ 155: -3.5651793,-0.8494487
+ 156: -3.3464293,3.6905212
+ 157: -4.0495543,3.1123965
+ 158: -2.3151793,4.6123962
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -2,-1:
+ 0: 52428
+ 1: 8192
+ -1,-3:
+ 0: 65504
+ -1,-1:
+ 0: 65535
+ -1,-2:
+ 0: 65535
+ -2,1:
+ 0: 52428
+ -1,0:
+ 0: 65535
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 61183
+ -1,3:
+ 0: 52974
+ 0,-3:
+ 0: 65520
+ 0,-2:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ 1,-3:
+ 0: 13072
+ 1,-2:
+ 0: 13107
+ 1,-1:
+ 0: 21811
+ 0,1:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 0,0:
+ 0: 65535
+ 1,3:
+ 0: 273
+ 1,0:
+ 0: 30583
+ 1,1:
+ 0: 30039
+ 1,2:
+ 0: 4403
+ 0,4:
+ 0: 127
+ -1,4:
+ 0: 140
+ -2,0:
+ 0: 52428
+ 1: 8738
+ -2,2:
+ 0: 140
+ -2,-2:
+ 0: 32768
+ 1: 19656
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: OccluderTree
+ - type: Shuttle
+ - type: RadiationGridResistance
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+ - type: GridPathfinding
+- proto: AirlockCargoGlass
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 181
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 181
+- proto: AirlockExternal
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 181
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 181
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 181
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 181
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 181
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 181
+ - uid: 146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 181
+ - uid: 148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 181
+- proto: APCBasic
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-5.5
+ parent: 181
+ - uid: 68
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,3.5
+ parent: 181
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 181
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 181
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 181
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 181
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -5.5,-2.5
+ parent: 181
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 181
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -6.5,1.5
+ parent: 181
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 181
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 181
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 181
+- proto: BlastDoor
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 150
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 150
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 150
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 149
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 149
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -5.5,-2.5
+ parent: 181
+ - type: DeviceLinkSink
+ links:
+ - 149
+- proto: BorgModuleMining
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -1.4982989,5.541272
+ parent: 181
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 181
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 181
+- proto: CableApcExtension
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 181
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 181
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 181
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 181
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 181
+ - uid: 32
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 181
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -4.5,-1.5
+ parent: 181
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 181
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 181
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 181
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 181
+ - uid: 45
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 181
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 181
+ - uid: 53
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 181
+ - uid: 61
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 181
+ - uid: 62
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 181
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 181
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 181
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 181
+ - uid: 66
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 181
+ - uid: 82
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 181
+ - uid: 83
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 181
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 181
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 181
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 181
+ - uid: 165
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 181
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 181
+- proto: CableHV
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 181
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 181
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 181
+ - uid: 74
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 181
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 181
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 181
+- proto: CableMV
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 181
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 181
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 181
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 181
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 181
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 181
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 181
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 181
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 181
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 181
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 181
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 181
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 181
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 181
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 181
+ - uid: 73
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 181
+- proto: CableTerminal
+ entities:
+ - uid: 77
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 181
+- proto: Catwalk
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 181
+- proto: Chair
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,5.5
+ parent: 181
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 181
+- proto: ComputerShuttle
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 181
+- proto: FirelockEdge
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 181
+ - uid: 93
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 181
+ - uid: 134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 181
+ - uid: 135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 181
+- proto: GasPort
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 181
+- proto: GasVentPump
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 181
+- proto: GeneratorBasic
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 181
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -1.5,-6.5
+ parent: 181
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 181
+- proto: Grille
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 181
+ - uid: 49
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,6.5
+ parent: 181
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 181
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 181
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 181
+ - uid: 80
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,6.5
+ parent: 181
+ - uid: 121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
+ parent: 181
+ - uid: 131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 181
+ - uid: 136
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 181
+ - uid: 160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 181
+ - uid: 161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
+ parent: 181
+- proto: Gyroscope
+ entities:
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 181
+- proto: PersonalAI
+ entities:
+ - uid: 167
+ components:
+ - type: Transform
+ pos: -1.4453101,4.467156
+ parent: 181
+- proto: PoweredSmallLight
+ entities:
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 181
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 181
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,4.5
+ parent: 181
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 142
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 181
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 181
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: Rack
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 181
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 181
+- proto: RandomPosterAny
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 181
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 181
+- proto: SignalButton
+ entities:
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 181
+ - type: DeviceLinkSource
+ linkedPorts:
+ 81:
+ - Pressed: Toggle
+ 95:
+ - Pressed: Toggle
+ 92:
+ - Pressed: Toggle
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 181
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36:
+ - Pressed: Toggle
+ 14:
+ - Pressed: Toggle
+ 34:
+ - Pressed: Toggle
+- proto: SMESBasic
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -2.5,-6.5
+ parent: 181
+- proto: SubstationWallBasic
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 181
+- proto: Table
+ entities:
+ - uid: 154
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 181
+- proto: Thruster
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 181
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 181
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-6.5
+ parent: 181
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-0.5
+ parent: 181
+- proto: WallSolid
+ entities:
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 181
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 181
+ - uid: 87
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 181
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 181
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -5.5,-5.5
+ parent: 181
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 181
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 181
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 181
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -6.5,3.5
+ parent: 181
+ - uid: 104
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 181
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 181
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 181
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 181
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -0.5,-7.5
+ parent: 181
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -5.5,-4.5
+ parent: 181
+ - uid: 111
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 181
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 181
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 181
+ - uid: 117
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 181
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 181
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 181
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 181
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 181
+- proto: WallSolidRust
+ entities:
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 181
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 181
+ - uid: 145
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 181
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 181
+- proto: Window
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 181
+ - uid: 56
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,6.5
+ parent: 181
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 181
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 181
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 181
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 181
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 181
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 181
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 181
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
+ parent: 181
+ - uid: 125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
+ parent: 181
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,6.5
+ parent: 181
+...
diff --git a/Resources/Maps/White/Shuttles/wizard.yml b/Resources/Maps/White/Shuttles/wizard.yml
index 438d273c74..5a89020c72 100644
--- a/Resources/Maps/White/Shuttles/wizard.yml
+++ b/Resources/Maps/White/Shuttles/wizard.yml
@@ -28,7 +28,7 @@ entities:
- type: MetaData
- type: Transform
pos: 0.3842575,0.4217209
- parent: invalid
+ parent: 451
- type: MapGrid
chunks:
-1,-1:
@@ -602,6 +602,18 @@ entities:
- type: RadiationGridResistance
- type: SpreaderGrid
- type: GridPathfinding
+ - uid: 451
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
- proto: AirlockExternalGlass
entities:
- uid: 3
@@ -2134,6 +2146,14 @@ entities:
- type: Transform
pos: -3.6894722,2.437179
parent: 2
+- proto: DeepSpaceComWallMount
+ entities:
+ - uid: 774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,10.5
+ parent: 2
- proto: DiceBag
entities:
- uid: 285
@@ -2155,6 +2175,8 @@ entities:
- type: Transform
pos: -4.5,2.5
parent: 2
+ - type: FaxMachine
+ name: Неизвестный
- proto: FigureSpawner
entities:
- uid: 288
@@ -2772,6 +2794,18 @@ entities:
- type: Transform
pos: 0.5,-15.5
parent: 2
+- proto: GeraldiyRubberStamp
+ entities:
+ - uid: 775
+ components:
+ - type: MetaData
+ desc: Старая и потёртая печать. На ней почти высохли чернила, но она все ещё может послужить убедительным аргументом в руках нужных людей.
+ name: печать федерации волшебников
+ - type: Transform
+ pos: -4.0507927,2.3569171
+ parent: 2
+ - type: Stamp
+ stampedName: Федерация Волшебников
- proto: GravityGeneratorMini
entities:
- uid: 390
diff --git a/Resources/Maps/White/centcomm.yml b/Resources/Maps/White/centcomm.yml
index 87dd367f5d..7f5ee58b59 100644
--- a/Resources/Maps/White/centcomm.yml
+++ b/Resources/Maps/White/centcomm.yml
@@ -35,6 +35,7 @@ entities:
- type: MovedGrids
- type: Broadphase
- type: OccluderTree
+ - type: LoadedMap
- uid: 1668
components:
- type: MetaData
@@ -5009,12 +5010,12 @@ entities:
- uid: 6612
components:
- type: Transform
- pos: 2.170168,-2.5148773
+ pos: 2.372785,-2.519488
parent: 1668
- uid: 6618
components:
- type: Transform
- pos: 2.060793,-2.4055023
+ pos: 2.372785,-2.248655
parent: 1668
- proto: BoxHandcuff
entities:
@@ -5050,7 +5051,7 @@ entities:
- uid: 1457
components:
- type: Transform
- pos: 1.5702643,-2.4016738
+ pos: 2.643887,-2.561155
parent: 1668
- proto: BoxSterileMask
entities:
@@ -18974,6 +18975,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,22.5
parent: 1668
+- proto: ComputerDeepSpaceCom
+ entities:
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 1668
- proto: ComputerId
entities:
- uid: 589
@@ -34414,11 +34423,6 @@ entities:
- type: Transform
pos: 2.5,-2.5
parent: 1668
- - uid: 646
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 1668
- uid: 647
components:
- type: Transform
@@ -41323,11 +41327,6 @@ entities:
parent: 1668
- proto: WeaponCapacitorRecharger
entities:
- - uid: 1446
- components:
- - type: Transform
- pos: 2.5,-2.5
- parent: 1668
- uid: 1447
components:
- type: Transform
diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
index 6724a895b1..47cb564d65 100644
--- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
+++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml
@@ -120,8 +120,8 @@
state: icon
content:
- MindSlaveImplanter
- - MindSlaveImplanter
- - MindSlaveImplanter
+ - SoapOmega
+ - BoxEncryptionKeySyndie
- ClothingOuterCoatSyndieCap
- ClothingHeadHatSyndieMAA
diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml
index edd74ab291..f3b82cb06a 100644
--- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml
+++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml
@@ -30,6 +30,7 @@
- type: Access
groups:
- AllAccess
+ - Everything # WD
tags:
- NuclearOperative
- SyndicateAgent
diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml
index 1ddebceb4f..7f1eaeaf2f 100644
--- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml
+++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml
@@ -639,6 +639,7 @@
id: LostCargoTechnician
randomizeName: false
components:
+ - type: FillIDCard # WD
- type: GhostRole
name: ghost-role-information-lost-cargo-technical-name
description: ghost-role-information-lost-cargo-technical-description
@@ -706,7 +707,23 @@
- type: RandomMetadata
nameSegments:
- names_clown
- - type: Pacified # WD
+ # WD Edit start
+ - type: Pacified
+ - type: Clumsy
+ clumsyDamage:
+ types:
+ Blunt: 5
+ Piercing: 4
+ groups:
+ Burn: 3
+ - type: SleepEmitSound
+ snore: /Audio/Voice/Misc/silly_snore.ogg
+ interval: 10
+ - type: FillIDCard
+ isContractor: true
+ - type: AddImplant
+ implants: [ SadTromboneImplant ]
+ # WD Edit end
- type: randomHumanoidSettings
id: ClownTroupeBanana
@@ -722,7 +739,23 @@
- type: RandomMetadata
nameSegments:
- names_clown
- - type: Pacified # WD
+ # WD Edit start
+ - type: Pacified
+ - type: Clumsy
+ clumsyDamage:
+ types:
+ Blunt: 5
+ Piercing: 4
+ groups:
+ Burn: 3
+ - type: SleepEmitSound
+ snore: /Audio/Voice/Misc/silly_snore.ogg
+ interval: 10
+ - type: FillIDCard
+ isContractor: true
+ - type: AddImplant
+ implants: [ SadTromboneImplant ]
+ # WD Edit end
# Traveling exotic chef
@@ -767,6 +800,8 @@
nameSegments:
- names_first
- names_last
+ - type: FillIDCard # WD
+ isContractor: true
# Disaster victim
@@ -814,6 +849,7 @@
settings: DisasterVictimCaptain
- type: randomHumanoidSettings
+ parent: Nanotrasen # WD
id: DisasterVictimResearchDirector
randomizeName: false
components:
@@ -830,8 +866,10 @@
nameSegments:
- names_first
- names_last
+ - type: FillIDCard # WD
- type: randomHumanoidSettings
+ parent: Nanotrasen # WD
id: DisasterVictimCMO
randomizeName: false
components:
@@ -848,8 +886,10 @@
nameSegments:
- names_first
- names_last
+ - type: FillIDCard # WD
- type: randomHumanoidSettings
+ parent: Nanotrasen # WD
id: DisasterVictimCaptain
randomizeName: false
components:
@@ -866,6 +906,9 @@
nameSegments:
- names_first
- names_last
+ - type: FillIDCard # WD
+ - type: AddImplant # WD
+ implants: [ MindShieldImplant ]
# Syndie Disaster Victim
diff --git a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml
index 25ac56a6da..cfa7a579c2 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/door_remote.yml
@@ -176,5 +176,6 @@
- type: Access
groups:
- AllAccess
+ - Everything # WD
tags:
- CentralCommand
diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml
index 398d2ee449..9f8e7e5d23 100644
--- a/Resources/Prototypes/Entities/Stations/base.yml
+++ b/Resources/Prototypes/Entities/Stations/base.yml
@@ -49,7 +49,7 @@
abstract: true
components:
- type: StationCargoShuttle
- path: /Maps/Shuttles/cargo.yml
+ path: /Maps/White/Shuttles/cargo.yml
- type: GridSpawn
groups:
# trade:
@@ -60,7 +60,7 @@
# - /Maps/Shuttles/trading_outpost.yml
mining:
paths:
- - /Maps/Shuttles/mining.yml
+ - /Maps/White/Shuttles/mining.yml
# Spawn last
ruins:
hide: true
diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml
index d7783d1c57..ef4758f84c 100644
--- a/Resources/Prototypes/GameRules/events.yml
+++ b/Resources/Prototypes/GameRules/events.yml
@@ -385,7 +385,7 @@
- id: MobGiantSpiderAngry
prob: 0.05
-- type: entity
+- type: entity # WD
id: BorerSpawn
parent: BaseGameRule
noSpawn: true
@@ -433,6 +433,7 @@
minimumPlayers: 30
weight: 2
duration: 1
+ maxOccurrences: 1 # WD
- type: ZombieRule
- type: AntagSelection
definitions:
@@ -467,6 +468,7 @@
weight: 4.5
minimumPlayers: 20
duration: 1
+ maxOccurrences: 2 # WD
- type: LoadMapRule
preloadedGrid: ShuttleStriker
- type: NukeopsRule
@@ -499,8 +501,9 @@
- type: StationEvent
earliestStart: 30
weight: 8
- minimumPlayers: 20 # Amour from 15 to 20
- maxOccurrences: 2 # Amour from 1 to 2
+ minimumPlayers: 15
+ reoccurrenceDelay: 30
+ maxOccurrences: 2 # WD
startAnnouncement: station-event-communication-interception
startAudio:
path: /Audio/Announcements/intercept.ogg
diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml
index 4c3a2032e6..882c933540 100644
--- a/Resources/Prototypes/GameRules/midround.yml
+++ b/Resources/Prototypes/GameRules/midround.yml
@@ -46,6 +46,8 @@
allowNonHumans: true
multiAntagSetting: NotExclusive
startingGear: ThiefGear
+ # components: # WD EDIT
+ # - type: Pacified
mindComponents:
- type: ThiefRole
prototype: Thief
diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml
index 79ffab0d84..8880128276 100644
--- a/Resources/Prototypes/GameRules/roundstart.yml
+++ b/Resources/Prototypes/GameRules/roundstart.yml
@@ -81,7 +81,7 @@
selectionTime: PrePlayerSpawn
definitions:
- prefRoles: [ NukeopsCommander ]
- fallbackRoles: [ Nukeops, NukeopsMedic ]
+ # fallbackRoles: [ Nukeops, NukeopsMedic ] # WD
max: 1
playerRatio: 10
startingGear: SyndicateCommanderGearFull
@@ -100,7 +100,7 @@
- type: NukeopsRole
prototype: NukeopsCommander
- prefRoles: [ NukeopsMedic ]
- fallbackRoles: [ Nukeops, NukeopsCommander ]
+ # fallbackRoles: [ Nukeops, NukeopsCommander ] # WD
max: 1
playerRatio: 10
startingGear: SyndicateOperativeMedicFull
@@ -118,7 +118,7 @@
- type: NukeopsRole
prototype: NukeopsMedic
- prefRoles: [ Nukeops ]
- fallbackRoles: [ NukeopsCommander, NukeopsMedic ]
+ # fallbackRoles: [ NukeopsCommander, NukeopsMedic ] # WD
min: 0
max: 3
playerRatio: 10
@@ -316,6 +316,7 @@
color: Aqua
startingGear: WizardGear
components:
+ - type: Unslavable # WD
- type: Wizard
- type: WizardAppearance
- type: GlobalAntagonist
diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
index adf7ff4d3c..17352825de 100644
--- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
+++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml
@@ -316,12 +316,12 @@
- type: startingGear
id: BananaClown
equipment:
- id: ClownPDA
+ id: ClownIDCardContractor # WD
back: ClothingBackpackClown
shoes: ClothingShoesClownBanana
jumpsuit: ClothingUniformJumpsuitClownBanana
mask: ClothingMaskClownBanana
- ears: ClothingHeadsetService
+ ears: ClothingHeadsetServiceContractor # WD
pocket1: BikeHorn
pocket2: ClownRecorder
@@ -331,9 +331,9 @@
equipment:
jumpsuit: ClothingUniformJumpsuitClown
shoes: ClothingShoesClown
- id: ClownPDA
+ id: ClownIDCardContractor # WD
back: ClothingBackpackClown
- ears: ClothingHeadsetService
+ ears: ClothingHeadsetServiceContractor # WD
mask: ClothingMaskClown
pocket1: BikeHorn
pocket2: ClownRecorder
@@ -345,9 +345,9 @@
jumpsuit: ClothingUniformJumpsuitCargo
shoes: ClothingShoesColorBlack
head: ClothingHeadHatCargosoft
- id: CargoPDA
+ id: CargoPDAAnotherSector # WD
back: ClothingBackpackCargo
- ears: ClothingHeadsetCargo
+ ears: ClothingHeadsetCargoAnotherSector # WD
pocket1: AppraisalTool
- type: startingGear
@@ -356,9 +356,9 @@
jumpsuit: ClothingUniformJumpsuitCargo
shoes: ClothingShoesBootsWinterCargo
head: ClothingHeadHatCargosoft
- id: CargoPDA
+ id: CargoPDAAnotherSector # WD
back: ClothingBackpackDuffelCargo
- ears: ClothingHeadsetCargo
+ ears: ClothingHeadsetCargoAnotherSector # WD
pocket1: AppraisalTool
outerClothing: ClothingOuterWinterCargo
@@ -368,9 +368,9 @@
equipment:
jumpsuit: ClothingUniformJumpsuitChef
shoes: ClothingShoesColorWhite
- id: ChefPDA
+ id: ChefIDCardContractor # WD
back: ClothingBackpackSatchel
- ears: ClothingHeadsetService
+ ears: ClothingHeadsetServiceContractor # WD
belt: ClothingBeltChef
#CMO Disaster Victim
@@ -381,9 +381,9 @@
shoes: ClothingShoesColorBrown
head: ClothingHeadMirror
neck: ClothingCloakCmo
- id: CMOPDA
- back: ClothingBackpackMedical
- ears: ClothingHeadsetCMO
+ id: CMOPDAAnotherSector # WD
+ back: ClothingBackpackMedicalAnotherSector # WD
+ ears: ClothingHeadsetCMOAnotherSector # WD
belt: ClothingBeltMedical
outerClothing: ClothingOuterCoatLabCmo
@@ -394,9 +394,9 @@
shoes: ClothingShoesColorBrown
head: ClothingHeadHatBeretCmo
neck: ClothingNeckMantleCMO
- id: CMOPDA
- back: ClothingBackpackSatchelMedical
- ears: ClothingHeadsetCMO
+ id: CMOPDAAnotherSector # WD
+ back: ClothingBackpackSatchelMedicalAnotherSector # WD
+ ears: ClothingHeadsetCMOAnotherSector # WD
belt: ClothingBeltMedical
outerClothing: ClothingOuterCoatLabCmo
@@ -410,9 +410,9 @@
gloves: ClothingHandsGlovesCaptain
head: ClothingHeadHatCaptain
neck: ClothingNeckCloakCap
- id: CaptainPDA
- back: ClothingBackpackCaptain
- ears: ClothingHeadsetAltCommand
+ id: CaptainPDAAnotherSector # WD
+ back: ClothingBackpackCaptainAnotherSector # WD
+ ears: ClothingHeadsetAltCommandAnotherSector # WD
outerClothing: ClothingOuterArmorCaptainCarapace
- type: startingGear
@@ -424,9 +424,9 @@
gloves: ClothingHandsGlovesCaptain
head: ClothingHeadHatCapcap
neck: ClothingNeckMantleCap
- id: CaptainPDA
- back: ClothingBackpackSatchelCaptain
- ears: ClothingHeadsetAltCommand
+ id: CaptainPDAAnotherSector # WD
+ back: ClothingBackpackSatchelCaptainAnotherSector # WD
+ ears: ClothingHeadsetAltCommandAnotherSector # WD
outerClothing: ClothingOuterArmorCaptainCarapace
#RD Disaster Victim
@@ -437,9 +437,9 @@
shoes: ClothingShoesColorBrown
head: ClothingHeadHatBeretRND
neck: ClothingNeckCloakRd
- id: RnDPDA
- back: ClothingBackpackScience
- ears: ClothingHeadsetRD
+ id: RnDPDAAnotherSector # WD
+ back: ClothingBackpackScienceAnotherSector # WD
+ ears: ClothingHeadsetRDAnotherSector # WD
outerClothing: ClothingOuterCoatRD
- type: startingGear
@@ -449,7 +449,7 @@
shoes: ClothingShoesColorBrown
head: ClothingHeadHatBeretRND
neck: ClothingNeckMantleRD
- id: RnDPDA
- back: ClothingBackpackSatchelScience
- ears: ClothingHeadsetRD
+ id: RnDPDAAnotherSector # WD
+ back: ClothingBackpackSatchelScienceAnotherSector # WD
+ ears: ClothingHeadsetRDAnotherSector # WD
outerClothing: ClothingOuterCoatRD
diff --git a/Resources/Prototypes/Roles/play_time_trackers.yml b/Resources/Prototypes/Roles/play_time_trackers.yml
index 88c8e1c02c..35b9235770 100644
--- a/Resources/Prototypes/Roles/play_time_trackers.yml
+++ b/Resources/Prototypes/Roles/play_time_trackers.yml
@@ -156,16 +156,3 @@
- type: playTimeTracker
id: JobZookeeper
-
-# WHITE
-- type: playTimeTracker
- id: JobInspector
-
-- type: playTimeTracker
- id: JobBomzh
-
-- type: playTimeTracker
- id: JobBrigmedic
-
-- type: playTimeTracker
- id: JobMaid
diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml
index f3abb6796f..777881c0f3 100644
--- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml
+++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml
@@ -1,16 +1,16 @@
- type: preloadedGrid
id: ShuttleStriker
- path: /Maps/Shuttles/ShuttleEvent/striker.yml
+ path: /Maps/White/Shuttles/ShuttleEvent/striker.yml
copies: 2
- type: preloadedGrid
id: ShuttleCargoLost
- path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml
+ path: /Maps/White/Shuttles/ShuttleEvent/lost_cargo.yml
copies: 1 # WD from 2 to 1
- type: preloadedGrid
id: TravelingCuisine
- path: /Maps/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
+ path: /Maps/White/Shuttles/ShuttleEvent/traveling_china_cuisine.yml
copies: 1 # WD from 2 to 1
- type: preloadedGrid
@@ -20,10 +20,10 @@
- type: preloadedGrid
id: Honki
- path: /Maps/Shuttles/ShuttleEvent/honki.yml
+ path: /Maps/White/Shuttles/ShuttleEvent/honki.yml
copies: 1
- type: preloadedGrid
id: SyndieEvacPod
- path: /Maps/Shuttles/ShuttleEvent/syndie_evacpod.yml
+ path: /Maps/White/Shuttles/ShuttleEvent/syndie_evacpod.yml
copies: 1 # WD from 2 to 1
diff --git a/Resources/Prototypes/_White/Access/misc.yml b/Resources/Prototypes/_White/Access/misc.yml
new file mode 100644
index 0000000000..ce05dcc92b
--- /dev/null
+++ b/Resources/Prototypes/_White/Access/misc.yml
@@ -0,0 +1,18 @@
+- type: accessGroup
+ id: Everything
+ tags:
+ - AllAccess
+ - NuclearOperative
+ - SyndicateAgent
+ - CentralCommand
+ - Mercenary
+ - ClownContractor
+ - ChefContractor
+
+- type: accessLevel
+ id: ClownContractor
+ name: Клоун контрактник
+
+- type: accessLevel
+ id: ChefContractor
+ name: Шеф-повар контрактник
diff --git a/Resources/Prototypes/_White/Catalog/uplink.yml b/Resources/Prototypes/_White/Catalog/uplink.yml
index 392a7eb7de..0cba8d4b9e 100644
--- a/Resources/Prototypes/_White/Catalog/uplink.yml
+++ b/Resources/Prototypes/_White/Catalog/uplink.yml
@@ -278,7 +278,7 @@
description: uplink-mind-slave-desc
productEntity: MindSlaveImplanter
cost:
- Telecrystal: 6
+ Telecrystal: 10
categories:
- UplinkImplants
diff --git a/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml
new file mode 100644
index 0000000000..74ad7da4fb
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Clothing/Back/backpacks.yml
@@ -0,0 +1,31 @@
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackMedical
+ id: ClothingBackpackMedicalAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: OmnizineChemistryBottle
+ - id: OmnizineChemistryBottle
+ - id: OmnizineChemistryBottle
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackCaptain
+ id: ClothingBackpackCaptainAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: SpaceCash30000
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackScience
+ id: ClothingBackpackScienceAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
diff --git a/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml
new file mode 100644
index 0000000000..68688ab23b
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Clothing/Back/satchel.yml
@@ -0,0 +1,31 @@
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackSatchelMedical
+ id: ClothingBackpackSatchelMedicalAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: OmnizineChemistryBottle
+ - id: OmnizineChemistryBottle
+ - id: OmnizineChemistryBottle
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackSatchelCaptain
+ id: ClothingBackpackSatchelCaptainAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: SpaceCash30000
+
+- type: entity
+ noSpawn: true
+ parent: ClothingBackpackSatchelScience
+ id: ClothingBackpackSatchelScienceAnotherSector
+ components:
+ - type: StorageFill
+ contents:
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
+ - id: ResearchDisk10000
diff --git a/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml
new file mode 100644
index 0000000000..1960c25d24
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Clothing/Ears/headsets.yml
@@ -0,0 +1,54 @@
+- type: entity
+ parent: ClothingHeadsetAltCommand
+ id: ClothingHeadsetAltCommandAnotherSector
+ suffix: Another Sector
+ components:
+ - type: ContainerFill
+ containers:
+ key_slots:
+ - EncryptionKeyStationMasterAnotherSector
+
+- type: entity
+ parent: ClothingHeadsetMedical
+ id: ClothingHeadsetCMOAnotherSector
+ suffix: Another Sector
+ components:
+ - type: ContainerFill
+ containers:
+ key_slots:
+ - EncryptionKeyMedicalAnotherSector
+ - EncryptionKeyCommandAnotherSector
+ - EncryptionKeyCommon
+
+- type: entity
+ parent: ClothingHeadsetScience
+ id: ClothingHeadsetRDAnotherSector
+ suffix: Another Sector
+ components:
+ - type: ContainerFill
+ containers:
+ key_slots:
+ - EncryptionKeyScienceAnotherSector
+ - EncryptionKeyCommandAnotherSector
+ - EncryptionKeyCommon
+
+- type: entity
+ parent: ClothingHeadsetCargo
+ id: ClothingHeadsetCargoAnotherSector
+ suffix: Another Sector
+ components:
+ - type: ContainerFill
+ containers:
+ key_slots:
+ - EncryptionKeyCargoAnotherSector
+ - EncryptionKeyCommon
+
+- type: entity
+ parent: ClothingHeadsetService
+ id: ClothingHeadsetServiceContractor
+ noSpawn: true
+ components:
+ - type: ContainerFill
+ containers:
+ key_slots:
+ - EncryptionKeyCommon
diff --git a/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml
new file mode 100644
index 0000000000..ac056ecfda
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Objects/Devices/encryption_keys.yml
@@ -0,0 +1,67 @@
+- type: entity
+ parent: EncryptionKey
+ id: EncryptionKeyStationMasterAnotherSector
+ name: station master encryption key
+ description: An encryption key used by station's bosses. Unfortunately, the encryption codes in this sector are different.
+ suffix: Another Sector
+ components:
+ - type: EncryptionKey
+ channels:
+ - Common
+ defaultChannel: Common
+ - type: Sprite
+ layers:
+ - state: crypt_gold
+ - state: cap_label
+
+- type: entity
+ parent: EncryptionKey
+ id: EncryptionKeyMedicalAnotherSector
+ name: medical encryption key
+ description: An encryption key used by those who save lives. Unfortunately, the encryption codes in this sector are different.
+ suffix: Another Sector
+ components:
+ - type: EncryptionKey
+ - type: Sprite
+ layers:
+ - state: crypt_gray
+ - state: med_label
+
+- type: entity
+ parent: EncryptionKey
+ id: EncryptionKeyCommandAnotherSector
+ name: command encryption key
+ description: An encryption key used by crew's bosses. Unfortunately, the encryption codes in this sector are different.
+ suffix: Another Sector
+ components:
+ - type: EncryptionKey
+ - type: Sprite
+ layers:
+ - state: crypt_silver
+ - state: com_label
+
+- type: entity
+ parent: EncryptionKey
+ id: EncryptionKeyScienceAnotherSector
+ name: science encryption key
+ description: An encryption key used by scientists. Maybe it is plasmaproof? Unfortunately, the encryption codes in this sector are different.
+ suffix: Another Sector
+ components:
+ - type: EncryptionKey
+ - type: Sprite
+ layers:
+ - state: crypt_gray
+ - state: sci_label
+
+- type: entity
+ parent: EncryptionKey
+ id: EncryptionKeyCargoAnotherSector
+ name: cargo encryption key
+ description: An encryption key used by supply employees. Unfortunately, the encryption codes in this sector are different.
+ suffix: Another Sector
+ components:
+ - type: EncryptionKey
+ - type: Sprite
+ layers:
+ - state: crypt_gray
+ - state: cargo_label
diff --git a/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml
new file mode 100644
index 0000000000..d5662268b9
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Objects/Devices/pda.yml
@@ -0,0 +1,41 @@
+- type: entity
+ parent: CargoPDA
+ id: CargoPDAAnotherSector
+ noSpawn: true
+ components:
+ - type: Pda
+ id: CargoIDCardAnotherSector
+ state: pda-cargo
+
+- type: entity
+ parent: CMOPDA
+ id: CMOPDAAnotherSector
+ noSpawn: true
+ components:
+ - type: Pda
+ id: CMOIDCardAnotherSector
+ state: pda-cmo
+
+- type: entity
+ parent: CaptainPDA
+ id: CaptainPDAAnotherSector
+ noSpawn: true
+ components:
+ - type: Pda
+ id: CaptainIDCardAnotherSector
+ state: pda-captain
+ penSlot:
+ startingItem: PenCap
+ priority: -1
+ whitelist:
+ tags:
+ - Write
+
+- type: entity
+ parent: RnDPDA
+ id: RnDPDAAnotherSector
+ noSpawn: true
+ components:
+ - type: Pda
+ id: RDIDCardAnotherSector
+ state: pda-rd
diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml
new file mode 100644
index 0000000000..b23cd2f094
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Objects/Misc/airlocks.yml
@@ -0,0 +1,235 @@
+- type: entity
+ parent: DoorElectronics
+ id: DoorElectronicsClownContractor
+ suffix: ClownContractor, Locked
+ components:
+ - type: AccessReader
+ access: [["ClownContractor"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockClownContractorLocked
+ suffix: ClownContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockClownContractorGlassLocked
+ suffix: ClownContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockShuttle
+ id: AirlockClownContractorShuttleLocked
+ suffix: ClownContractor, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockGlassShuttle
+ id: AirlockClownContractorGlassShuttleLocked
+ suffix: ClownContractor, Glass, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: Windoor
+ id: WindoorClownContractorLocked
+ suffix: ClownContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecure
+ id: WindoorSecureClownContractorLocked
+ suffix: ClownContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorPlasma
+ id: PlasmaWindoorClownContractorLocked
+ suffix: ClownContractor, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorUranium
+ id: UraniumWindoorClownContractorLocked
+ suffix: ClownContractor, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecurePlasma
+ id: PlasmaWindoorSecureClownContractorLocked
+ suffix: ClownContractor, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecureUranium
+ id: UraniumWindoorSecureClownContractorLocked
+ suffix: ClownContractor, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsClownContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: DoorElectronics
+ id: DoorElectronicsChefContractor
+ suffix: ChefContractor, Locked
+ components:
+ - type: AccessReader
+ access: [["ChefContractor"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockChefContractorLocked
+ suffix: ChefContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockChefContractorGlassLocked
+ suffix: ChefContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockShuttle
+ id: AirlockChefContractorShuttleLocked
+ suffix: ChefContractor, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockGlassShuttle
+ id: AirlockChefContractorGlassShuttleLocked
+ suffix: ChefContractor, Glass, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: Windoor
+ id: WindoorChefContractorLocked
+ suffix: ChefContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecure
+ id: WindoorSecureChefContractorLocked
+ suffix: ChefContractor, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorPlasma
+ id: PlasmaWindoorChefContractorLocked
+ suffix: ChefContractor, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorUranium
+ id: UraniumWindoorChefContractorLocked
+ suffix: ChefContractor, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecurePlasma
+ id: PlasmaWindoorSecureChefContractorLocked
+ suffix: ChefContractor, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecureUranium
+ id: UraniumWindoorSecureChefContractorLocked
+ suffix: ChefContractor, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsChefContractor ]
+ - type: Wires
+ layoutId: AirlockArmory
diff --git a/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml
new file mode 100644
index 0000000000..ccfa58f6f3
--- /dev/null
+++ b/Resources/Prototypes/_White/Entities/Objects/Misc/identification_cards.yml
@@ -0,0 +1,51 @@
+- type: entity
+ parent: CargoIDCard
+ id: CargoIDCardAnotherSector
+ noSpawn: true
+ components:
+ - type: PresetIdCard
+ job: CargoTechnicianAnotherSector
+
+- type: entity
+ parent: CMOIDCard
+ id: CMOIDCardAnotherSector
+ noSpawn: true
+ components:
+ - type: PresetIdCard
+ job: ChiefMedicalOfficerAnotherSector
+
+- type: entity
+ parent: CaptainIDCard
+ id: CaptainIDCardAnotherSector
+ noSpawn: true
+ components:
+ - type: PresetIdCard
+ job: CaptainAnotherSector
+
+- type: entity
+ parent: RDIDCard
+ id: RDIDCardAnotherSector
+ noSpawn: true
+ components:
+ - type: PresetIdCard
+ job: ResearchDirectorAnotherSector
+
+- type: entity
+ parent: IDCardStandard
+ id: ClownIDCardContractor
+ components:
+ - type: Sprite
+ layers:
+ - state: non_faction
+ - type: PresetIdCard
+ job: ClownContractor
+
+- type: entity
+ parent: IDCardStandard
+ id: ChefIDCardContractor
+ components:
+ - type: Sprite
+ layers:
+ - state: non_faction
+ - type: PresetIdCard
+ job: ChefContractor
diff --git a/Resources/Prototypes/_White/Roles/Jobs/misc.yml b/Resources/Prototypes/_White/Roles/Jobs/misc.yml
new file mode 100644
index 0000000000..9986d15b25
--- /dev/null
+++ b/Resources/Prototypes/_White/Roles/Jobs/misc.yml
@@ -0,0 +1,51 @@
+- type: job
+ id: CargoTechnicianAnotherSector
+ name: job-name-cargotech
+ description: job-description-cargotech
+ playTimeTracker: JobCargoTechnicianAnotherSector
+ icon: "JobIconCargoTechnician"
+ supervisors: job-supervisors-qm
+
+- type: job
+ id: ChiefMedicalOfficerAnotherSector
+ name: job-name-cmo
+ description: job-description-cmo
+ playTimeTracker: JobChiefMedicalOfficerAnotherSector
+ icon: "JobIconChiefMedicalOfficer"
+ supervisors: job-supervisors-captain
+
+- type: job
+ id: CaptainAnotherSector
+ name: job-name-captain
+ description: job-description-captain
+ playTimeTracker: JobCaptainAnotherSector
+ icon: "JobIconCaptain"
+ supervisors: job-supervisors-centcom
+
+- type: job
+ id: ResearchDirectorAnotherSector
+ name: job-name-rd
+ description: job-description-rd
+ playTimeTracker: JobResearchDirectorAnotherSector
+ icon: "JobIconResearchDirector"
+ supervisors: job-supervisors-captain
+
+- type: job
+ id: ClownContractor
+ name: клоун контрактник
+ description: job-description-clown
+ playTimeTracker: JobClownContractor
+ icon: "JobIconVisitor"
+ supervisors: job-supervisors-hop
+ access:
+ - ClownContractor
+
+- type: job
+ id: ChefContractor
+ name: шеф-повар контрактник
+ description: job-description-chef
+ playTimeTracker: JobChefContractor
+ icon: "JobIconVisitor"
+ supervisors: job-supervisors-hop
+ access:
+ - ChefContractor
diff --git a/Resources/Prototypes/_White/Roles/play_time_trackers.yml b/Resources/Prototypes/_White/Roles/play_time_trackers.yml
new file mode 100644
index 0000000000..bb3b7c5001
--- /dev/null
+++ b/Resources/Prototypes/_White/Roles/play_time_trackers.yml
@@ -0,0 +1,32 @@
+- type: playTimeTracker
+ id: JobInspector
+
+- type: playTimeTracker
+ id: JobBomzh
+
+- type: playTimeTracker
+ id: JobBrigmedic
+
+- type: playTimeTracker
+ id: JobMaid
+
+- type: playTimeTracker
+ id: JobCargoTechnicianAnotherSector
+
+- type: playTimeTracker
+ id: JobChiefMedicalOfficerAnotherSector
+
+- type: playTimeTracker
+ id: JobCaptainAnotherSector
+
+- type: playTimeTracker
+ id: JobResearchDirectorAnotherSector
+
+- type: playTimeTracker
+ id: JobClownContractor
+
+- type: playTimeTracker
+ id: JobChefContractor
+
+- type: playTimeTracker
+ id: JobMercenary
diff --git a/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml b/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml
index 269a2ec66b..df156293b9 100644
--- a/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml
+++ b/Resources/Prototypes/_White/Structures/Machines/deepspacecom.yml
@@ -19,8 +19,8 @@
supportedChannels:
- DeepSpace
- Common
- - type: TTS # check tts work
- id: Sentrybot
+ - type: TTS
+ voicePrototypeId: Sentrybot
- type: Speech
speechVerb: Robotic
- type: Sprite # replace sprites in future
@@ -60,3 +60,75 @@
state: cpu_command
- type: ComputerBoard
prototype: ComputerDeepSpaceCom
+
+- type: entity
+ parent: BaseWallConsole
+ id: DeepSpaceComWallMount
+ name: настенная консоль дальней связи
+ description: Дальняя космическая связь обеспечивает быстрый обмен сообщениями почти на любом расстоянии. Корпорация слышит!
+ components:
+ - type: Sprite
+ sprite: White/Structures/Machines/wall_consoles.rsi
+ layers:
+ - map: [ "computerLayerBody" ]
+ state: comp_wall_0
+ - map: [ "computerLayerScreen" ]
+ state: comm_layer
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.ComputerVisuals.Powered:
+ computerLayerScreen:
+ True: { visible: true, shader: unshaded }
+ False: { visible: false }
+ computerLayerKeys:
+ True: { visible: true, shader: unshaded }
+ False: { visible: true }
+ - type: ApcPowerReceiver
+ - type: Electrified
+ enabled: false
+ usesApcPower: true
+ - type: RadioMicrophone
+ powerRequired: true
+ unobstructedRequired: true
+ listenRange: 2
+ toggleOnInteract: false
+ - type: RadioSpeaker
+ toggleOnInteract: false
+ - type: DeepSpaceCom
+ supportedChannels:
+ - DeepSpace
+ - Common
+ - type: TTS
+ voicePrototypeId: Sentrybot
+ - type: Speech
+ speechVerb: Robotic
+ - type: ActivatableUI
+ key: enum.DeepSpaceComUiKey.Key
+ - type: UserInterface
+ interfaces:
+ enum.DeepSpaceComUiKey.Key:
+ type: DeepSpaceComBoundUI
+ - type: Computer
+ board: DeepSpaceComComputerWallMountCircuitboard
+ - type: PointLight
+ radius: 1.5
+ energy: 1.6
+ color: "#3c5eb5"
+ - type: Damageable
+ damageContainer: StructuralInorganic
+ damageModifierSet: StrongMetallic
+
+- type: entity
+ parent: BaseComputerCircuitboard
+ id: DeepSpaceComComputerWallMountCircuitboard
+ name: плата настенной консоли заказа грузов
+ description: Плата для создания настенной консоли заказа грузов.
+ components:
+ - type: Sprite
+ state: cpu_command
+ - type: ComputerBoard
+ prototype: DeepSpaceComWallMount
+ - type: Tag
+ tags:
+ - WallMountConsoleElectronics
diff --git a/Resources/Prototypes/_White/_Engi/Entities/Mobs/annoying_fly.yml b/Resources/Prototypes/_White/_Engi/Entities/Mobs/annoying_fly.yml
new file mode 100644
index 0000000000..5f6f7053da
--- /dev/null
+++ b/Resources/Prototypes/_White/_Engi/Entities/Mobs/annoying_fly.yml
@@ -0,0 +1,68 @@
+- type: entity
+ name: надоедливая муха
+ parent: [ SimpleMobBase, FlyingMobBase ]
+ id: AnnoyingFly
+ description: Раздражает.
+ components:
+ - type: CombatMode
+ - type: MovementSpeedModifier
+ baseWalkSpeed : 7
+ baseSprintSpeed : 7
+ - type: Sprite
+ drawdepth: Mobs
+ layers:
+ - map: ["enum.DamageStateVisualLayers.Base"]
+ state: 0
+ sprite: White/_Engi/Mobs/Animals/fly.rsi
+ scale: 0.7, 0.7
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape:
+ !type:PhysShapeCircle
+ radius: 0.1
+ density: 30
+ mask:
+ - FlyingMobMask
+ layer:
+ - FlyingMobLayer
+ - type: MobState
+ - type: MobThresholds
+ thresholds:
+ 0: Alive
+ 5: Dead
+ - type: DamageStateVisuals
+ states:
+ Alive:
+ Base: 0
+ Dead:
+ Base: dead
+ - type: Item
+ size: Tiny
+ - type: Tag
+ tags:
+ - Bee
+ - Trash
+ - type: MobPrice
+ price: 50
+ - type: FactionException
+ - type: NpcFactionMember
+ factions:
+ - Passive
+ - type: ZombieImmune
+ - type: MeleeWeapon
+ altDisarm: false
+ angle: 0
+ animation: WeaponArcBite
+ soundHit:
+ path: /Audio/Effects/bite.ogg
+ damage:
+ groups:
+ Brute: 1
+ - type: AmbientSound
+ volume: -4
+ range: 4
+ sound:
+ path: /Audio/White/Ambience/Fly/mosquito.ogg
+ - type: CanEscapeInventory
+ baseResistTime: 0.4
diff --git a/Resources/Prototypes/_White/mercenary.yml b/Resources/Prototypes/_White/mercenary.yml
index e63dfbe20b..4b423eb101 100644
--- a/Resources/Prototypes/_White/mercenary.yml
+++ b/Resources/Prototypes/_White/mercenary.yml
@@ -16,7 +16,7 @@
- id: Tourniquet
- id: Lighter
- id: CigPackBlack
- - id: SpaceCash500
+ - id: SpaceCash5000
- id: FlashlightLantern
- type: startingGear
@@ -79,6 +79,8 @@
nameSegments:
- names_first
- names_last
+ - type: FillIDCard
+ isContractor: true
# Book
- type: entity
@@ -120,7 +122,7 @@
# Airlock
- type: accessLevel
id: Mercenary
- name: id-card-access-level-mercenary
+ name: Наёмник
- type: entity
parent: DoorElectronics
@@ -139,9 +141,17 @@
- type: Sprite
layers:
- state: non_faction
- - type: Access
- tags:
- - Mercenary
+ - type: PresetIdCard
+ job: Mercenary
+
+- type: job
+ id: Mercenary
+ name: наёмник
+ description: ghost-role-information-mercenary-standard-description
+ playTimeTracker: JobMercenary
+ icon: "JobIconVisitor"
+ access:
+ - Mercenary
- type: entity
parent: Airlock
@@ -154,3 +164,101 @@
- type: Wires
layoutId: AirlockArmory
+- type: entity
+ parent: AirlockGlass
+ id: AirlockMercenaryGlassLocked
+ suffix: Mercenary, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockShuttle
+ id: AirlockMercenaryShuttleLocked
+ suffix: Mercenary, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: AirlockGlassShuttle
+ id: AirlockMercenaryGlassShuttleLocked
+ suffix: Mercenary, Glass, Docking, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: Windoor
+ id: WindoorMercenaryLocked
+ suffix: Mercenary, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecure
+ id: WindoorSecureMercenaryLocked
+ suffix: Mercenary, Locked
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorPlasma
+ id: PlasmaWindoorMercenaryLocked
+ suffix: Mercenary, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorUranium
+ id: UraniumWindoorMercenaryLocked
+ suffix: Mercenary, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecurePlasma
+ id: PlasmaWindoorSecureMercenaryLocked
+ suffix: Mercenary, Locked, Plasma
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
+
+- type: entity
+ parent: WindoorSecureUranium
+ id: UraniumWindoorSecureMercenaryLocked
+ suffix: Mercenary, Locked, Uranium
+ components:
+ - type: ContainerFill
+ containers:
+ board: [ DoorElectronicsMercenary ]
+ - type: Wires
+ layoutId: AirlockArmory
diff --git a/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png b/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png
index dcb06d09ca..defddc3585 100644
Binary files a/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png and b/Resources/Textures/Objects/Tools/Decoys/agent_decoy.rsi/aballoon.png differ
diff --git a/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/cballoon.png b/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/cballoon.png
index da63d127c4..d7f45387f0 100644
Binary files a/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/cballoon.png and b/Resources/Textures/Objects/Tools/Decoys/commander_decoy.rsi/cballoon.png differ
diff --git a/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png b/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png
index 1f5b6d4c25..6878be6296 100644
Binary files a/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png and b/Resources/Textures/Objects/Tools/Decoys/elite_decoy.rsi/eballoon.png differ
diff --git a/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png b/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png
index 7edcc12a1f..e70fd1971f 100644
Binary files a/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png and b/Resources/Textures/Objects/Tools/Decoys/juggernaut_decoy.rsi/jballoon.png differ
diff --git a/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/oballoon.png b/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/oballoon.png
index ecdde4162a..2787ef1929 100644
Binary files a/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/oballoon.png and b/Resources/Textures/Objects/Tools/Decoys/operative_decoy.rsi/oballoon.png differ
diff --git a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png
new file mode 100644
index 0000000000..dbe357b8b8
Binary files /dev/null and b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/comm_layer.png differ
diff --git a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json
index a1c534889a..06daab01e5 100644
--- a/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json
+++ b/Resources/Textures/White/Structures/Machines/wall_consoles.rsi/meta.json
@@ -1,104 +1,113 @@
{
- "version": 1,
- "license": "CC0-1.0",
- "copyright": "Made by Valentyi for WhiteDream",
- "size": {
- "x": 32,
- "y": 32
- },
- "states": [
- {
- "name": "comp_wall_0"
+ "version": 1,
+ "license": "CC0-1.0",
+ "copyright": "Made by Valentyi for WhiteDream",
+ "size": {
+ "x": 32,
+ "y": 32
},
- {
- "name": "comp_wall_broken"
- },
- {
- "name": "comp_wall_frame_2"
- },
- {
- "name": "comp_wall_frame_1_2"
- },
- {
- "name": "comp_wall_frame_1"
- },
- {
- "name": "comp_wall_frame_0_1"
- },
- {
- "name": "comp_wall_frame_0"
- },
- {
- "name": "miner_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "scanner_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "energy_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "no_board_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "request_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "service_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "research_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- },
- {
- "name": "artifact_layer",
- "delays": [
- [
- 2.0,
- 2.0
- ]
- ]
- }
- ]
-}
+ "states": [
+ {
+ "name": "comp_wall_0"
+ },
+ {
+ "name": "comp_wall_broken"
+ },
+ {
+ "name": "comp_wall_frame_2"
+ },
+ {
+ "name": "comp_wall_frame_1_2"
+ },
+ {
+ "name": "comp_wall_frame_1"
+ },
+ {
+ "name": "comp_wall_frame_0_1"
+ },
+ {
+ "name": "comp_wall_frame_0"
+ },
+ {
+ "name": "miner_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "scanner_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "energy_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "no_board_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "request_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "service_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "research_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "artifact_layer",
+ "delays": [
+ [
+ 2.0,
+ 2.0
+ ]
+ ]
+ },
+ {
+ "name": "comm_layer",
+ "delays": [
+ [
+ 0.1,
+ 0.1
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/0.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/0.png
new file mode 100644
index 0000000000..b736e0f6f1
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/0.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png
new file mode 100644
index 0000000000..c5abe5d099
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/1.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/2.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/2.png
new file mode 100644
index 0000000000..1778a3c868
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/2.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/3.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/3.png
new file mode 100644
index 0000000000..aaa0197fa8
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/3.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png
new file mode 100644
index 0000000000..c62e11bed0
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/4.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png
new file mode 100644
index 0000000000..763d8f1144
Binary files /dev/null and b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/dead.png differ
diff --git a/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json
new file mode 100644
index 0000000000..cf4cd42bc3
--- /dev/null
+++ b/Resources/Textures/White/_Engi/Mobs/Animals/fly.rsi/meta.json
@@ -0,0 +1,99 @@
+{
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Modified from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b",
+ "states": [
+ {
+ "name": "dead",
+ "delays": [
+ [
+ 1
+ ]
+ ]
+ },
+ {
+ "name": "0",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "1",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "2",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "3",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ },
+ {
+ "name": "4",
+ "delays": [
+ [
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1,
+ 0.1
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file