diff --git a/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUi.cs b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUi.cs
new file mode 100644
index 00000000000..f1688c8dab4
--- /dev/null
+++ b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUi.cs
@@ -0,0 +1,28 @@
+using Robust.Client.UserInterface;
+using Content.Client.UserInterface.Fragments;
+using Content.Shared.CartridgeLoader.Cartridges;
+
+namespace Content.Client.DeltaV.CartridgeLoader.Cartridges;
+
+public sealed partial class MailMetricUi : UIFragment
+{
+ private MailMetricUiFragment? _fragment;
+
+ public override Control GetUIFragmentRoot()
+ {
+ return _fragment!;
+ }
+
+ public override void Setup(BoundUserInterface userInterface, EntityUid? fragmentOwner)
+ {
+ _fragment = new MailMetricUiFragment();
+ }
+
+ public override void UpdateState(BoundUserInterfaceState state)
+ {
+ if (state is MailMetricUiState cast)
+ {
+ _fragment?.UpdateState(cast);
+ }
+ }
+}
diff --git a/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml
new file mode 100644
index 00000000000..c31a1c6063d
--- /dev/null
+++ b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml
@@ -0,0 +1,183 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs
new file mode 100644
index 00000000000..d1560b53668
--- /dev/null
+++ b/Content.Client/DeltaV/CartridgeLoader/Cartridges/MailMetricUiFragment.xaml.cs
@@ -0,0 +1,105 @@
+using System.Runtime.CompilerServices;
+using Content.Shared.CartridgeLoader.Cartridges;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.XAML;
+
+namespace Content.Client.DeltaV.CartridgeLoader.Cartridges;
+
+[GenerateTypedNameReferences]
+public sealed partial class MailMetricUiFragment : BoxContainer
+{
+
+ private OpenedMailPercentGrade? _successGrade;
+
+ public MailMetricUiFragment()
+ {
+ RobustXamlLoader.Load(this);
+
+ // This my way of adding multiple classes to a XAML control.
+ // Haha Batman I'm going to blow up Gotham City
+ OpenedMailCount.StyleClasses.Add("Good");
+ OpenedMailSpesos.StyleClasses.Add("Good");
+ TamperedMailCount.StyleClasses.Add("Danger");
+ TamperedMailSpesos.StyleClasses.Add("Danger");
+ ExpiredMailCount.StyleClasses.Add("Danger");
+ ExpiredMailSpesos.StyleClasses.Add("Danger");
+ DamagedMailCount.StyleClasses.Add("Danger");
+ DamagedMailSpesos.StyleClasses.Add("Danger");
+ UnopenedMailCount.StyleClasses.Add("Caution");
+ }
+
+ public void UpdateState(MailMetricUiState state)
+ {
+ UpdateTextLabels(state);
+ UpdateSuccessGrade(state);
+ }
+
+ public void UpdateTextLabels(MailMetricUiState state)
+ {
+ var stats = state.Metrics;
+
+ OpenedMailCount.Text = stats.OpenedCount.ToString();
+ OpenedMailSpesos.Text = stats.Earnings.ToString();
+ TamperedMailCount.Text = stats.TamperedCount.ToString();
+ TamperedMailSpesos.Text = stats.TamperedLosses.ToString();
+ ExpiredMailCount.Text = stats.ExpiredCount.ToString();
+ ExpiredMailSpesos.Text = stats.ExpiredLosses.ToString();
+ DamagedMailCount.Text = stats.DamagedCount.ToString();
+ DamagedMailSpesos.Text = stats.DamagedLosses.ToString();
+ UnopenedMailCount.Text = state.UnopenedMailCount.ToString();
+ TotalMailCount.Text = state.TotalMail.ToString();
+ TotalMailSpesos.Text = stats.TotalIncome.ToString();
+ SuccessRateCounts.Text = Loc.GetString("mail-metrics-progress",
+ ("opened", stats.OpenedCount),
+ ("total", state.TotalMail));
+ SuccessRatePercent.Text = Loc.GetString("mail-metrics-progress-percent",
+ ("successRate", state.SuccessRate));
+ }
+
+ public void UpdateSuccessGrade(MailMetricUiState state)
+ {
+ var previousGrade = _successGrade;
+ _successGrade = GetSuccessRateGrade(state.SuccessRate);
+
+ // No need to update if they're the same
+ if (previousGrade == _successGrade)
+ return;
+
+ var previousGradeClass = GetClassForGrade(previousGrade);
+ if (previousGradeClass != string.Empty)
+ {
+ SuccessRatePercent.StyleClasses.Remove(previousGradeClass);
+ }
+
+ SuccessRatePercent.StyleClasses.Add(GetClassForGrade(_successGrade));
+ }
+
+ private static OpenedMailPercentGrade GetSuccessRateGrade(double successRate)
+ {
+ return successRate switch
+ {
+ > 75 => OpenedMailPercentGrade.Good,
+ > 50 => OpenedMailPercentGrade.Average,
+ _ => OpenedMailPercentGrade.Bad,
+ };
+ }
+
+ private string GetClassForGrade(OpenedMailPercentGrade? grade)
+ {
+ return grade switch
+ {
+ OpenedMailPercentGrade.Good => "Good",
+ OpenedMailPercentGrade.Average => "Caution",
+ OpenedMailPercentGrade.Bad => "Danger",
+ _ => string.Empty,
+ };
+ }
+}
+
+enum OpenedMailPercentGrade
+{
+ Good,
+ Average,
+ Bad
+}
diff --git a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs
index ea250953422..a5b71cfa7bf 100644
--- a/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs
+++ b/Content.Client/Players/PlayTimeTracking/JobRequirementsManager.cs
@@ -113,7 +113,31 @@ public bool IsAllowed(JobPrototype job, [NotNullWhen(false)] out FormattedMessag
public bool CheckRoleTime(JobPrototype job, [NotNullWhen(false)] out FormattedMessage? reason)
{
var reqs = _entManager.System().GetJobRequirement(job);
- return CheckRoleTime(reqs, out reason);
+
+ //return CheckRoleTime(reqs, out reason); // Frontier: old implementation
+
+ // Frontier: alternate role time checks
+ if (CheckRoleTime(reqs, out reason))
+ return true;
+
+ var altReqs = _entManager.System().GetAlternateJobRequirements(job);
+ if (altReqs != null)
+ {
+ foreach (var alternateSet in altReqs.Values)
+ {
+ // Suppress reasons on alternate requirement sets
+ if (CheckRoleTime(alternateSet, out var altReason))
+ {
+ return true;
+ }
+ reason.PushNewline();
+ reason.AddMarkupPermissive(Loc.GetString("role-requirement-alternative"));
+ reason.PushNewline();
+ reason.AddMarkupPermissive(altReason.ToMarkup());
+ }
+ }
+ return false;
+ // End Frontier: alternate role time checks
}
public bool CheckRoleTime(HashSet? requirements, [NotNullWhen(false)] out FormattedMessage? reason)
diff --git a/Content.Server/DeltaV/Cargo/Components/StationLogisticStatsDatabaseComponent.cs b/Content.Server/DeltaV/Cargo/Components/StationLogisticStatsDatabaseComponent.cs
new file mode 100644
index 00000000000..2890d54025a
--- /dev/null
+++ b/Content.Server/DeltaV/Cargo/Components/StationLogisticStatsDatabaseComponent.cs
@@ -0,0 +1,14 @@
+using Content.Shared.Cargo;
+using Content.Shared.CartridgeLoader.Cartridges;
+
+namespace Content.Server.DeltaV.Cargo.Components;
+
+///
+/// Added to the abstract representation of a station to track stats related to mail delivery and income
+///
+[RegisterComponent, Access(typeof(SharedCargoSystem))]
+public sealed partial class StationLogisticStatsComponent : Component
+{
+ [DataField]
+ public MailStats Metrics { get; set; }
+}
\ No newline at end of file
diff --git a/Content.Server/DeltaV/Cargo/Systems/LogisticStatsSystem.cs b/Content.Server/DeltaV/Cargo/Systems/LogisticStatsSystem.cs
new file mode 100644
index 00000000000..e18bd4c7cf2
--- /dev/null
+++ b/Content.Server/DeltaV/Cargo/Systems/LogisticStatsSystem.cs
@@ -0,0 +1,68 @@
+using Content.Server.DeltaV.Cargo.Components;
+using Content.Shared.Cargo;
+using JetBrains.Annotations;
+
+namespace Content.Server.DeltaV.Cargo.Systems;
+
+public sealed partial class LogisticStatsSystem : SharedCargoSystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+ }
+
+ [PublicAPI]
+ public void AddOpenedMailEarnings(EntityUid uid, StationLogisticStatsComponent component, int earnedMoney)
+ {
+ component.Metrics = component.Metrics with
+ {
+ Earnings = component.Metrics.Earnings + earnedMoney,
+ OpenedCount = component.Metrics.OpenedCount + 1
+ };
+ UpdateLogisticsStats(uid);
+ }
+
+ [PublicAPI]
+ public void AddExpiredMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney)
+ {
+ component.Metrics = component.Metrics with
+ {
+ ExpiredLosses = component.Metrics.ExpiredLosses + lostMoney,
+ ExpiredCount = component.Metrics.ExpiredCount + 1
+ };
+ UpdateLogisticsStats(uid);
+ }
+
+ [PublicAPI]
+ public void AddDamagedMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney)
+ {
+ component.Metrics = component.Metrics with
+ {
+ DamagedLosses = component.Metrics.DamagedLosses + lostMoney,
+ DamagedCount = component.Metrics.DamagedCount + 1
+ };
+ UpdateLogisticsStats(uid);
+ }
+
+ [PublicAPI]
+ public void AddTamperedMailLosses(EntityUid uid, StationLogisticStatsComponent component, int lostMoney)
+ {
+ component.Metrics = component.Metrics with
+ {
+ TamperedLosses = component.Metrics.TamperedLosses + lostMoney,
+ TamperedCount = component.Metrics.TamperedCount + 1
+ };
+ UpdateLogisticsStats(uid);
+ }
+
+ private void UpdateLogisticsStats(EntityUid uid) => RaiseLocalEvent(new LogisticStatsUpdatedEvent(uid));
+}
+
+public sealed class LogisticStatsUpdatedEvent : EntityEventArgs
+{
+ public EntityUid Station;
+ public LogisticStatsUpdatedEvent(EntityUid station)
+ {
+ Station = station;
+ }
+}
diff --git a/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs b/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs
new file mode 100644
index 00000000000..11a6c5c5bb1
--- /dev/null
+++ b/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeComponent.cs
@@ -0,0 +1,11 @@
+namespace Content.Server.DeltaV.CartridgeLoader.Cartridges;
+
+[RegisterComponent, Access(typeof(MailMetricsCartridgeSystem))]
+public sealed partial class MailMetricsCartridgeComponent : Component
+{
+ ///
+ /// Station entity keeping track of logistics stats
+ ///
+ [DataField]
+ public EntityUid? Station;
+}
diff --git a/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs b/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs
new file mode 100644
index 00000000000..905e3854ee8
--- /dev/null
+++ b/Content.Server/DeltaV/CartridgeLoader/Cartridges/MailMetricsCartridgeSystem.cs
@@ -0,0 +1,83 @@
+using Content.Server.DeltaV.Cargo.Components;
+using Content.Server.DeltaV.Cargo.Systems;
+using Content.Server.Station.Systems;
+using Content.Server.CartridgeLoader;
+using Content.Shared.CartridgeLoader;
+using Content.Shared.CartridgeLoader.Cartridges;
+using Content.Server.Mail.Components;
+
+namespace Content.Server.DeltaV.CartridgeLoader.Cartridges;
+
+public sealed class MailMetricsCartridgeSystem : EntitySystem
+{
+ [Dependency] private readonly CartridgeLoaderSystem _cartridgeLoader = default!;
+ [Dependency] private readonly StationSystem _station = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnUiReady);
+ SubscribeLocalEvent(OnLogisticsStatsUpdated);
+ SubscribeLocalEvent(OnMapInit);
+ }
+
+ private void OnUiReady(Entity ent, ref CartridgeUiReadyEvent args)
+ {
+ UpdateUI(ent, args.Loader);
+ }
+
+ private void OnLogisticsStatsUpdated(LogisticStatsUpdatedEvent args)
+ {
+ UpdateAllCartridges(args.Station);
+ }
+
+ private void OnMapInit(EntityUid uid, MailComponent mail, MapInitEvent args)
+ {
+ if (_station.GetOwningStation(uid) is { } station)
+ UpdateAllCartridges(station);
+ }
+
+ private void UpdateAllCartridges(EntityUid station)
+ {
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var uid, out var comp, out var cartridge))
+ {
+ if (cartridge.LoaderUid is not { } loader || comp.Station != station)
+ continue;
+ UpdateUI((uid, comp), loader);
+ }
+ }
+
+ private void UpdateUI(Entity ent, EntityUid loader)
+ {
+ if (_station.GetOwningStation(loader) is { } station)
+ ent.Comp.Station = station;
+
+ if (!TryComp(ent.Comp.Station, out var logiStats))
+ return;
+
+ // Get station's logistic stats
+ var unopenedMailCount = GetUnopenedMailCount(ent.Comp.Station);
+
+ // Send logistic stats to cartridge client
+ var state = new MailMetricUiState(logiStats.Metrics, unopenedMailCount);
+ _cartridgeLoader.UpdateCartridgeUiState(loader, state);
+ }
+
+
+ private int GetUnopenedMailCount(EntityUid? station)
+ {
+ var unopenedMail = 0;
+
+ var query = EntityQueryEnumerator();
+
+ while (query.MoveNext(out var uid, out var comp))
+ {
+ if (comp.IsLocked && _station.GetOwningStation(uid) == station)
+ unopenedMail++;
+ }
+
+ return unopenedMail;
+ }
+}
diff --git a/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs
index 6b8e1ee0b66..26589a7333b 100644
--- a/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs
+++ b/Content.Server/Nyanotrasen/Mail/Components/MailComponent.cs
@@ -85,7 +85,7 @@ public sealed partial class MailComponent : SharedMailComponent
/// Penalty if the mail is destroyed.
///
[DataField]
- public int Penalty = -250;
+ public int Penalty = 0; // Frontier - -250<0
///
/// The sound that's played when the mail's lock is broken.
diff --git a/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs b/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs
new file mode 100644
index 00000000000..ce87eb131fc
--- /dev/null
+++ b/Content.Server/Nyanotrasen/Mail/Components/StationMailRouterComponent.cs
@@ -0,0 +1,9 @@
+namespace Content.Server.Mail;
+
+///
+/// Designates a station as a place for sending and receiving mail.
+///
+[RegisterComponent]
+public sealed partial class StationMailRouterComponent : Component
+{
+}
diff --git a/Content.Server/Nyanotrasen/Mail/MailSystem.cs b/Content.Server/Nyanotrasen/Mail/MailSystem.cs
index 7e76648a09b..801c8ce85a9 100644
--- a/Content.Server/Nyanotrasen/Mail/MailSystem.cs
+++ b/Content.Server/Nyanotrasen/Mail/MailSystem.cs
@@ -11,6 +11,7 @@
using Content.Server.Chat.Systems;
using Content.Server.Chemistry.Containers.EntitySystems;
using Content.Server.Damage.Components;
+using Content.Server.DeltaV.Cargo.Components;
using Content.Server.Destructible;
using Content.Server.Destructible.Thresholds;
using Content.Server.Destructible.Thresholds.Behaviors;
@@ -49,6 +50,7 @@
using Content.Shared.Tag;
using Robust.Shared.Audio.Systems;
using Timer = Robust.Shared.Timing.Timer;
+using Content.Server.DeltaV.Cargo.Systems;
namespace Content.Server.Mail
{
@@ -76,6 +78,9 @@ public sealed class MailSystem : EntitySystem
[Dependency] private readonly MetaDataSystem _metaDataSystem = default!;
[Dependency] private readonly IEntityManager _entManager = default!; // Frontier
+ // DeltaV - system that keeps track of mail and cargo stats
+ [Dependency] private readonly LogisticStatsSystem _logisticsStatsSystem = default!;
+
private ISawmill _sawmill = default!;
public override void Initialize()
@@ -126,6 +131,9 @@ private void OnSpawnPlayer(PlayerSpawningEvent args)
return;
}
+ //if (!HasComp(station)) # Frontier - We dont need to test this.
+ // return;
+
EnsureComp(args.SpawnResult.Value);
}
@@ -223,6 +231,13 @@ private void OnAfterInteractUsing(EntityUid uid, MailComponent component, AfterI
}
UnlockMail(uid, component);
+ // DeltaV - Add earnings to logistic stats
+ ExecuteForEachLogisticsStats(uid, (station, logisticStats) =>
+ {
+ _logisticsStatsSystem.AddOpenedMailEarnings(station,
+ logisticStats,
+ component.IsProfitable ? component.Bounty : 0);
+ });
if (!component.IsProfitable)
{
@@ -239,7 +254,6 @@ private void OnAfterInteractUsing(EntityUid uid, MailComponent component, AfterI
while (query.MoveNext(out var station, out var account))
{
_cargoSystem.UpdateBankAccount(station, account, component.Bounty);
- return;
}
}
@@ -305,8 +319,20 @@ public void PenalizeStationFailedDelivery(EntityUid uid, MailComponent component
private void OnDestruction(EntityUid uid, MailComponent component, DestructionEventArgs args)
{
if (component.IsLocked)
+ {
+ bool wasProfitable = component.IsProfitable; // Frontier: cache mail profitability
PenalizeStationFailedDelivery(uid, component, "mail-penalty-lock");
+ // DeltaV - Damaged mail recorded to logistic stats
+ component.IsLocked = false; // Frontier: do not count this package as unopened.
+ ExecuteForEachLogisticsStats(uid, (station, logisticStats) =>
+ {
+ _logisticsStatsSystem.AddDamagedMailLosses(station,
+ logisticStats,
+ wasProfitable ? component.Penalty : 0);
+ });
+ }
+
// if (component.IsEnabled)
// OpenMail(uid, component); // Frontier - Dont open the mail on destruction.
@@ -334,7 +360,18 @@ private void OnBreak(EntityUid uid, MailComponent component, BreakageEventArgs a
_appearanceSystem.SetData(uid, MailVisuals.IsBroken, true);
if (component.IsFragile)
+ {
+ bool wasProfitable = component.IsProfitable; // Frontier: cache mail profitability
PenalizeStationFailedDelivery(uid, component, "mail-penalty-fragile");
+
+ // DeltaV - Broken mail recorded to logistic stats
+ ExecuteForEachLogisticsStats(uid, (station, logisticStats) =>
+ {
+ _logisticsStatsSystem.AddDamagedMailLosses(station,
+ logisticStats,
+ wasProfitable ? component.Penalty : 0);
+ });
+ }
}
private void OnMailEmagged(EntityUid uid, MailComponent component, ref GotEmaggedEvent args)
@@ -344,6 +381,18 @@ private void OnMailEmagged(EntityUid uid, MailComponent component, ref GotEmagge
UnlockMail(uid, component);
+ // Frontier: ding station on emag
+ bool wasProfitable = component.IsProfitable; // Frontier: cache mail profitability
+ PenalizeStationFailedDelivery(uid, component, "mail-penalty-lock");
+
+ // DeltaV - Tampered mail recorded to logistic stats
+ ExecuteForEachLogisticsStats(uid, (station, logisticStats) =>
+ {
+ _logisticsStatsSystem.AddTamperedMailLosses(station,
+ logisticStats,
+ wasProfitable ? component.Penalty : 0);
+ });
+
_popupSystem.PopupEntity(Loc.GetString("mail-unlocked-by-emag"), uid, args.UserUid);
_audioSystem.PlayPvs(component.EmagSound, uid, AudioParams.Default.WithVolume(4));
@@ -475,27 +524,39 @@ public void SetupMail(EntityUid uid, MailTeleporterComponent component, MailReci
if (mailComp.IsLarge)
{
mailComp.Bounty += component.LargeBonus;
- mailComp.Penalty += component.LargeMalus;
+ //mailComp.Penalty += component.LargeMalus; // Frontier - Setting penalty to stay 0
}
// End Frontier
if (mailComp.IsFragile)
{
mailComp.Bounty += component.FragileBonus;
- mailComp.Penalty += component.FragileMalus;
+ //mailComp.Penalty += component.FragileMalus; // Frontier - Setting penalty to stay 0
_appearanceSystem.SetData(uid, MailVisuals.IsFragile, true);
}
if (mailComp.IsPriority)
{
mailComp.Bounty += component.PriorityBonus;
- mailComp.Penalty += component.PriorityMalus;
+ //mailComp.Penalty += component.PriorityMalus; // Frontier - Setting penalty to stay 0
_appearanceSystem.SetData(uid, MailVisuals.IsPriority, true);
mailComp.priorityCancelToken = new CancellationTokenSource();
Timer.Spawn((int) component.priorityDuration.TotalMilliseconds,
- () => PenalizeStationFailedDelivery(uid, mailComp, "mail-penalty-expired"),
+ () =>
+ {
+ bool wasProfitable = mailComp.IsProfitable; // Frontier: cache mail profitability
+ PenalizeStationFailedDelivery(uid, mailComp, "mail-penalty-expired");
+
+ // DeltaV - Expired mail recorded to logistic stats
+ ExecuteForEachLogisticsStats(uid, (station, logisticStats) =>
+ {
+ _logisticsStatsSystem.AddExpiredMailLosses(station,
+ logisticStats,
+ wasProfitable ? mailComp.Penalty : 0);
+ });
+ },
mailComp.priorityCancelToken.Token);
}
@@ -714,7 +775,6 @@ public void SpawnMail(EntityUid uid, MailTeleporterComponent? component = null)
SetupMail(mail, component, candidate);
_tagSystem.AddTag(mail, "Mail"); // Frontier
- _tagSystem.AddTag(mail, "Recyclable"); // Frontier - Make it so mail can be destroyed by reclaimer
}
if (_containerSystem.TryGetContainer(uid, "queued", out var queued))
@@ -760,6 +820,21 @@ private void UpdateMailTrashState(EntityUid uid, bool isTrash)
{
_appearanceSystem.SetData(uid, MailVisuals.IsTrash, isTrash);
}
+
+ // DeltaV - Helper function that executes for each StationLogisticsStatsComponent
+ // For updating MailMetrics stats
+ private void ExecuteForEachLogisticsStats(EntityUid uid,
+ Action action)
+ {
+
+ var query = EntityQueryEnumerator();
+ while (query.MoveNext(out var station, out var logisticStats))
+ {
+ //if (_stationSystem.GetOwningStation(uid) != station) # Frontier - No need for this test
+ // continue;
+ action(station, logisticStats);
+ }
+ }
}
public struct MailRecipient
diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs
index aaea23ddd56..57d9d4a2b87 100644
--- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs
+++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenAutoCabling.cs
@@ -53,6 +53,9 @@ private async Task PostGen(AutoCablingDunGen gen, DungeonData data, Dungeon dung
if (!ValidateResume())
return;
+ if (cableTiles.Count <= 0) // Frontier: empty check
+ return; // Frontier: empty check
+
var startNodes = new List(cableTiles);
random.Shuffle(startNodes);
var start = startNodes[0];
diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs
index afc7608d64a..530c7344ab3 100644
--- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs
+++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenWallMount.cs
@@ -20,7 +20,9 @@ private async Task PostGen(WallMountDunGen gen, DungeonData data, Dungeon dungeo
}
var tileDef = _prototype.Index(tileProto);
- data.SpawnGroups.TryGetValue(DungeonDataKey.WallMounts, out var spawnProto);
+ bool validProto = data.SpawnGroups.TryGetValue(DungeonDataKey.WallMounts, out var spawnProto); // Frontier: assign to validProto
+ if (!validProto) // Frontier: add error handling
+ _sawmill.Warning($"No wallmount spawn group for dungeon type."); // Frontier: add error handling
var checkedTiles = new HashSet();
var allExterior = new HashSet(dungeon.CorridorExteriorTiles);
@@ -38,6 +40,9 @@ private async Task PostGen(WallMountDunGen gen, DungeonData data, Dungeon dungeo
_maps.SetTile(_gridUid, _grid, neighbor, _tile.GetVariantTile(tileDef, random));
var gridPos = _maps.GridTileToLocal(_gridUid, _grid, neighbor);
+
+ if (!validProto) // Frontier: error handling
+ continue; // Frontier: error handling
var protoNames = EntitySpawnCollection.GetSpawns(_prototype.Index(spawnProto).Entries, random);
_entManager.SpawnEntities(gridPos, protoNames);
diff --git a/Content.Server/Radio/Components/RadioSpeakerComponent.cs b/Content.Server/Radio/Components/RadioSpeakerComponent.cs
index 150e903e527..17995810bb8 100644
--- a/Content.Server/Radio/Components/RadioSpeakerComponent.cs
+++ b/Content.Server/Radio/Components/RadioSpeakerComponent.cs
@@ -1,3 +1,4 @@
+using Content.Server.Chat.Systems; // Frontier: InGameICChatType
using Content.Server.Radio.EntitySystems;
using Content.Shared.Chat;
using Content.Shared.Radio;
@@ -24,4 +25,11 @@ public sealed partial class RadioSpeakerComponent : Component
[DataField("enabled")]
public bool Enabled;
+
+ //Frontier: radio output volume
+ ///
+ /// The output chat type when a message is received.
+ ///
+ [DataField]
+ public InGameICChatType OutputChatType = InGameICChatType.Whisper;
}
diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
index 1258e0b8c7e..17b65d6020d 100644
--- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
+++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
@@ -48,6 +48,8 @@ public override void Initialize()
SubscribeLocalEvent(OnToggleIntercomMic);
SubscribeLocalEvent(OnToggleIntercomSpeaker);
SubscribeLocalEvent(OnSelectIntercomChannel);
+
+ SubscribeLocalEvent(OnMapInit); // Frontier
}
public override void Update(float frameTime)
@@ -215,7 +217,7 @@ private void OnReceiveRadio(EntityUid uid, RadioSpeakerComponent component, ref
("originalName", nameEv.Name));
// log to chat so people can identity the speaker/source, but avoid clogging ghost chat if there are many radios
- _chat.TrySendInGameICMessage(uid, args.Message, InGameICChatType.Whisper, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false);
+ _chat.TrySendInGameICMessage(uid, args.Message, component.OutputChatType, ChatTransmitRange.GhostRangeLimitNoAdminCheck, nameOverride: name, checkRadioPrefix: false); // Frontier: GhostRangeLimit ent, ref EncryptionChannelsChangedEvent args)
@@ -280,4 +282,20 @@ private void SetIntercomChannel(Entity ent, ProtoId(shuttleUid))
continue;
- //this whole code snippet makes me question humanity. the following code block is a fix for frontier.
+ // Frontier: try to find a potential destination for ship that doesn't collide with other grids.
var mapId = _gameTicker.DefaultMap;
- var mapUid = _mapManager.GetMapEntityId(mapId);
- var dropLocation = _random.NextVector2(750, 2750);
-
- _shuttle.FTLToCoordinates(shuttleUid, shuttle, new EntityCoordinates(mapUid, dropLocation), 0f, 5.5f, 50f);
+ if (!_mapSystem.TryGetMap(mapId, out var mapUid))
+ {
+ Log.Error($"Could not get DefaultMap EntityUID, shuttle {shuttleUid} may be stuck on expedition.");
+ continue;
+ }
+
+ // Destination generator parameters (move to CVAR?)
+ int numRetries = 20; // Maximum number of retries
+ float minDistance = 200f; // Minimum distance from another object, in meters
+ float minRange = 750f; // Minimum distance from sector centre, in meters
+ float maxRange = 3500f; // Maximum distance from sector centre, in meters
+
+ // Get a list of all grid positions on the destination map
+ List gridCoords = new();
+ var gridQuery = EntityManager.AllEntityQueryEnumerator();
+ while (gridQuery.MoveNext(out var _, out _, out var xform))
+ {
+ if (xform.MapID == mapId)
+ gridCoords.Add(_transform.GetWorldPosition(xform));
+ }
+
+ Vector2 dropLocation = _random.NextVector2(minRange, maxRange);
+ for (int i = 0; i < numRetries; i++)
+ {
+ bool positionIsValid = true;
+ foreach (var station in gridCoords)
+ {
+ if (Vector2.Distance(station, dropLocation) < minDistance)
+ {
+ positionIsValid = false;
+ break;
+ }
+ }
+
+ if (positionIsValid)
+ break;
+
+ // No good position yet, pick another random position.
+ dropLocation = _random.NextVector2(minRange, maxRange);
+ }
+
+ _shuttle.FTLToCoordinates(shuttleUid, shuttle, new EntityCoordinates(mapUid.Value, dropLocation), 0f, 5.5f, 50f);
+ // End Frontier: try to find a potential destination for ship that doesn't collide with other grids.
}
break;
diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs
index 2b5f479615f..51b10a96e0e 100644
--- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs
+++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs
@@ -138,27 +138,8 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid?
case CartridgeAmmoComponent cartridge:
if (!cartridge.Spent)
{
- if (cartridge.Count > 1)
- {
- var ev = new GunGetAmmoSpreadEvent(cartridge.Spread);
- RaiseLocalEvent(gunUid, ref ev);
-
- var angles = LinearSpread(mapAngle - ev.Spread / 2,
- mapAngle + ev.Spread / 2, cartridge.Count);
-
- for (var i = 0; i < cartridge.Count; i++)
- {
- var uid = Spawn(cartridge.Prototype, fromEnt);
- ShootOrThrow(uid, angles[i].ToVec(), gunVelocity, gun, gunUid, user);
- shotProjectiles.Add(uid);
- }
- }
- else
- {
- var uid = Spawn(cartridge.Prototype, fromEnt);
- ShootOrThrow(uid, mapDirection, gunVelocity, gun, gunUid, user);
- shotProjectiles.Add(uid);
- }
+ var uid = Spawn(cartridge.Prototype, fromEnt);
+ CreateAndFireProjectiles(uid, cartridge);
RaiseLocalEvent(ent!.Value, new AmmoShotEvent()
{
@@ -166,8 +147,6 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid?
});
SetCartridgeSpent(ent.Value, cartridge, true);
- MuzzleFlash(gunUid, cartridge, mapDirection.ToAngle(), user);
- Audio.PlayPredicted(gun.SoundGunshotModified, gunUid, user);
if (cartridge.DeleteOnSpawn)
Del(ent.Value);
@@ -186,10 +165,10 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid?
break;
// Ammo shoots itself
case AmmoComponent newAmmo:
- shotProjectiles.Add(ent!.Value);
- MuzzleFlash(gunUid, newAmmo, mapDirection.ToAngle(), user);
- Audio.PlayPredicted(gun.SoundGunshotModified, gunUid, user);
- ShootOrThrow(ent.Value, mapDirection, gunVelocity, gun, gunUid, user);
+ if (ent == null)
+ break;
+ CreateAndFireProjectiles(ent.Value, newAmmo);
+
break;
case HitscanPrototype hitscan:
@@ -304,6 +283,36 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid?
{
FiredProjectiles = shotProjectiles,
});
+
+ void CreateAndFireProjectiles(EntityUid ammoEnt, AmmoComponent ammoComp)
+ {
+ if (TryComp(ammoEnt, out var ammoSpreadComp))
+ {
+ var spreadEvent = new GunGetAmmoSpreadEvent(ammoSpreadComp.Spread);
+ RaiseLocalEvent(gunUid, ref spreadEvent);
+
+ var angles = LinearSpread(mapAngle - spreadEvent.Spread / 2,
+ mapAngle + spreadEvent.Spread / 2, ammoSpreadComp.Count);
+
+ ShootOrThrow(ammoEnt, angles[0].ToVec(), gunVelocity, gun, gunUid, user);
+ shotProjectiles.Add(ammoEnt);
+
+ for (var i = 1; i < ammoSpreadComp.Count; i++)
+ {
+ var newuid = Spawn(ammoSpreadComp.Proto, fromEnt);
+ ShootOrThrow(newuid, angles[i].ToVec(), gunVelocity, gun, gunUid, user);
+ shotProjectiles.Add(ammoEnt);
+ }
+ }
+ else
+ {
+ ShootOrThrow(ammoEnt, mapDirection, gunVelocity, gun, gunUid, user);
+ shotProjectiles.Add(ammoEnt);
+ }
+
+ MuzzleFlash(gunUid, ammoComp, mapDirection.ToAngle(), user);
+ Audio.PlayPredicted(gun.SoundGunshotModified, gunUid, user);
+ }
}
private void ShootOrThrow(EntityUid uid, Vector2 mapDirection, Vector2 gunVelocity, GunComponent gun, EntityUid gunUid, EntityUid? user)
diff --git a/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorComponent.cs b/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorComponent.cs
index bf26f399f95..2a6269dd6a6 100644
--- a/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorComponent.cs
+++ b/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorComponent.cs
@@ -23,5 +23,8 @@ public sealed partial class PacifiedZoneGeneratorComponent : Component
[DataField]
public List> ImmuneRoles = new();
+
+ [DataField]
+ public TimeSpan? ImmunePlaytime = null;
}
}
\ No newline at end of file
diff --git a/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorSystem.cs b/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorSystem.cs
index da6591a6237..fcdcb3da5c0 100644
--- a/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorSystem.cs
+++ b/Content.Server/_NF/PacifiedZone/PacifiedZoneGeneratorSystem.cs
@@ -1,9 +1,12 @@
+using Robust.Server.Player;
using Robust.Shared.Timing;
+using Content.Server.Administration.Systems;
using Content.Shared.Alert;
using Content.Shared.CombatMode.Pacification;
using Content.Shared.Humanoid;
using Content.Shared.Mind;
using Content.Shared.Roles.Jobs;
+using Content.Server.Players.PlayTimeTracking;
namespace Content.Server._NF.PacifiedZone
{
@@ -14,6 +17,9 @@ public sealed class PacifiedZoneGeneratorSystem : EntitySystem
[Dependency] private readonly SharedMindSystem _mindSystem = default!;
[Dependency] private readonly SharedJobSystem _jobSystem = default!;
[Dependency] private readonly AlertsSystem _alerts = default!;
+ [Dependency] private readonly IPlayerManager _playerManager = default!;
+ [Dependency] private readonly PlayTimeTrackingManager _playtimeTracking = default!;
+ [Dependency] private readonly AdminSystem _admin = default!;
private const string Alert = "PacifiedZone";
@@ -26,26 +32,7 @@ public override void Initialize()
private void OnComponentInit(EntityUid uid, PacifiedZoneGeneratorComponent component, ComponentInit args)
{
- foreach (var humanoidUid in _lookup.GetEntitiesInRange(Transform(uid).Coordinates, component.Radius))
- {
- if (HasComp(humanoidUid))
- continue;
-
- if (!_mindSystem.TryGetMind(humanoidUid, out var mindId, out var _))
- continue;
-
- _jobSystem.MindTryGetJobId(mindId, out var jobId);
-
- if (jobId != null && component.ImmuneRoles.Contains(jobId.Value))
- continue;
-
- var pacifiedComponent = AddComp(humanoidUid);
- EnableAlert(humanoidUid, pacifiedComponent);
- AddComp(humanoidUid);
- component.TrackedEntities.Add(humanoidUid);
- }
-
- component.NextUpdate = _gameTiming.CurTime + component.UpdateInterval;
+ UpdatePacifiedState(uid, component);
}
private void OnComponentShutdown(EntityUid uid, PacifiedZoneGeneratorComponent component, ComponentShutdown args)
@@ -65,55 +52,70 @@ public override void Update(float frameTime)
var genQuery = AllEntityQuery();
while (genQuery.MoveNext(out var genUid, out var component))
{
- List newEntities = new List();
// Not yet update time, skip this
if (_gameTiming.CurTime < component.NextUpdate)
continue;
- var query = _lookup.GetEntitiesInRange(Transform(genUid).Coordinates, component.Radius);
- foreach (var humanoidUid in query)
- {
- if (!_mindSystem.TryGetMind(humanoidUid, out var mindId, out var mind))
- continue;
+ UpdatePacifiedState(genUid, component);
+ }
+ }
+
+ private void UpdatePacifiedState(EntityUid genUid, PacifiedZoneGeneratorComponent component)
+ {
+ List newEntities = new List();
+ var query = _lookup.GetEntitiesInRange(Transform(genUid).Coordinates, component.Radius);
+ foreach (var humanoidUid in query)
+ {
+ // Check preconditions for an entity to be pacified at all.
+ // If player matches an immune role, or has playtime above a zone's threshold, it should not be pacified.
+ if (!_mindSystem.TryGetMind(humanoidUid, out var mindId, out var mind))
+ continue;
- _jobSystem.MindTryGetJobId(mindId, out var jobId);
+ _jobSystem.MindTryGetJobId(mindId, out var jobId);
- // Player matches an immune role, should not be pacified.
- if (jobId != null && component.ImmuneRoles.Contains(jobId.Value))
- continue;
+ if (jobId != null && component.ImmuneRoles.Contains(jobId.Value))
+ continue;
- if (component.TrackedEntities.Contains(humanoidUid))
- {
- // Entity still in zone.
- newEntities.Add(humanoidUid);
- component.TrackedEntities.Remove(humanoidUid);
- }
- else
+ if (component.ImmunePlaytime != null)
+ {
+ var playerInfo = _admin.GetCachedPlayerInfo(mind?.UserId);
+ if (playerInfo != null && playerInfo.OverallPlaytime >= component.ImmunePlaytime)
{
- // Player is pacified (either naturally or by another zone), skip them.
- if (HasComp(humanoidUid))
- continue;
-
- // New entity in zone, needs the Pacified comp.
- var pacifiedComponent = AddComp(humanoidUid);
- EnableAlert(humanoidUid, pacifiedComponent);
- AddComp(humanoidUid);
- newEntities.Add(humanoidUid);
+ continue;
}
}
- // Anything left in our old set has left the zone, remove their pacified status.
- foreach (var humanoid_net_uid in component.TrackedEntities)
+ // Existing entity, note it still exists.
+ if (component.TrackedEntities.Contains(humanoidUid))
{
- RemComp(humanoid_net_uid);
- RemComp(humanoid_net_uid);
- DisableAlert(humanoid_net_uid);
+ // Entity still in zone.
+ newEntities.Add(humanoidUid);
+ component.TrackedEntities.Remove(humanoidUid);
}
+ else
+ {
+ // Player is pacified (either naturally or by another zone), skip them.
+ if (HasComp(humanoidUid))
+ continue;
- // Update state for next run.
- component.TrackedEntities = newEntities;
- component.NextUpdate = _gameTiming.CurTime + component.UpdateInterval;
+ // New entity in zone, needs the Pacified comp.
+ var pacifiedComponent = AddComp(humanoidUid);
+ EnableAlert(humanoidUid, pacifiedComponent);
+ AddComp(humanoidUid);
+ newEntities.Add(humanoidUid);
+ }
}
+
+ // Anything left in our old set has left the zone, remove their pacified status.
+ foreach (var humanoid_net_uid in component.TrackedEntities)
+ {
+ RemComp(humanoid_net_uid);
+ RemComp(humanoid_net_uid);
+ DisableAlert(humanoid_net_uid);
+ }
+ // Update state for next run.
+ component.TrackedEntities = newEntities;
+ component.NextUpdate = _gameTiming.CurTime + component.UpdateInterval;
}
// Overrides the default Pacified alert with one for the pacified zone.
diff --git a/Content.Server/_NF/RadioEntity/Components/ShuttleIntercomComponent.cs b/Content.Server/_NF/RadioEntity/Components/ShuttleIntercomComponent.cs
new file mode 100644
index 00000000000..fe9aa22e0b5
--- /dev/null
+++ b/Content.Server/_NF/RadioEntity/Components/ShuttleIntercomComponent.cs
@@ -0,0 +1,22 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Radio.Components;
+
+///
+/// Append the intercom UI as a added verb
+///
+[RegisterComponent]
+public sealed partial class ShuttleIntercomComponent : Component
+{
+ ///
+ /// If true, appends the name of the station to any message sent over the console.
+ ///
+ [DataField]
+ public bool AppendName = false;
+
+ ///
+ /// If non-null, replaces the name of the station with the given string when sending messages.
+ ///
+ [DataField]
+ public string? OverrideName = null;
+}
diff --git a/Content.Server/_NF/RadioEntity/RadioEvent.cs b/Content.Server/_NF/RadioEntity/RadioEvent.cs
new file mode 100644
index 00000000000..9396b99f62b
--- /dev/null
+++ b/Content.Server/_NF/RadioEntity/RadioEvent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Radio;
+
+namespace Content.Server._NF.Radio;
+
+///
+/// Use this event to transform radio messages before they're sent.
+///
+[ByRefEvent]
+public record struct RadioTransformMessageEvent(RadioChannelPrototype Channel, EntityUid RadioSource, string Name, string Message, EntityUid MessageSource)
+{
+ public readonly RadioChannelPrototype Channel = Channel;
+ public readonly EntityUid RadioSource = RadioSource;
+ public string Name = Name;
+ public string Message = Message;
+ public EntityUid MessageSource = MessageSource;
+}
diff --git a/Content.Server/_NF/RadioEntity/Systems/ShuttleIntercomSystem.cs b/Content.Server/_NF/RadioEntity/Systems/ShuttleIntercomSystem.cs
new file mode 100644
index 00000000000..f47efbb9a8b
--- /dev/null
+++ b/Content.Server/_NF/RadioEntity/Systems/ShuttleIntercomSystem.cs
@@ -0,0 +1,78 @@
+using Content.Server._NF.Radio;
+using Content.Shared.Radio.Components;
+using Robust.Server.GameObjects;
+using Content.Shared.Verbs;
+using Robust.Shared.Player;
+using Content.Shared.Radio;
+using Content.Server.Station.Systems;
+using Content.Server.Station.Components;
+
+namespace Content.Server.Radio.EntitySystems;
+
+///
+/// Add the intercom UI as a new verb as to not conflict with shuttle UI
+///
+public sealed partial class ShuttleIntercomSystem : EntitySystem
+{
+ [Dependency] private readonly UserInterfaceSystem _ui = default!;
+ [Dependency] private readonly StationSystem _station = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent>(OnAlternativeVerb);
+ SubscribeLocalEvent(OnRadioTransformMessage);
+ }
+
+ private void OnAlternativeVerb(EntityUid uid, ShuttleIntercomComponent component, GetVerbsEvent args)
+ {
+ if (!args.CanAccess || !args.CanInteract)
+ return;
+
+ var openUiVerb = new AlternativeVerb
+ {
+ Act = () => ToggleUi(uid, component, args.User),
+ Text = Loc.GetString("intercom-verb")
+ };
+ args.Verbs.Add(openUiVerb);
+ }
+
+ private void ToggleUi(EntityUid uid, ShuttleIntercomComponent? component = null, EntityUid? user = null)
+ {
+ if (!Resolve(uid, ref component))
+ return;
+
+ if (!TryComp(user, out var actor))
+ return;
+
+ _ui.TryToggleUi(uid, IntercomUiKey.Key, actor.PlayerSession);
+ }
+
+ private void OnRadioTransformMessage(EntityUid uid, ShuttleIntercomComponent component, ref RadioTransformMessageEvent args)
+ {
+ // Not appending name, nothing to do.
+ if (!component.AppendName)
+ {
+ return;
+ }
+
+ var station = _station.GetOwningStation(uid);
+ if (station is null || !TryComp(station, out var metadata))
+ {
+ return;
+ }
+
+ // Get the name of the ship we're on, if there is one.
+ string nameToAppend;
+ if (component.OverrideName != null)
+ {
+ nameToAppend = component.OverrideName;
+ }
+ else
+ {
+ nameToAppend = metadata.EntityName;
+ }
+ args.Name += $" ({nameToAppend})";
+ args.MessageSource = station.Value;
+ }
+}
diff --git a/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs
new file mode 100644
index 00000000000..106f3984f2e
--- /dev/null
+++ b/Content.Shared/DeltaV/CartridgeLoader/Cartridges/MailMetricUiState.cs
@@ -0,0 +1,50 @@
+using Content.Shared.Security;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.CartridgeLoader.Cartridges;
+
+[Serializable, NetSerializable]
+public sealed class MailMetricUiState : BoundUserInterfaceState
+{
+ public readonly MailStats Metrics;
+ public int UnopenedMailCount { get; }
+ public int TotalMail { get; }
+ public double SuccessRate { get; }
+
+ public MailMetricUiState(MailStats metrics, int unopenedMailCount)
+ {
+ Metrics = metrics;
+ UnopenedMailCount = unopenedMailCount;
+ TotalMail = metrics.TotalMail(unopenedMailCount);
+ SuccessRate = metrics.SuccessRate(unopenedMailCount);
+ }
+}
+
+[DataDefinition]
+[Serializable, NetSerializable]
+public partial record struct MailStats
+{
+ public int Earnings { get; init; }
+ public int DamagedLosses { get; init; }
+ public int ExpiredLosses { get; init; }
+ public int TamperedLosses { get; init; }
+ public int OpenedCount { get; init; }
+ public int DamagedCount { get; init; }
+ public int ExpiredCount { get; init; }
+ public int TamperedCount { get; init; }
+
+ public readonly int TotalMail(int unopenedCount)
+ {
+ return OpenedCount + TamperedCount + DamagedCount + ExpiredCount + unopenedCount;
+ }
+
+ public readonly int TotalIncome => Earnings + DamagedLosses + ExpiredLosses + TamperedLosses;
+
+ public readonly double SuccessRate(int unopenedCount)
+ {
+ var totalMail = TotalMail(unopenedCount);
+ return (totalMail > 0)
+ ? Math.Round((double)OpenedCount / totalMail * 100, 2)
+ : 0;
+ }
+}
\ No newline at end of file
diff --git a/Content.Shared/Projectiles/ProjectileSpreadComponent.cs b/Content.Shared/Projectiles/ProjectileSpreadComponent.cs
new file mode 100644
index 00000000000..1edffe3ba56
--- /dev/null
+++ b/Content.Shared/Projectiles/ProjectileSpreadComponent.cs
@@ -0,0 +1,32 @@
+using Content.Shared.Weapons.Ranged.Systems;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Projectiles;
+
+///
+/// Spawns a spread of the projectiles when fired
+///
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedGunSystem))]
+public sealed partial class ProjectileSpreadComponent : Component
+{
+ ///
+ /// The entity prototype that will be fired by the rest of the spread.
+ /// Will generally be the same entity prototype as the first projectile being fired.
+ /// Needed for ammo components that do not specify a fired prototype, unlike cartridges.
+ ///
+ [DataField(required: true)]
+ public EntProtoId Proto;
+
+ ///
+ /// How much the ammo spreads when shot, in degrees. Does nothing if count is 0.
+ ///
+ [DataField]
+ public Angle Spread = Angle.FromDegrees(5);
+
+ ///
+ /// How many prototypes are spawned when shot.
+ ///
+ [DataField]
+ public int Count = 1;
+}
diff --git a/Content.Shared/Radio/Components/IntercomComponent.cs b/Content.Shared/Radio/Components/IntercomComponent.cs
index 8d7b87597b1..adb044dba1c 100644
--- a/Content.Shared/Radio/Components/IntercomComponent.cs
+++ b/Content.Shared/Radio/Components/IntercomComponent.cs
@@ -1,4 +1,4 @@
-using Robust.Shared.GameStates;
+using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.Radio.Components;
@@ -29,4 +29,16 @@ public sealed partial class IntercomComponent : Component
///
[DataField, AutoNetworkedField]
public List> SupportedChannels = new();
+
+ ///
+ /// Frontier - Start the intercom speaker with the map.
+ ///
+ [DataField]
+ public bool StartSpeakerOnMapInit { get; set; } = false;
+
+ ///
+ /// Frontier - Start the intercom microphone with the map.
+ ///
+ [DataField]
+ public bool StartMicrophoneOnMapInit { get; set; } = false;
}
diff --git a/Content.Shared/Roles/JobPrototype.cs b/Content.Shared/Roles/JobPrototype.cs
index 84263f3790f..c7e979e788d 100644
--- a/Content.Shared/Roles/JobPrototype.cs
+++ b/Content.Shared/Roles/JobPrototype.cs
@@ -44,6 +44,9 @@ public sealed partial class JobPrototype : IPrototype
[DataField, Access(typeof(SharedRoleSystem), Other = AccessPermissions.None)]
public HashSet? Requirements;
+ [DataField, Access(typeof(SharedRoleSystem), Other = AccessPermissions.None)] // Frontier
+ public Dictionary>? AlternateRequirementSets; // Frontier: sets of requirements - one must be matched in order to
+
[DataField("whitelistRequired")]
public bool WhitelistRequired = false;
diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs
index 81a360ebb7f..a63b933fb2d 100644
--- a/Content.Shared/Roles/SharedRoleSystem.cs
+++ b/Content.Shared/Roles/SharedRoleSystem.cs
@@ -288,6 +288,18 @@ public void MindPlaySound(EntityUid mindId, SoundSpecifier? sound, MindComponent
return _prototypes.Index(job).Requirements;
}
+ // Frontier: alternate requirement sets
+ public Dictionary>? GetAlternateJobRequirements(JobPrototype job)
+ {
+ return job.AlternateRequirementSets;
+ }
+
+ public Dictionary>? GetAlternateJobRequirements(ProtoId job)
+ {
+ return _prototypes.Index(job).AlternateRequirementSets;
+ }
+ // End Frontier: alternate requirement sets
+
public HashSet? GetAntagRequirement(ProtoId antag)
{
if (_requirementOverride != null && _requirementOverride.Antags.TryGetValue(antag, out var req))
diff --git a/Content.Shared/Vehicle/SharedVehicleSystem.cs b/Content.Shared/Vehicle/SharedVehicleSystem.cs
index fc97130f700..f56cb8bc5f4 100644
--- a/Content.Shared/Vehicle/SharedVehicleSystem.cs
+++ b/Content.Shared/Vehicle/SharedVehicleSystem.cs
@@ -1,10 +1,10 @@
using System.Numerics;
+using Content.Shared._NF.Vehicle.Components;
using Content.Shared.Access.Components;
using Content.Shared.Actions;
using Content.Shared.Audio;
using Content.Shared.Buckle;
using Content.Shared.Buckle.Components;
-using Content.Shared.Hands;
using Content.Shared.Inventory.VirtualItem;
using Content.Shared.Item;
using Content.Shared.Light.Components;
@@ -13,7 +13,6 @@
using Content.Shared.Popups;
using Content.Shared.Tag;
using Content.Shared.Vehicle.Components;
-using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Containers;
using Robust.Shared.Network;
@@ -64,6 +63,10 @@ public override void Initialize()
SubscribeLocalEvent(OnGetAdditionalAccess);
SubscribeLocalEvent(OnGettingPickedUpAttempt);
+
+ SubscribeLocalEvent(OnVehicleHornInit);
+ SubscribeLocalEvent(OnVehicleHornShutdown);
+ SubscribeLocalEvent(OnHornHonkAction); // Frontier: for vehicles with innate horns (e.g. taxibot)
}
///
@@ -352,6 +355,35 @@ private void UpdateAutoAnimate(EntityUid uid, bool autoAnimate)
{
Appearance.SetData(uid, VehicleVisuals.AutoAnimate, autoAnimate);
}
+
+ /// Horn-only functions
+ private void OnVehicleHornShutdown(EntityUid uid, VehicleHornComponent component, ComponentShutdown args)
+ {
+ // Perf: If the entity is deleting itself, no reason to change these back.
+ if (Terminating(uid))
+ return;
+
+ _actionsSystem.RemoveAction(uid, component.ActionEntity);
+ }
+
+ private void OnVehicleHornInit(EntityUid uid, VehicleHornComponent component, ComponentInit args)
+ {
+ _actionsSystem.AddAction(uid, ref component.ActionEntity, out var _, component.Action);
+ }
+
+ ///
+ /// This fires when the vehicle entity presses the honk action
+ ///
+ private void OnHornHonkAction(EntityUid uid, VehicleHornComponent vehicle, HonkActionEvent args)
+ {
+ if (args.Handled || vehicle.HornSound == null)
+ return;
+
+ // TODO: Need audio refactor maybe, just some way to null it when the stream is over.
+ // For now better to just not loop to keep the code much cleaner.
+ vehicle.HonkPlayingStream = _audioSystem.PlayPredicted(vehicle.HornSound, uid, args.Performer)?.Entity;
+ args.Handled = true;
+ }
}
///
diff --git a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs
index 62af124252b..3e1111a97d1 100644
--- a/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/AmmoComponent.cs
@@ -30,18 +30,6 @@ public sealed partial class CartridgeAmmoComponent : AmmoComponent
[AutoNetworkedField]
public bool Spent = false;
- ///
- /// How much the ammo spreads when shot, in degrees. Does nothing if count is 0.
- ///
- [ViewVariables(VVAccess.ReadWrite), DataField("spread")]
- public Angle Spread = Angle.FromDegrees(5);
-
- ///
- /// How many prototypes are spawned when shot.
- ///
- [ViewVariables(VVAccess.ReadWrite), DataField("count")]
- public int Count = 1;
-
///
/// Caseless ammunition.
///
diff --git a/Content.Shared/_NF/Vehicle/Components/VehicleHornComponent.cs b/Content.Shared/_NF/Vehicle/Components/VehicleHornComponent.cs
new file mode 100644
index 00000000000..1a373268cef
--- /dev/null
+++ b/Content.Shared/_NF/Vehicle/Components/VehicleHornComponent.cs
@@ -0,0 +1,37 @@
+using Robust.Shared.Audio;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+using Content.Shared.Vehicle;
+
+namespace Content.Shared._NF.Vehicle.Components;
+
+///
+///
+///
+[RegisterComponent, NetworkedComponent]
+[Access(typeof(SharedVehicleSystem))]
+public sealed partial class VehicleHornComponent : Component
+{
+ ///
+ /// The sound that the horn makes
+ ///
+ [DataField]
+ [ViewVariables(VVAccess.ReadWrite)]
+ public SoundSpecifier? HornSound = new SoundPathSpecifier("/Audio/Effects/Vehicle/carhorn.ogg")
+ {
+ Params = AudioParams.Default.WithVolume(-3f)
+ };
+
+ [ViewVariables]
+ public EntityUid? HonkPlayingStream;
+
+ [DataField]
+ public EntProtoId? Action = "ActionVehicleHorn";
+
+ ///
+ /// The action for the horn (if any)
+ ///
+ [DataField]
+ [ViewVariables(VVAccess.ReadWrite)]
+ public EntityUid? ActionEntity;
+}
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index c23a1e2c410..39915af82b5 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -6237,3 +6237,181 @@ Entries:
lasers.
id: 5193
time: '2024-08-12T19:58:34.0000000+00:00'
+- author: arimah
+ changes:
+ - type: Tweak
+ message: The Personal Transport has been reworked into a comfortable space taxi.
+ id: 5194
+ time: '2024-08-12T21:59:15.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Tweak
+ message: >-
+ Added to some hostile mobs (mostly the ones that wear some sort of space
+ suits) and all turrets a high chance of reflecting laser shots.
+ id: 5195
+ time: '2024-08-12T22:15:51.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Add
+ message: >-
+ The Hovertaxibot, a spacefaring taxi robot with a ghost role, is now
+ craftable.
+ id: 5196
+ time: '2024-08-12T22:17:46.0000000+00:00'
+- author: dvir01
+ changes:
+ - type: Tweak
+ message: Updated Crescent.
+ id: 5197
+ time: '2024-08-12T22:18:59.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Added EVA suits in departmental colors.
+ - type: Add
+ message: Added new wall lockers for EVA suits, fuel and materials.
+ id: 5198
+ time: '2024-08-12T22:40:54.0000000+00:00'
+- author: ThatOneGoblin25
+ changes:
+ - type: Add
+ message: KC Anchor returns to the expedition shipyard with a rework.
+ id: 5199
+ time: '2024-08-13T16:59:42.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: >-
+ Added new micro shuttle LVHI Broom, available only to personnel with
+ janitorial access from Outpost Staff Shipyard Console at Frontier
+ Outpost.
+ - type: Tweak
+ message: >-
+ Placed Outpost Staff Shipyard Console in the nook by the Dock 6c (to the
+ North from SR's office), , removed SR and Mail Carrier Shipyard Consoles
+ from Frontier Outpost.
+ - type: Tweak
+ message: >-
+ Moved mail carrier shuttles and SR shuttle to Outpost Staff Shipyard
+ Console.
+ id: 5200
+ time: '2024-08-13T18:07:02.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Fix
+ message: >-
+ The option to set character antag preferences for the sleeper agent has
+ been removed, sleeper agents cannot spawn.
+ id: 5201
+ time: '2024-08-15T15:14:43.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Fix
+ message: >-
+ An issue causing salvage expedition consoles to get stuck has been
+ resolved.
+ id: 5202
+ time: '2024-08-15T15:50:30.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: >-
+ Added ammo crates and cases to expedition loot pools: weapons should
+ become slightly less common, however probability of getting better
+ weapons were increased (slightly).
+ - type: Tweak
+ message: 'Doubled the sell price for vendor restock boxes: 200 -> 400.'
+ id: 5203
+ time: '2024-08-15T18:16:23.0000000+00:00'
+- author: KyuPolaris
+ changes:
+ - type: Add
+ message: CMO's new turtleneck added to Contractor, Pilot, and Mercenary loadouts.
+ id: 5204
+ time: '2024-08-16T14:59:55.0000000+00:00'
+- author: erhardsteinhauer
+ changes:
+ - type: Add
+ message: Added mercenary techfab and additional arsenal research.
+ - type: Add
+ message: >-
+ Added T3 medical tech research that unlocks printing of advanced
+ topicals.
+ - type: Add
+ message: >-
+ Added new sorting categories to some lathes: Clothing, Kitchen, Medical,
+ Storage.
+ - type: Tweak
+ message: >-
+ Portable recharger no longer fits in backpacks/duffels, but charges
+ twice as fast. It can be works as a backpack.
+ - type: Tweak
+ message: Made combat magboots researchable. Moved advanced magboots to T3.
+ - type: Tweak
+ message: Randomized punk clothes can now be recycled and butchered.
+ - type: Tweak
+ message: ThreadsChoom and BonanzaMatic vending machines now can be unanchored.
+ id: 5205
+ time: '2024-08-17T16:23:11.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Tweak
+ message: >-
+ Frontier's pacified zone now only affects users with 10 hours of
+ playtime or less.
+ id: 5206
+ time: '2024-08-17T16:38:47.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Tweak
+ message: Most POI vendors (save drobes) have an infinite stock of items.
+ id: 5207
+ time: '2024-08-17T17:15:31.0000000+00:00'
+- author: whatston3
+ changes:
+ - type: Fix
+ message: >-
+ Expedition ships should not FTL into locations that will collide with
+ existing objects.
+ id: 5208
+ time: '2024-08-17T20:14:03.0000000+00:00'
+- author: Tych0theSynth
+ changes:
+ - type: Add
+ message: Added the Derelict McCargo POI.
+ id: 5209
+ time: '2024-08-17T21:01:19.0000000+00:00'
+- author: ThatOneGoblin25
+ changes: []
+ id: 5210
+ time: '2024-08-17T21:13:40.0000000+00:00'
+- author: dvir001
+ changes:
+ - type: Add
+ message: >-
+ All shuttle computer consoles now come equipped with builtin traffic
+ radio, you can toggle the speaker by using the "Intercom" verb.
+ id: 5211
+ time: '2024-08-17T21:47:24.0000000+00:00'
+- author: arimah
+ changes:
+ - type: Fix
+ message: >-
+ Frontier Outpost is once again the centre of the universe, at position
+ 0, 0.
+ - type: Fix
+ message: >-
+ NFSD Outpost will no longer spawn weirdly close to or inside Frontier
+ Outpost.
+ id: 5212
+ time: '2024-08-18T07:47:22.0000000+00:00'
+- author: dvir001
+ changes:
+ - type: Add
+ message: >-
+ The mail courier and SR now have a new program in their PDA for tracking
+ mail delivery performance, including earnings and percent of packages
+ opened, damaged, or expired.
+ id: 5213
+ time: '2024-08-18T10:22:14.0000000+00:00'
diff --git a/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl
index d622b177479..59df03a4bbc 100644
--- a/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl
+++ b/Resources/Locale/en-US/_NF/advertisements/mobchatter/syndicatehumanoidmob.ftl
@@ -7,7 +7,7 @@ advertisement-syndicatehumanoid-6 = Yo, dude, like, check this out!
advertisement-syndicatehumanoid-7 = Fuck, that blunt hits hard, I'm trippin'.
advertisement-syndicatehumanoid-8 = I'm looking foward for my hazard pay for this mission.
advertisement-syndicatehumanoid-9 = DIE, DIE, DIE!
-advertisement-syndicatehumanoid-10 = Sometime I dream about cheese...
+advertisement-syndicatehumanoid-10 = Sometimes I dream about cheese...
advertisement-syndicatehumanoid-11 = Stop!
advertisement-syndicatehumanoid-12 = Glory to The Syndicate!
advertisement-syndicatehumanoid-13 = Stop resisting!
@@ -17,4 +17,4 @@ advertisement-syndicatehumanoid-16 = Huh, that's funny.
advertisement-syndicatehumanoid-17 = This day is turning out alright afterall!
advertisement-syndicatehumanoid-18 = Hah! Take that!
advertisement-syndicatehumanoid-19 = *whistles*
-advertisement-syndicatehumanoid-20 = Dibs on on that!
+advertisement-syndicatehumanoid-20 = Dibs on that!
diff --git a/Resources/Locale/en-US/_NF/advertisements/vending/civimed.ftl b/Resources/Locale/en-US/_NF/advertisements/vending/civimed.ftl
index 9878202e969..bf5ee40cf5f 100644
--- a/Resources/Locale/en-US/_NF/advertisements/vending/civimed.ftl
+++ b/Resources/Locale/en-US/_NF/advertisements/vending/civimed.ftl
@@ -6,4 +6,12 @@ advertisement-civimed-5 = Nine out of ten corpses did NOT stock up on medicine!
advertisement-civimed-6 = Packs laden with loot are often low on supplies.
advertisement-civimed-7 = Get gouged, not burned. Patch yourself up!
advertisement-civimed-8 = I'm not a doctor, but you could be! Self-medicate the pain away!
-advertisement-civimed-9 = Focus groups show our products are MOSTLY SAFE for consumption!
+advertisement-civimed-9 = Test groups show our products are MOSTLY SAFE for consumption!
+
+goodbye-civimed-1 = Injuries are a skill issue.
+goodbye-civimed-2 = Don't die out there, chump.
+goodbye-civimed-3 = Come back again, if you can.
+goodbye-civimed-4 = Remember, blood leaves stains.
+goodbye-civimed-5 = Don't say I didn't warn you, bub.
+goodbye-civimed-6 = Huh? Oh, you're still here?
+goodbye-civimed-7 = Get lost, I've got potential customers here.
diff --git a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl
index 7f6faef394a..7fa9ddf294a 100644
--- a/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl
+++ b/Resources/Locale/en-US/_NF/ghost/roles/ghost-role-component.ftl
@@ -24,12 +24,15 @@ ghost-role-information-mistake-description = Ymg' ph'nglui ah li.
ghost-role-information-ert-mailcarrier-name = ERT Mail Carrier
ghost-role-information-ert-mailcarrier-description = Assist with delivery efforts to resolve the station's issues.
-ghost-role-information-jerma-name = Jerma
-ghost-role-information-jerma-description = Pog moment
-
ghost-role-information-baby-dragon-name = Baby space dragon
ghost-role-information-baby-dragon-description = Hatch from your egg and go on incredible adventures with your mom and their crew!
ghost-role-information-baby-dragon-rules = You are a [color=#6495ed][bold]Familiar[/bold][/color]. Serve the interests of your new mom, whatever those may be.
You don't remember any of your previous life, and you don't remember anything you learned as a ghost.
You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc.
You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character.
+
+ghost-role-information-taxibot-name = Taxibot
+ghost-role-information-taxibot-description = Drive passengers to where they need to go.
+
+ghost-role-information-hovertaxibot-name = Hovertaxibot
+ghost-role-information-hovertaxibot-description = Fly passengers to where they need to go, remember to check they can breathe!
diff --git a/Resources/Locale/en-US/_NF/job/role-timers.ftl b/Resources/Locale/en-US/_NF/job/role-timers.ftl
new file mode 100644
index 00000000000..fba38b0cd75
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/job/role-timers.ftl
@@ -0,0 +1,2 @@
+# A full line separating out requirement alternatives.
+role-requirement-alternative = [italic][color=gray]- or -[/color][/italic]
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_NF/lathe/lathe-categories.ftl b/Resources/Locale/en-US/_NF/lathe/lathe-categories.ftl
new file mode 100644
index 00000000000..1edcfb71f7a
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/lathe/lathe-categories.ftl
@@ -0,0 +1,6 @@
+lathe-category-evasuits = EVA
+lathe-category-armor-nf = Armor
+lathe-category-storage-nf = Storage
+lathe-category-kitchen-nf = Kitchen
+lathe-category-clothes-nf = Clothes
+lathe-category-medical-nf = Medical
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_NF/radio/components/intercom.ftl b/Resources/Locale/en-US/_NF/radio/components/intercom.ftl
new file mode 100644
index 00000000000..21fa05e725d
--- /dev/null
+++ b/Resources/Locale/en-US/_NF/radio/components/intercom.ftl
@@ -0,0 +1 @@
+intercom-verb = Open Intercom
\ No newline at end of file
diff --git a/Resources/Locale/en-US/_NF/research/technologies.ftl b/Resources/Locale/en-US/_NF/research/technologies.ftl
index d7d99f28597..9384075b9a0 100644
--- a/Resources/Locale/en-US/_NF/research/technologies.ftl
+++ b/Resources/Locale/en-US/_NF/research/technologies.ftl
@@ -7,4 +7,9 @@ research-technology-hardsuits-experimental-industrial = Experimental Salvager Ha
research-technology-hardsuits-armored = Armored Hardsuits
research-technology-hardsuits-armored-advanced = Advanced Armored Hardsuits
research-technology-hardsuits-experimental-rd = Experimental Research Hardsuit
-research-technology-construction-bags = Construction Bags
\ No newline at end of file
+research-technology-construction-bags = Construction Bags
+research-technology-bounty-hunting = Bounty Hunting
+research-technology-arsenal-style = Punk Gear
+research-techology-advanced-topicals = Advanced Topicals
+research-technology-magnets-tech-advanced = Advanced Localized Magnetism
+research-technology-magnets-tech-combat = Localized Magnetism Combat Application
\ No newline at end of file
diff --git a/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl
new file mode 100644
index 00000000000..e051ca40918
--- /dev/null
+++ b/Resources/Locale/en-US/deltav/cartridge-loader/cartridges.ftl
@@ -0,0 +1,12 @@
+mail-metrics-program-name = MailMetrics
+mail-metrics-header = Income from Mail Deliveries
+mail-metrics-opened = Earnings (Opened)
+mail-metrics-expired = Losses (Expired)
+mail-metrics-damaged = Losses (Damaged)
+mail-metrics-tampered = Losses (Tampered)
+mail-metrics-unopened = Unopened
+mail-metrics-count-header = Packages
+mail-metrics-money-header = Spesos
+mail-metrics-total = Total
+mail-metrics-progress = {$opened} out of {$total} packages opened!
+mail-metrics-progress-percent = Success rate: {$successRate}%
diff --git a/Resources/Locale/en-US/lathe/lathe-categories.ftl b/Resources/Locale/en-US/lathe/lathe-categories.ftl
index 5f04bdd18a9..a7261c2b511 100644
--- a/Resources/Locale/en-US/lathe/lathe-categories.ftl
+++ b/Resources/Locale/en-US/lathe/lathe-categories.ftl
@@ -6,6 +6,3 @@ lathe-category-parts = Parts
lathe-category-robotics = Robotics
lathe-category-tools = Tools
lathe-category-weapons = Weapons
-# Frontier lines below
-lathe-category-evasuits = EVA
-lathe-category-armor-nf = Armor
diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml
index ca885d584bd..f1df37787c4 100644
--- a/Resources/Maps/Test/dev_map.yml
+++ b/Resources/Maps/Test/dev_map.yml
@@ -5849,15 +5849,17 @@ entities:
- type: Transform
pos: 25.5,-5.5
parent: 179
- - uid: 157
+ - uid: 158
components:
- type: Transform
- pos: 27.5,-5.5
+ pos: 29.5,3.5
parent: 179
- - uid: 158
+- proto: VendingMachineCiviMedPlus
+ entities:
+ - uid: 157
components:
- type: Transform
- pos: 29.5,3.5
+ pos: 27.5,-5.5
parent: 179
- uid: 521
components:
diff --git a/Resources/Maps/_NF/Bluespace/cache.yml b/Resources/Maps/_NF/Bluespace/cache.yml
index 418367df840..eebf3db4101 100644
--- a/Resources/Maps/_NF/Bluespace/cache.yml
+++ b/Resources/Maps/_NF/Bluespace/cache.yml
@@ -25,19 +25,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: egAAAAAAIgAAAAABIgAAAAACIgAAAAADaQAAAAAAIwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIgAAAAADIgAAAAABIgAAAAABegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAACIwAAAAADIwAAAAABegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAACJwAAAAAAegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAAAIgAAAAACJwAAAAACIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADIgAAAAABJwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAADJwAAAAADJwAAAAAAIwAAAAABaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAJwAAAAAAJwAAAAACegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: IwAAAAAAIwAAAAAAIwAAAAAAIgAAAAADaQAAAAAAIwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAABegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJwAAAAAAJwAAAAACJwAAAAAAegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAAAIgAAAAACJwAAAAACIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADIgAAAAABJwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAADJwAAAAADJwAAAAAAIwAAAAABaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAJwAAAAAAJwAAAAACegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACJwAAAAADJwAAAAADJwAAAAAAIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADdwAAAAAAJwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAdwAAAAAAJwAAAAACIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADdwAAAAADJwAAAAADegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAABIgAAAAABIgAAAAADegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACegAAAAAAJwAAAAAAJwAAAAAAegAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAACJwAAAAADJwAAAAADJwAAAAAAIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADdwAAAAAAJwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAdwAAAAAAJwAAAAACIwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADdwAAAAADJwAAAAADegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAegAAAAAAegAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIgAAAAADegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAACaQAAAAAAIgAAAAABIgAAAAABIgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAegAAAAAAIgAAAAAAIgAAAAACIgAAAAABIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAIwAAAAADIwAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAADegAAAAAAIgAAAAAAIgAAAAABIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAJwAAAAABIgAAAAABIgAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAACJwAAAAABJwAAAAACJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAAAegAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAACaQAAAAAAIgAAAAABIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAegAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAABJwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAADegAAAAAAIgAAAAAAIgAAAAABIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAJwAAAAABIgAAAAABIgAAAAAAIgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAACJwAAAAABJwAAAAACJwAAAAAAJwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAACJwAAAAAAegAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAADegAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAACJwAAAAABJwAAAAACJwAAAAABJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAJwAAAAACdwAAAAADdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAADJwAAAAACdwAAAAACdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAACdwAAAAACdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAIwAAAAAAIwAAAAADIwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADegAAAAAAIgAAAAADIgAAAAACIgAAAAADIwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAADJwAAAAADegAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAACJwAAAAABJwAAAAACJwAAAAABJwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAJwAAAAACdwAAAAADdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAIwAAAAADJwAAAAACdwAAAAACdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAJwAAAAACdwAAAAACdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAeQAAAAAAOgAAAAAAegAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADegAAAAAAIgAAAAADIwAAAAAAIwAAAAAAIwAAAAAC
version: 6
- type: Broadphase
- type: Physics
@@ -61,6 +61,28 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ color: '#B02E26FF'
+ id: Bot
+ decals:
+ 188: -3,1
+ 189: -2,1
+ 190: -1,1
+ 191: 0,1
+ 192: 1,1
+ 193: 2,1
+ 194: 2,0
+ 195: 2,-1
+ 196: 1,-1
+ 197: 0,-1
+ 198: -1,-1
+ 199: -2,-1
+ 200: -3,-1
+ 201: -3,0
+ 202: -2,0
+ 203: -1,0
+ 204: 0,0
+ 205: 1,0
- node:
color: '#FF0000FF'
id: BotGreyscale
@@ -83,70 +105,66 @@ entities:
61: 0,10
62: -1,-10
63: 0,-10
- 106: -1,1
- 107: 0,1
- 108: -1,-1
- 109: 0,-1
- 110: -1,7
- 111: 0,7
- 116: 3,-2
- 117: 2,-2
- 118: 1,-2
- 119: -2,-2
- 120: -3,-2
- 121: -4,-2
- 122: -4,2
- 123: -3,2
- 124: -2,2
- 125: 1,2
- 126: 2,2
- 127: 3,2
+ 106: -1,7
+ 107: 0,7
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 151: 2,8
- 166: 3,1
- 167: -2,1
+ 113: 2,8
+ 254: 3,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 150: -3,8
- 160: -4,1
- 161: 1,1
+ 112: -3,8
+ 253: -4,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 146: 2,7
- 147: -2,7
- 162: -2,-1
- 163: 3,-1
+ 108: 2,7
+ 109: -2,7
+ 255: 3,-2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 148: -3,7
- 149: 1,7
- 164: -4,-1
- 165: 1,-1
+ 110: -3,7
+ 111: 1,7
+ 228: -4,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNe
+ decals:
+ 262: -4,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 263: 3,-2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
decals:
- 158: -2,8
+ 120: -2,8
+ 264: -4,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
- 159: 1,8
+ 121: 1,8
+ 265: 3,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 168: -2,0
- 169: 3,0
+ 256: 3,-1
+ 257: 3,0
+ 258: 3,1
+ 259: -4,1
+ 260: -4,0
+ 261: -4,-1
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -159,12 +177,22 @@ entities:
77: -1,9
78: 0,9
79: 1,9
- 154: -2,8
- 155: -1,8
- 156: 0,8
- 157: 1,8
- 174: 2,1
- 175: -3,1
+ 116: -2,8
+ 117: -1,8
+ 118: 0,8
+ 119: 1,8
+ 229: -3,2
+ 230: -2,2
+ 231: -1,2
+ 232: 0,2
+ 233: 1,2
+ 234: 2,2
+ 235: 2,-2
+ 236: 1,-2
+ 237: 0,-2
+ 238: -1,-2
+ 239: -2,-2
+ 240: -3,-2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
@@ -177,16 +205,30 @@ entities:
69: -1,-9
70: 0,-9
71: 1,-9
- 152: -1,8
- 153: 0,8
- 172: 2,-1
- 173: -3,-1
+ 114: -1,8
+ 115: 0,8
+ 241: -3,-2
+ 242: -2,-2
+ 243: -1,-2
+ 244: 0,-2
+ 245: 1,-2
+ 246: 2,-2
+ 247: 2,2
+ 248: 1,2
+ 249: 0,2
+ 250: -1,2
+ 251: -2,2
+ 252: -3,2
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
decals:
- 170: -4,0
- 171: 1,0
+ 266: -4,-1
+ 267: -4,0
+ 268: -4,1
+ 269: 3,1
+ 270: 3,0
+ 271: 3,-1
- node:
color: '#FF000093'
id: BrickTileWhiteLineN
@@ -211,6 +253,32 @@ entities:
93: 0,-9
94: -1,-9
95: -2,-9
+ - node:
+ color: '#B02E26FF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 206: -4,-2
+ 207: -3,-2
+ 208: -2,-2
+ 209: -1,-2
+ 210: 0,-2
+ 211: 1,-2
+ 212: 2,-2
+ 213: 3,-2
+ 214: 3,-1
+ 215: 3,0
+ 216: 3,1
+ 217: 3,2
+ 218: 2,2
+ 219: 1,2
+ 220: 0,2
+ 221: -1,2
+ 222: -2,2
+ 223: -3,2
+ 224: -4,2
+ 225: -4,1
+ 226: -4,0
+ 227: -4,-1
- node:
color: '#FF000093'
id: MiniTileCheckerAOverlay
@@ -225,28 +293,6 @@ entities:
103: 1,7
104: 2,7
105: 2,8
- - node:
- color: '#FF0000FF'
- id: MiniTileCheckerAOverlay
- decals:
- 128: -3,0
- 129: 2,0
- 130: -3,-1
- 131: -2,-1
- 132: -2,0
- 133: -2,1
- 134: -3,1
- 135: -4,1
- 136: -4,0
- 137: -4,-1
- 138: 1,-1
- 139: 1,0
- 140: 1,1
- 141: 2,1
- 142: 3,1
- 143: 3,0
- 144: 3,-1
- 145: 2,-1
- node:
angle: -1.5707963267948966 rad
color: '#FF0000FF'
@@ -259,8 +305,6 @@ entities:
49: -6,-1
50: -5,-7
51: -5,-9
- 112: -1,-1
- 113: -1,1
- node:
color: '#FF0000FF'
id: StandClearGreyscale
@@ -279,8 +323,6 @@ entities:
40: 5,-1
41: 4,-9
42: 4,-7
- 114: 0,-1
- 115: 0,1
- node:
angle: 3.141592653589793 rad
color: '#FF0000FF'
@@ -336,164 +378,169 @@ entities:
color: '#FFB5C7FF'
id: WoodTrimThinInnerNe
decals:
- 188: -4,-9
+ 134: -4,-9
- node:
color: '#FFB5C7FF'
id: WoodTrimThinInnerNw
decals:
- 189: 3,-9
+ 135: 3,-9
- node:
color: '#FFB5C7FF'
id: WoodTrimThinLineE
decals:
- 185: -4,-8
- 186: -4,-7
- 187: -4,-6
+ 131: -4,-8
+ 132: -4,-7
+ 133: -4,-6
- node:
color: '#FFB5C7FF'
id: WoodTrimThinLineN
decals:
- 176: -3,-9
- 177: -2,-9
- 178: -1,-9
- 179: 0,-9
- 180: 1,-9
- 181: 2,-9
+ 122: -3,-9
+ 123: -2,-9
+ 124: -1,-9
+ 125: 0,-9
+ 126: 1,-9
+ 127: 2,-9
- node:
color: '#FFB5C7FF'
id: WoodTrimThinLineW
decals:
- 182: 3,-8
- 183: 3,-7
- 184: 3,-6
+ 128: 3,-8
+ 129: 3,-7
+ 130: 3,-6
- node:
cleanable: True
angle: 7.853981633974483 rad
color: '#0096FF18'
id: splatter
decals:
- 205: -0.5974543,-8.267771
+ 151: -0.5974543,-8.267771
- node:
cleanable: True
angle: 4.71238898038469 rad
color: '#0096FF2B'
id: splatter
decals:
- 204: -1.2432876,-8.049021
+ 150: -1.2432876,-8.049021
- node:
cleanable: True
angle: 6.283185307179586 rad
color: '#0096FF2B'
id: splatter
decals:
- 203: -0.82662094,-7.830271
+ 149: -0.82662094,-7.830271
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#0096FF31'
id: splatter
decals:
- 202: -1.2849543,-7.517771
+ 148: -1.2849543,-7.517771
- node:
cleanable: True
color: '#1D1D2173'
id: splatter
decals:
- 235: -4.0003366,6.008251
- 236: -3.39617,7.1436677
- 237: -1.5003366,8.247834
- 238: -1.5315866,6.7061677
- 239: -1.8961699,5.7061677
- 240: -1.8545032,6.320751
- 241: -1.0107532,7.1853347
+ 181: -4.0003366,6.008251
+ 182: -3.39617,7.1436677
+ 183: -1.5003366,8.247834
+ 184: -1.5315866,6.7061677
+ 185: -1.8961699,5.7061677
+ 186: -1.8545032,6.320751
+ 187: -1.0107532,7.1853347
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#1D1D2173'
id: splatter
decals:
- 208: -3.73992,6.685334
- 209: -2.9795032,6.445751
- 210: -2.2190866,7.4353347
- 211: -1.7815866,8.185334
- 212: -1.6461699,7.227001
- 213: -2.9795032,6.122834
- 214: -4.0524197,6.789501
- 215: -4.2503366,8.456168
- 216: -3.3857532,8.456168
- 217: -3.9170032,7.654085
- 218: -3.4795032,6.445751
- 219: -3.98992,5.695751
- 220: -2.42742,6.029084
- 221: -1.6774199,6.4249177
+ 154: -3.73992,6.685334
+ 155: -2.9795032,6.445751
+ 156: -2.2190866,7.4353347
+ 157: -1.7815866,8.185334
+ 158: -1.6461699,7.227001
+ 159: -2.9795032,6.122834
+ 160: -4.0524197,6.789501
+ 161: -4.2503366,8.456168
+ 162: -3.3857532,8.456168
+ 163: -3.9170032,7.654085
+ 164: -3.4795032,6.445751
+ 165: -3.98992,5.695751
+ 166: -2.42742,6.029084
+ 167: -1.6774199,6.4249177
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#1D1D2173'
id: splatter
decals:
- 222: -3.2815866,7.164501
- 223: -1.5836699,6.6436677
- 224: -1.7190866,7.987418
- 225: -3.2920032,6.258251
- 226: -4.5524197,5.8624177
- 227: -2.70867,6.404084
- 228: -1.8857532,6.841584
- 229: -1.7086699,5.6749177
- 230: -3.5107532,6.310334
- 231: -3.9690866,7.2374177
- 232: -3.8857532,8.477001
- 233: -2.0107532,8.299918
- 234: -1.4065866,6.9561677
+ 168: -3.2815866,7.164501
+ 169: -1.5836699,6.6436677
+ 170: -1.7190866,7.987418
+ 171: -3.2920032,6.258251
+ 172: -4.5524197,5.8624177
+ 173: -2.70867,6.404084
+ 174: -1.8857532,6.841584
+ 175: -1.7086699,5.6749177
+ 176: -3.5107532,6.310334
+ 177: -3.9690866,7.2374177
+ 178: -3.8857532,8.477001
+ 179: -2.0107532,8.299918
+ 180: -1.4065866,6.9561677
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FF000028'
id: splatter
decals:
- 207: -2.6495376,-6.407573
+ 153: -2.6495376,-6.407573
- node:
cleanable: True
angle: 7.853981633974483 rad
color: '#FF000028'
id: splatter
decals:
- 206: -3.2120376,-6.0846567
+ 152: -3.2120376,-6.0846567
- node:
cleanable: True
color: '#FF00003B'
id: splatter
decals:
- 190: -0.43078756,-7.5057545
- 192: 1.4546292,-7.2557545
- 198: -2.607871,7.138191
+ 136: -0.43078756,-7.5057545
+ 138: 1.4546292,-7.2557545
+ 144: -2.607871,7.138191
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FF00003B'
id: splatter
decals:
- 191: -2.6182876,-7.141171
- 195: -2.4412043,-8.3078375
- 196: -2.732871,7.888191
- 199: -2.951621,7.669441
- 200: -2.7120376,7.2736077
+ 137: -2.6182876,-7.141171
+ 141: -2.4412043,-8.3078375
+ 142: -2.732871,7.888191
+ 145: -2.951621,7.669441
+ 146: -2.7120376,7.2736077
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#FF00003B'
id: splatter
decals:
- 193: -0.24328756,-6.0578375
- 194: 0.26712918,-6.297421
- 197: -3.2745376,7.4611077
- 201: -2.982871,7.1902742
+ 139: -0.24328756,-6.0578375
+ 140: 0.26712918,-6.297421
+ 143: -3.2745376,7.4611077
+ 147: -2.982871,7.1902742
- type: GridAtmosphere
version: 2
data:
tiles:
0,0:
- 0: 3822
+ 0: 4095
+ 0,-1:
+ 0: 65280
+ 1: 1
+ -1,0:
+ 0: 4095
0,1:
1: 1
0: 65024
@@ -504,9 +551,6 @@ entities:
0: 7423
-1,2:
0: 33791
- 0,-1:
- 0: 60928
- 1: 1
1,1:
1: 51371
0: 8192
@@ -541,7 +585,7 @@ entities:
0: 4095
-1,-1:
1: 8
- 0: 30464
+ 0: 65280
1,-3:
1: 49184
0: 8192
@@ -578,8 +622,6 @@ entities:
-2,-1:
1: 12637
2: 546
- -1,0:
- 0: 1911
-3,-3:
2: 34816
-2,-3:
@@ -1684,26 +1726,6 @@ entities:
- type: Transform
pos: -4.5,-6.5
parent: 1
- - uid: 612
- components:
- - type: Transform
- pos: -0.5,1.5
- parent: 1
- - uid: 613
- components:
- - type: Transform
- pos: 0.5,1.5
- parent: 1
- - uid: 614
- components:
- - type: Transform
- pos: -0.5,-0.5
- parent: 1
- - uid: 615
- components:
- - type: Transform
- pos: 0.5,-0.5
- parent: 1
- proto: CableApcExtension
entities:
- uid: 468
@@ -3181,57 +3203,6 @@ entities:
parent: 1
- proto: Grille
entities:
- - uid: 37
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-2.5
- parent: 1
- - uid: 38
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-2.5
- parent: 1
- - uid: 39
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-2.5
- parent: 1
- - uid: 40
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-2.5
- parent: 1
- - uid: 41
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-2.5
- parent: 1
- - uid: 42
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 1
- - uid: 48
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
- - uid: 49
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 1
- - uid: 50
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 1
- uid: 80
components:
- type: Transform
@@ -3304,24 +3275,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,5.5
parent: 1
- - uid: 109
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 1
- - uid: 110
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,3.5
- parent: 1
- - uid: 111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,3.5
- parent: 1
- uid: 301
components:
- type: Transform
@@ -3566,111 +3519,13 @@ entities:
- type: Transform
pos: -2.7639015,7.472134
parent: 1
-- proto: PlasmaReinforcedWindowDirectional
- entities:
- - uid: 616
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 1
- - uid: 617
- components:
- - type: Transform
- pos: -2.5,2.5
- parent: 1
- - uid: 618
- components:
- - type: Transform
- pos: -1.5,2.5
- parent: 1
- - uid: 619
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-1.5
- parent: 1
- - uid: 620
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-1.5
- parent: 1
- - uid: 621
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-1.5
- parent: 1
- - uid: 622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-1.5
- parent: 1
- - uid: 623
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-1.5
- parent: 1
- - uid: 624
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-1.5
- parent: 1
- - uid: 625
- components:
- - type: Transform
- pos: 3.5,2.5
- parent: 1
- - uid: 626
- components:
- - type: Transform
- pos: 2.5,2.5
- parent: 1
- - uid: 627
- components:
- - type: Transform
- pos: 1.5,2.5
- parent: 1
- proto: PlastitaniumWindow
entities:
- - uid: 53
- components:
- - type: Transform
- pos: -1.5,3.5
- parent: 1
- - uid: 54
- components:
- - type: Transform
- pos: -3.5,3.5
- parent: 1
- - uid: 55
- components:
- - type: Transform
- pos: -2.5,3.5
- parent: 1
- - uid: 56
- components:
- - type: Transform
- pos: 1.5,3.5
- parent: 1
- - uid: 57
- components:
- - type: Transform
- pos: 2.5,3.5
- parent: 1
- uid: 58
components:
- type: Transform
pos: -1.5,5.5
parent: 1
- - uid: 59
- components:
- - type: Transform
- pos: 3.5,3.5
- parent: 1
- uid: 60
components:
- type: Transform
@@ -3691,11 +3546,6 @@ entities:
- type: Transform
pos: 3.5,5.5
parent: 1
- - uid: 121
- components:
- - type: Transform
- pos: -2.5,-2.5
- parent: 1
- uid: 123
components:
- type: Transform
@@ -3706,26 +3556,6 @@ entities:
- type: Transform
pos: 2.5,-4.5
parent: 1
- - uid: 127
- components:
- - type: Transform
- pos: -1.5,-2.5
- parent: 1
- - uid: 129
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 1
- - uid: 130
- components:
- - type: Transform
- pos: 2.5,-2.5
- parent: 1
- - uid: 134
- components:
- - type: Transform
- pos: 3.5,-2.5
- parent: 1
- uid: 135
components:
- type: Transform
@@ -3746,11 +3576,6 @@ entities:
- type: Transform
pos: -1.5,-4.5
parent: 1
- - uid: 161
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 1
- uid: 824
components:
- type: Transform
@@ -3786,17 +3611,17 @@ entities:
parent: 1
- proto: PosterContrabandEnergySwords
entities:
- - uid: 711
+ - uid: 18
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -2.5,3.5
parent: 1
- proto: PosterContrabandEnlistGorlex
entities:
- - uid: 712
+ - uid: 19
components:
- type: Transform
- pos: 0.5,-1.5
+ pos: 2.5,-2.5
parent: 1
- proto: PosterContrabandFreeSyndicateEncryptionKey
entities:
@@ -3821,35 +3646,35 @@ entities:
parent: 1
- proto: PoweredlightColoredBlack
entities:
- - uid: 429
+ - uid: 14
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
parent: 1
- - uid: 430
+ - uid: 15
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,-7.5
+ pos: 3.5,-0.5
parent: 1
- - uid: 431
+ - uid: 429
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
parent: 1
- - uid: 651
+ - uid: 430
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,0.5
+ pos: 3.5,-7.5
parent: 1
- - uid: 652
+ - uid: 431
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: -3.5,-7.5
parent: 1
- proto: PoweredlightEmpty
entities:
@@ -4545,65 +4370,65 @@ entities:
parent: 1
- proto: SpawnEventContrabandCrate
entities:
- - uid: 5
+ - uid: 3
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 0.5,1.5
parent: 1
- - uid: 6
+ - uid: 4
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: -0.5,1.5
parent: 1
- - uid: 7
+ - uid: 8
components:
- type: Transform
- pos: -1.5,-1.5
+ pos: 1.5,1.5
parent: 1
- uid: 9
components:
- type: Transform
- pos: -1.5,2.5
+ pos: 1.5,-0.5
parent: 1
- uid: 10
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 0.5,-0.5
parent: 1
- uid: 11
components:
- type: Transform
- pos: 2.5,-1.5
+ pos: 2.5,1.5
parent: 1
- uid: 12
components:
- type: Transform
- pos: -2.5,-1.5
+ pos: -2.5,1.5
parent: 1
- uid: 13
components:
- type: Transform
- pos: -3.5,2.5
+ pos: 2.5,-0.5
parent: 1
- - uid: 14
+ - uid: 16
components:
- type: Transform
- pos: -2.5,2.5
+ pos: -2.5,-0.5
parent: 1
- - uid: 15
+ - uid: 17
components:
- type: Transform
- pos: 3.5,2.5
+ pos: -0.5,-0.5
parent: 1
- - uid: 16
+ - uid: 21
components:
- type: Transform
- pos: 3.5,-1.5
+ pos: -1.5,-0.5
parent: 1
- - uid: 17
+ - uid: 27
components:
- type: Transform
- pos: -3.5,-1.5
+ pos: -1.5,1.5
parent: 1
- proto: SpawnMobSyndicateNavalDeckhandVoid
entities:
@@ -4631,15 +4456,15 @@ entities:
parent: 1
- proto: SpawnMobSyndicateNavalOperatorVoid
entities:
- - uid: 85
+ - uid: 5
components:
- type: Transform
- pos: -2.5,0.5
+ pos: -2.5,2.5
parent: 1
- - uid: 93
+ - uid: 6
components:
- type: Transform
- pos: 2.5,0.5
+ pos: 2.5,-1.5
parent: 1
- proto: SpawnMobSyndicateNavalSecondOfficerVoid
entities:
@@ -4648,6 +4473,40 @@ entities:
- type: Transform
pos: 1.5,-8.5
parent: 1
+- proto: SpawnMobWeaponTurretLaserSyndicateNF
+ entities:
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 1
+- proto: SpawnMobWeaponTurretSyndicate
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -6.5,8.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -6.5,-7.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
- proto: Stool
entities:
- uid: 371
@@ -4826,6 +4685,36 @@ entities:
- type: Transform
pos: -4.5,-10.5
parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
- uid: 43
components:
- type: Transform
@@ -4841,6 +4730,21 @@ entities:
- type: Transform
pos: 1.5,-9.5
parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
- uid: 51
components:
- type: Transform
@@ -4851,6 +4755,26 @@ entities:
- type: Transform
pos: 4.5,-9.5
parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
- uid: 61
components:
- type: Transform
@@ -5026,31 +4950,11 @@ entities:
- type: Transform
pos: 4.5,8.5
parent: 1
- - uid: 243
- components:
- - type: Transform
- pos: -0.5,2.5
- parent: 1
- - uid: 287
- components:
- - type: Transform
- pos: 0.5,2.5
- parent: 1
- uid: 288
components:
- type: Transform
pos: -0.5,-2.5
parent: 1
- - uid: 320
- components:
- - type: Transform
- pos: -0.5,-1.5
- parent: 1
- - uid: 321
- components:
- - type: Transform
- pos: 0.5,-1.5
- parent: 1
- uid: 322
components:
- type: Transform
@@ -5061,11 +4965,6 @@ entities:
- type: Transform
pos: 0.5,3.5
parent: 1
- - uid: 324
- components:
- - type: Transform
- pos: -0.5,3.5
- parent: 1
- uid: 370
components:
- type: Transform
@@ -5209,18 +5108,6 @@ entities:
parent: 1
- proto: WallPlastitaniumIndestructible
entities:
- - uid: 72
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,0.5
- parent: 1
- - uid: 73
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,0.5
- parent: 1
- uid: 95
components:
- type: Transform
@@ -5229,61 +5116,11 @@ entities:
parent: 1
- proto: WarpPoint
entities:
- - uid: 645
+ - uid: 7
components:
- type: Transform
- pos: 1.5,0.5
+ pos: 0.5,8.5
parent: 1
- type: WarpPoint
location: Syndicate Weapons Cache
-- proto: WeaponTurretSyndicate
- entities:
- - uid: 3
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-1.5
- parent: 1
- - uid: 4
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-1.5
- parent: 1
- - uid: 8
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,2.5
- parent: 1
- - uid: 18
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,8.5
- parent: 1
- - uid: 19
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-7.5
- parent: 1
- - uid: 21
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,8.5
- parent: 1
- - uid: 27
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-7.5
- parent: 1
- - uid: 28
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,2.5
- parent: 1
...
diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml
index a25ffeb1b80..e524190bf72 100644
--- a/Resources/Maps/_NF/Outpost/frontier.yml
+++ b/Resources/Maps/_NF/Outpost/frontier.yml
@@ -177,26 +177,32 @@ entities:
color: '#334E6DC8'
id: ArrowsGreyscale
decals:
- 1837: 0,9
- 1838: 0,9
- 1839: 0,9
- 1840: 0,9
+ 1833: 0,9
+ 1834: 0,9
+ 1835: 0,9
+ 1836: 0,9
+ 1868: -2,9
+ 1869: -2,9
+ 1870: -2,9
+ 1871: -2,9
1872: -2,9
- 1873: -2,9
- 1874: -2,9
- 1875: -2,9
- 1876: -2,9
- node:
angle: 3.141592653589793 rad
color: '#334E6DC8'
id: ArrowsGreyscale
decals:
- 1831: -2,12
- 1832: -2,12
- 1833: -2,12
- 1834: 0,12
- 1835: 0,12
- 1836: 0,12
+ 1827: -2,12
+ 1828: -2,12
+ 1829: -2,12
+ 1830: 0,12
+ 1831: 0,12
+ 1832: 0,12
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#4B709CFF'
+ id: ArrowsGreyscale
+ decals:
+ 2454: -2,27
- node:
color: '#52B4E9FF'
id: ArrowsGreyscale
@@ -210,39 +216,39 @@ entities:
color: '#52B4F3AD'
id: ArrowsGreyscale
decals:
+ 1425: 23,21
+ 1426: 23,21
+ 1427: 23,21
+ 1428: 23,21
1429: 23,21
1430: 23,21
1431: 23,21
1432: 23,21
1433: 23,21
1434: 23,21
- 1435: 23,21
- 1436: 23,21
- 1437: 23,21
- 1438: 23,21
- 1441: 21,21
- 1442: 21,21
- 1443: 21,21
- 1444: 21,21
+ 1437: 21,21
+ 1438: 21,21
+ 1439: 21,21
+ 1440: 21,21
- node:
color: '#2E9935FF'
id: BotLeftGreyscale
decals:
- 2368: 8,25
- 2369: 7,25
- 2370: 6,25
- 2371: 5,25
- 2372: 4,25
+ 2357: 8,25
+ 2358: 7,25
+ 2359: 6,25
+ 2360: 5,25
+ 2361: 4,25
- node:
color: '#52B4E996'
id: BotLeftGreyscale
decals:
- 2062: 26,20
+ 2058: 26,20
- node:
color: '#52B4E9AE'
id: BotLeftGreyscale
decals:
- 1428: 24,20
+ 1424: 24,20
- node:
color: '#52B4E9FF'
id: BotLeftGreyscale
@@ -270,10 +276,10 @@ entities:
270: 3,14
271: 3,12
272: 3,10
- 2034: -5,10
- 2035: -5,12
- 2036: -5,14
- 2037: -5,17
+ 2030: -5,10
+ 2031: -5,12
+ 2032: -5,14
+ 2033: -5,17
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -288,15 +294,15 @@ entities:
id: BrickTileDarkCornerNe
decals:
273: -4,28
- 1820: 1,9
- 2071: 22,12
+ 1816: 1,9
+ 2067: 22,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
276: -6,28
- 1869: -3,9
- 2074: 19,12
+ 1865: -3,9
+ 2070: 19,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
@@ -315,37 +321,37 @@ entities:
color: '#FFFFFF81'
id: BrickTileDarkInnerNe
decals:
- 1796: -3,12
- 1797: -3,12
- 1806: -1,12
- 1807: -1,12
+ 1792: -3,12
+ 1793: -3,12
+ 1802: -1,12
+ 1803: -1,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
decals:
139: 4,14
- 1822: 0,9
+ 1818: 0,9
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerNw
decals:
- 1800: -1,12
- 1801: -1,12
- 1808: 1,12
- 1809: 1,12
+ 1796: -1,12
+ 1797: -1,12
+ 1804: 1,12
+ 1805: 1,12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
- 1871: -2,9
+ 1867: -2,9
- node:
color: '#FFFFFF81'
id: BrickTileDarkInnerSe
decals:
- 1857: -1,9
- 1858: -1,9
- 1859: -3,9
- 1860: -3,9
+ 1853: -1,9
+ 1854: -1,9
+ 1855: -3,9
+ 1856: -3,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
@@ -356,10 +362,10 @@ entities:
color: '#FFFFFF81'
id: BrickTileDarkInnerSw
decals:
- 1827: 1,9
- 1828: 1,9
- 1863: -1,9
- 1864: -1,9
+ 1823: 1,9
+ 1824: 1,9
+ 1859: -1,9
+ 1860: -1,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
@@ -369,19 +375,19 @@ entities:
color: '#52B4E996'
id: BrickTileDarkLineE
decals:
- 2042: -48,2
+ 2038: -48,2
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineE
decals:
- 1794: -3,13
- 1795: -3,13
- 1804: -1,13
- 1805: -1,13
- 1851: -3,8
- 1852: -3,8
- 1853: -1,8
- 1854: -1,8
+ 1790: -3,13
+ 1791: -3,13
+ 1800: -1,13
+ 1801: -1,13
+ 1847: -3,8
+ 1848: -3,8
+ 1849: -1,8
+ 1850: -1,8
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineE
@@ -390,27 +396,27 @@ entities:
137: 4,16
279: -4,27
1238: 1,13
- 1821: 1,8
- 1844: -3,11
- 1845: -3,10
- 2040: -48,2
- 2041: -48,1
- 2069: 22,10
- 2070: 22,11
+ 1817: 1,8
+ 1840: -3,11
+ 1841: -3,10
+ 2036: -48,2
+ 2037: -48,1
+ 2065: 22,10
+ 2066: 22,11
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineN
decals:
- 1798: -2,12
- 1799: -2,12
- 1812: 0,12
- 1813: 0,12
- 1823: 0,9
- 1824: 0,9
- 1865: -1,9
- 1866: -1,9
- 1867: -2,9
- 1868: -2,9
+ 1794: -2,12
+ 1795: -2,12
+ 1808: 0,12
+ 1809: 0,12
+ 1819: 0,9
+ 1820: 0,9
+ 1861: -1,9
+ 1862: -1,9
+ 1863: -2,9
+ 1864: -2,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -421,22 +427,22 @@ entities:
224: 17,16
251: 7,16
277: -5,28
- 2072: 21,12
- 2073: 20,12
+ 2068: 21,12
+ 2069: 20,12
- node:
color: '#FFFFFF81'
id: BrickTileDarkLineS
decals:
- 1814: -2,12
- 1815: -2,12
- 1816: 0,12
- 1817: 0,12
- 1818: -1,12
- 1819: -1,12
- 1829: 0,9
- 1830: 0,9
- 1861: -2,9
- 1862: -2,9
+ 1810: -2,12
+ 1811: -2,12
+ 1812: 0,12
+ 1813: 0,12
+ 1814: -1,12
+ 1815: -1,12
+ 1825: 0,9
+ 1826: 0,9
+ 1857: -2,9
+ 1858: -2,9
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineS
@@ -457,14 +463,14 @@ entities:
color: '#FFFFFF81'
id: BrickTileDarkLineW
decals:
- 1802: -1,13
- 1803: -1,13
- 1810: 1,13
- 1811: 1,13
- 1825: 1,8
- 1826: 1,8
- 1855: -1,8
- 1856: -1,8
+ 1798: -1,13
+ 1799: -1,13
+ 1806: 1,13
+ 1807: 1,13
+ 1821: 1,8
+ 1822: 1,8
+ 1851: -1,8
+ 1852: -1,8
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
@@ -477,11 +483,11 @@ entities:
233: 12,10
280: -6,27
1239: -3,13
- 1842: 1,11
- 1843: 1,10
- 1870: -3,8
- 2075: 19,11
- 2076: 19,10
+ 1838: 1,11
+ 1839: 1,10
+ 1866: -3,8
+ 2071: 19,11
+ 2072: 19,10
- node:
color: '#52B4E9FF'
id: BrickTileSteelCornerNe
@@ -491,23 +497,23 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNe
decals:
- 2212: 32,18
+ 2208: 32,18
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerNw
decals:
- 2189: 27,18
+ 2185: 27,18
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
- 2225: 32,15
+ 2221: 32,15
- node:
color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 2190: 27,16
- 2226: 31,15
+ 2186: 27,16
+ 2222: 31,15
- node:
color: '#FFFFFFFF'
id: BrickTileSteelEndN
@@ -517,19 +523,24 @@ entities:
315: 19,21
316: 25,21
317: 27,21
- 1439: 23,21
- 1440: 21,21
+ 1435: 23,21
+ 1436: 21,21
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 2452: -1,27
- node:
color: '#FFFFFFFF'
id: BrickTileSteelInnerSw
decals:
- 2227: 31,16
+ 2223: 31,16
- node:
color: '#52B4E996'
id: BrickTileSteelLineE
decals:
- 2043: -48,2
- 2044: -48,1
+ 2039: -48,2
+ 2040: -48,1
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineE
@@ -543,10 +554,10 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 1849: 0,11
- 1850: 0,10
- 2213: 32,17
- 2224: 32,16
+ 1845: 0,11
+ 1846: 0,10
+ 2209: 32,17
+ 2220: 32,16
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineN
@@ -562,33 +573,38 @@ entities:
471: -55,8
490: -49,15
491: -50,15
+ - node:
+ color: '#B3B3B3FF'
+ id: BrickTileSteelLineN
+ decals:
+ 2453: -2,27
- node:
color: '#FF5C5CFF'
id: BrickTileSteelLineN
decals:
- 2247: 37,20
- 2248: 36,20
+ 2243: 37,20
+ 2244: 36,20
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 2192: 28,18
- 2193: 29,18
- 2194: 30,18
- 2214: 31,18
+ 2188: 28,18
+ 2189: 29,18
+ 2190: 30,18
+ 2210: 31,18
- node:
color: '#FF5C5CFF'
id: BrickTileSteelLineS
decals:
- 2249: 37,20
- 2250: 36,20
+ 2245: 37,20
+ 2246: 36,20
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 2195: 28,16
- 2196: 29,16
- 2197: 30,16
+ 2191: 28,16
+ 2192: 29,16
+ 2193: 30,16
- node:
color: '#52B4E9FF'
id: BrickTileSteelLineW
@@ -606,85 +622,106 @@ entities:
color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 1841: -2,10
- 1848: -2,11
- 2191: 27,17
+ 1837: -2,10
+ 1844: -2,11
+ 2187: 27,17
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNe
decals:
- 2405: 11,16
+ 2394: 11,16
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNe
decals:
165: -48,18
596: -44,11
- 2385: 5,23
+ 2374: 5,23
- node:
color: '#9FED5896'
id: BrickTileWhiteCornerNw
decals:
- 2414: 16,16
+ 2403: 16,16
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
decals:
163: -50,18
594: -46,11
- 2386: 3,23
+ 2375: 3,23
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
decals:
162: -48,17
589: -44,8
- 2393: 5,20
+ 2382: 5,20
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
164: -50,17
591: -46,8
- 2394: 3,20
+ 2383: 3,20
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 2460: -6,18
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNe
decals:
143: 4,14
- 2407: 11,14
+ 2396: 11,14
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 2456: -2,25
+ 2459: -4,18
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerNw
decals:
- 2412: 16,14
+ 2401: 16,14
- node:
color: '#9FED5896'
id: BrickTileWhiteInnerSe
decals:
142: 4,17
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 2457: -2,27
- node:
color: '#9FED5896'
id: BrickTileWhiteLineE
decals:
140: 4,15
141: 4,16
- 2406: 11,15
+ 2395: 11,15
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
decals:
597: -44,10
598: -44,9
- 2388: 5,22
- 2389: 5,21
+ 2377: 5,22
+ 2378: 5,21
- node:
color: '#3EB38896'
id: BrickTileWhiteLineN
decals:
- 2426: -33,12
- 2427: -32,12
- 2428: -31,12
+ 2415: -33,12
+ 2416: -32,12
+ 2417: -31,12
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteLineN
+ decals:
+ 2458: -5,18
- node:
color: '#9FED5896'
id: BrickTileWhiteLineN
@@ -694,10 +731,10 @@ entities:
245: 6,16
246: 17,16
252: 7,16
- 2408: 12,14
- 2409: 13,14
- 2410: 14,14
- 2411: 15,14
+ 2397: 12,14
+ 2398: 13,14
+ 2399: 14,14
+ 2400: 15,14
- node:
color: '#EFB34196'
id: BrickTileWhiteLineN
@@ -711,23 +748,23 @@ entities:
638: -29,12
639: -28,12
640: -27,12
- 2418: -37,12
- 2419: -36,12
- 2420: -35,12
- 2421: -34,12
+ 2407: -37,12
+ 2408: -36,12
+ 2409: -35,12
+ 2410: -34,12
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineN
decals:
167: -49,18
595: -45,11
- 2387: 4,23
+ 2376: 4,23
- node:
color: '#52B4E996'
id: BrickTileWhiteLineS
decals:
- 2415: 13,12
- 2416: 12,12
+ 2404: 13,12
+ 2405: 12,12
- node:
color: '#9FED5896'
id: BrickTileWhiteLineS
@@ -753,37 +790,42 @@ entities:
629: -29,11
630: -28,11
631: -27,11
- 2417: 11,12
- 2429: -31,11
- 2430: -32,11
- 2431: -33,11
- 2432: -34,11
- 2433: -35,11
- 2434: -36,11
- 2435: -37,11
- 2436: -38,11
- 2437: -39,11
- 2438: -40,11
- 2439: -41,11
- 2440: -42,11
+ 2406: 11,12
+ 2418: -31,11
+ 2419: -32,11
+ 2420: -33,11
+ 2421: -34,11
+ 2422: -35,11
+ 2423: -36,11
+ 2424: -37,11
+ 2425: -38,11
+ 2426: -39,11
+ 2427: -40,11
+ 2428: -41,11
+ 2429: -42,11
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineS
decals:
166: -49,17
590: -45,8
- 2392: 4,20
+ 2381: 4,20
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
decals:
241: 12,11
242: 12,10
+ - node:
+ color: '#8C347F96'
+ id: BrickTileWhiteLineW
+ decals:
+ 2455: -2,26
- node:
color: '#9FED5896'
id: BrickTileWhiteLineW
decals:
- 2413: 16,15
+ 2402: 16,15
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
@@ -802,8 +844,8 @@ entities:
decals:
592: -46,9
593: -46,10
- 2390: 3,21
- 2391: 3,22
+ 2379: 3,21
+ 2380: 3,22
- node:
color: '#9FED580F'
id: CheckerNESW
@@ -963,39 +1005,39 @@ entities:
448: -50,18
449: -48,18
450: -48,18
- 1990: 5,3
- 1991: 6,3
- 1992: 9,3
- 1993: 8,2
- 1994: 10,3
- 1995: 9,2
- 1996: 8,3
- 1997: 7,3
- 1998: 6,3
- 1999: 7,4
- 2000: 8,4
- 2001: 11,3
- 2002: 5,3
- 2003: -13,3
- 2004: -13,3
- 2005: -12,3
- 2006: -11,3
- 2007: -11,3
- 2008: -11,4
- 2009: -10,2
- 2010: -9,2
- 2011: -9,3
- 2012: -10,3
- 2013: -8,3
- 2014: -7,3
- 2015: -8,3
+ 1986: 5,3
+ 1987: 6,3
+ 1988: 9,3
+ 1989: 8,2
+ 1990: 10,3
+ 1991: 9,2
+ 1992: 8,3
+ 1993: 7,3
+ 1994: 6,3
+ 1995: 7,4
+ 1996: 8,4
+ 1997: 11,3
+ 1998: 5,3
+ 1999: -13,3
+ 2000: -13,3
+ 2001: -12,3
+ 2002: -11,3
+ 2003: -11,3
+ 2004: -11,4
+ 2005: -10,2
+ 2006: -9,2
+ 2007: -9,3
+ 2008: -10,3
+ 2009: -8,3
+ 2010: -7,3
+ 2011: -8,3
- node:
cleanable: True
color: '#FFFFFFFF'
id: Dirt
decals:
- 2120: 35,7
- 2265: 43,18
+ 2116: 35,7
+ 2261: 43,18
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1201,229 +1243,240 @@ entities:
1279: -2,18
1286: -3,18
1287: -3,18
- 1307: -4,15
- 1308: -4,14
- 1315: -4,12
- 1316: -6,11
- 1317: -6,11
- 1318: -6,11
- 1339: -5,8
- 1340: -5,8
- 1341: -5,8
- 1342: 2,10
- 1343: 2,9
- 1344: 3,8
- 1386: 3,28
- 1387: 4,26
- 1388: 8,28
- 1389: 6,28
- 1390: 9,26
- 1391: 10,26
- 1392: 10,24
- 1393: 10,23
- 1394: 11,24
- 1395: 11,25
- 1396: 11,28
- 1427: 11,26
- 1445: 12,26
- 1446: 13,26
- 1447: 13,24
- 1448: 13,22
- 1449: 16,23
- 1450: 14,21
- 1451: 13,20
- 1452: 14,20
- 1453: 15,23
- 1454: 18,25
- 1455: 15,26
- 1456: 14,26
- 1457: 16,25
- 1458: 17,22
- 1459: 18,25
- 1460: 19,25
- 1461: 17,25
- 1462: 18,22
- 1463: 19,23
- 1464: 22,22
- 1465: 18,23
- 1466: 19,25
- 1467: 17,24
- 1468: 19,23
- 1469: 23,25
- 1470: 21,26
- 1471: 20,25
- 1472: 23,21
- 1473: 21,22
- 1474: 25,22
- 1475: 25,24
- 1476: 25,23
- 1477: 25,25
- 1478: 24,25
- 1479: 28,24
- 1480: 30,23
- 1481: 26,24
- 1482: 27,25
- 1483: 27,24
- 1484: 27,23
- 1485: 29,22
- 1486: 30,22
- 1487: 30,21
- 1488: 29,20
- 1489: 29,20
- 1490: 30,19
- 1491: 33,25
- 1492: 33,25
- 1493: 31,26
- 1617: 16,21
- 1618: 24,21
- 1619: 24,21
- 1620: 30,19
- 1632: 36,26
- 1633: 37,24
- 1634: 37,24
- 1662: 48,24
- 1663: 47,24
- 1664: 47,23
- 1665: 48,23
- 1666: 49,23
- 1667: 52,24
- 1668: 51,25
- 1669: 50,26
- 1670: 49,25
- 1671: 51,25
- 1672: 52,26
- 1673: 52,26
- 1674: 50,26
- 1675: 53,26
- 1676: 53,26
- 1677: 54,26
- 1730: 53,24
- 1757: 14,15
- 1758: 10,15
- 1759: 12,15
- 1760: 14,15
- 1761: 16,15
- 1762: 17,14
- 1763: 16,11
- 1764: 15,10
- 1765: 15,10
- 1766: 15,11
- 1767: 16,10
- 1768: 17,11
- 1769: 17,11
- 1847: -3,10
- 1972: 7,2
- 1973: 6,4
- 1974: 4,3
- 1975: 5,4
- 1976: 11,3
- 1977: 10,2
- 2016: -8,4
- 2017: -7,4
- 2046: -50,3
- 2047: -50,3
- 2048: -53,6
- 2049: -52,6
- 2102: 36,23
- 2103: 37,21
- 2104: 36,20
- 2111: 40,17
- 2112: 41,16
- 2113: 40,16
- 2114: 43,16
- 2115: 44,16
- 2116: 45,17
- 2117: 44,17
- 2118: 44,16
- 2121: 36,9
- 2127: 45,7
- 2128: 44,9
- 2129: 45,8
- 2130: 46,9
- 2131: 47,8
- 2132: 42,9
- 2133: 43,8
- 2134: 47,10
- 2135: 48,8
- 2136: 26,9
- 2144: 34,21
- 2145: 34,22
- 2146: 32,23
- 2147: 34,23
- 2148: 40,23
- 2149: 39,23
- 2150: 40,22
- 2151: 45,22
- 2152: 47,22
- 2153: 41,22
- 2154: 42,22
- 2155: 49,22
- 2156: 52,22
- 2157: 53,23
- 2158: 52,23
- 2159: 43,6
- 2160: 46,6
- 2161: 46,6
- 2162: 48,6
- 2163: 47,6
- 2164: 42,6
- 2165: 50,3
- 2166: 51,3
- 2167: 53,3
- 2168: 54,3
- 2169: 56,3
- 2170: 57,3
- 2171: 46,4
- 2172: 47,3
- 2173: 45,6
- 2174: 20,22
- 2198: 27,18
- 2199: 28,18
- 2200: 29,18
- 2201: 29,17
- 2202: 28,16
- 2203: 30,16
- 2204: 30,18
- 2230: 32,16
- 2231: 31,16
- 2232: 28,18
- 2233: 28,18
- 2266: 43,17
- 2267: 38,17
- 2286: 38,5
- 2287: 40,5
- 2323: 45,15
- 2324: 42,15
- 2325: 41,15
- 2326: 44,15
- 2327: 43,15
- 2328: 45,15
- 2329: 45,16
- 2330: 37,17
- 2331: 36,18
- 2332: 37,18
+ 1303: -4,15
+ 1304: -4,14
+ 1311: -4,12
+ 1312: -6,11
+ 1313: -6,11
+ 1314: -6,11
+ 1335: -5,8
+ 1336: -5,8
+ 1337: -5,8
+ 1338: 2,10
+ 1339: 2,9
+ 1340: 3,8
+ 1382: 3,28
+ 1383: 4,26
+ 1384: 8,28
+ 1385: 6,28
+ 1386: 9,26
+ 1387: 10,26
+ 1388: 10,24
+ 1389: 10,23
+ 1390: 11,24
+ 1391: 11,25
+ 1392: 11,28
+ 1423: 11,26
+ 1441: 12,26
+ 1442: 13,26
+ 1443: 13,24
+ 1444: 13,22
+ 1445: 16,23
+ 1446: 14,21
+ 1447: 13,20
+ 1448: 14,20
+ 1449: 15,23
+ 1450: 18,25
+ 1451: 15,26
+ 1452: 14,26
+ 1453: 16,25
+ 1454: 17,22
+ 1455: 18,25
+ 1456: 19,25
+ 1457: 17,25
+ 1458: 18,22
+ 1459: 19,23
+ 1460: 22,22
+ 1461: 18,23
+ 1462: 19,25
+ 1463: 17,24
+ 1464: 19,23
+ 1465: 23,25
+ 1466: 21,26
+ 1467: 20,25
+ 1468: 23,21
+ 1469: 21,22
+ 1470: 25,22
+ 1471: 25,24
+ 1472: 25,23
+ 1473: 25,25
+ 1474: 24,25
+ 1475: 28,24
+ 1476: 30,23
+ 1477: 26,24
+ 1478: 27,25
+ 1479: 27,24
+ 1480: 27,23
+ 1481: 29,22
+ 1482: 30,22
+ 1483: 30,21
+ 1484: 29,20
+ 1485: 29,20
+ 1486: 30,19
+ 1487: 33,25
+ 1488: 33,25
+ 1489: 31,26
+ 1613: 16,21
+ 1614: 24,21
+ 1615: 24,21
+ 1616: 30,19
+ 1628: 36,26
+ 1629: 37,24
+ 1630: 37,24
+ 1658: 48,24
+ 1659: 47,24
+ 1660: 47,23
+ 1661: 48,23
+ 1662: 49,23
+ 1663: 52,24
+ 1664: 51,25
+ 1665: 50,26
+ 1666: 49,25
+ 1667: 51,25
+ 1668: 52,26
+ 1669: 52,26
+ 1670: 50,26
+ 1671: 53,26
+ 1672: 53,26
+ 1673: 54,26
+ 1726: 53,24
+ 1753: 14,15
+ 1754: 10,15
+ 1755: 12,15
+ 1756: 14,15
+ 1757: 16,15
+ 1758: 17,14
+ 1759: 16,11
+ 1760: 15,10
+ 1761: 15,10
+ 1762: 15,11
+ 1763: 16,10
+ 1764: 17,11
+ 1765: 17,11
+ 1843: -3,10
+ 1968: 7,2
+ 1969: 6,4
+ 1970: 4,3
+ 1971: 5,4
+ 1972: 11,3
+ 1973: 10,2
+ 2012: -8,4
+ 2013: -7,4
+ 2042: -50,3
+ 2043: -50,3
+ 2044: -53,6
+ 2045: -52,6
+ 2098: 36,23
+ 2099: 37,21
+ 2100: 36,20
+ 2107: 40,17
+ 2108: 41,16
+ 2109: 40,16
+ 2110: 43,16
+ 2111: 44,16
+ 2112: 45,17
+ 2113: 44,17
+ 2114: 44,16
+ 2117: 36,9
+ 2123: 45,7
+ 2124: 44,9
+ 2125: 45,8
+ 2126: 46,9
+ 2127: 47,8
+ 2128: 42,9
+ 2129: 43,8
+ 2130: 47,10
+ 2131: 48,8
+ 2132: 26,9
+ 2140: 34,21
+ 2141: 34,22
+ 2142: 32,23
+ 2143: 34,23
+ 2144: 40,23
+ 2145: 39,23
+ 2146: 40,22
+ 2147: 45,22
+ 2148: 47,22
+ 2149: 41,22
+ 2150: 42,22
+ 2151: 49,22
+ 2152: 52,22
+ 2153: 53,23
+ 2154: 52,23
+ 2155: 43,6
+ 2156: 46,6
+ 2157: 46,6
+ 2158: 48,6
+ 2159: 47,6
+ 2160: 42,6
+ 2161: 50,3
+ 2162: 51,3
+ 2163: 53,3
+ 2164: 54,3
+ 2165: 56,3
+ 2166: 57,3
+ 2167: 46,4
+ 2168: 47,3
+ 2169: 45,6
+ 2170: 20,22
+ 2194: 27,18
+ 2195: 28,18
+ 2196: 29,18
+ 2197: 29,17
+ 2198: 28,16
+ 2199: 30,16
+ 2200: 30,18
+ 2226: 32,16
+ 2227: 31,16
+ 2228: 28,18
+ 2229: 28,18
+ 2262: 43,17
+ 2263: 38,17
+ 2282: 38,5
+ 2283: 40,5
+ 2319: 45,15
+ 2320: 42,15
+ 2321: 41,15
+ 2322: 44,15
+ 2323: 43,15
+ 2324: 45,15
+ 2325: 45,16
+ 2326: 37,17
+ 2327: 36,18
+ 2328: 37,18
+ 2461: -4,18
+ 2462: -5,18
+ 2463: -6,18
+ 2464: -1,23
+ 2465: -2,23
+ 2466: -2,24
+ 2467: -2,22
+ 2468: -2,25
+ 2469: -2,26
+ 2470: -2,27
+ 2471: -2,28
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1899: -33,7
- 1900: -34,10
- 1901: -35,11
- 1902: -39,11
- 1903: -40,12
- 1923: -53,18
- 1924: -53,16
- 1925: -52,15
- 1926: -52,14
- 1927: -51,15
- 1944: -49,5
- 1945: -49,5
- 1946: -56,2
- 1947: -46,4
- 1948: -42,3
- 1949: -42,3
+ 1895: -33,7
+ 1896: -34,10
+ 1897: -35,11
+ 1898: -39,11
+ 1899: -40,12
+ 1919: -53,18
+ 1920: -53,16
+ 1921: -52,15
+ 1922: -52,14
+ 1923: -51,15
+ 1940: -49,5
+ 1941: -49,5
+ 1942: -56,2
+ 1943: -46,4
+ 1944: -42,3
+ 1945: -42,3
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -1546,246 +1599,244 @@ entities:
1290: -3,16
1291: -4,17
1292: -4,17
- 1293: -4,18
- 1294: -4,18
- 1300: -5,17
- 1301: -4,16
- 1309: -6,14
- 1310: -6,13
- 1311: -6,15
- 1312: -5,16
- 1313: -4,11
- 1314: -4,11
- 1326: -4,9
- 1327: -6,10
- 1328: -6,10
- 1329: -3,11
- 1330: -6,13
- 1331: -6,13
- 1345: 4,9
- 1346: 3,12
- 1347: 3,13
- 1348: 3,13
- 1349: 2,12
- 1350: 2,12
- 1351: 3,11
- 1352: 3,10
- 1353: 3,14
- 1354: 3,17
- 1355: 3,17
- 1397: 3,28
- 1398: 3,27
- 1399: 3,26
- 1400: 3,25
- 1401: 7,26
- 1402: 7,27
- 1403: 6,27
- 1494: 14,25
- 1495: 13,25
- 1496: 14,23
- 1497: 14,23
- 1498: 13,23
- 1499: 15,24
- 1500: 15,24
- 1501: 16,24
- 1502: 17,23
- 1503: 16,22
- 1504: 15,22
- 1505: 18,24
- 1506: 19,25
- 1507: 19,24
- 1508: 20,24
- 1509: 20,24
- 1510: 20,23
- 1511: 20,23
- 1512: 19,26
- 1513: 19,26
- 1514: 18,26
- 1515: 17,26
- 1516: 16,26
- 1517: 21,24
- 1518: 21,24
- 1519: 21,22
- 1520: 23,22
- 1521: 21,23
- 1522: 21,23
- 1523: 22,23
+ 1296: -5,17
+ 1297: -4,16
+ 1305: -6,14
+ 1306: -6,13
+ 1307: -6,15
+ 1308: -5,16
+ 1309: -4,11
+ 1310: -4,11
+ 1322: -4,9
+ 1323: -6,10
+ 1324: -6,10
+ 1325: -3,11
+ 1326: -6,13
+ 1327: -6,13
+ 1341: 4,9
+ 1342: 3,12
+ 1343: 3,13
+ 1344: 3,13
+ 1345: 2,12
+ 1346: 2,12
+ 1347: 3,11
+ 1348: 3,10
+ 1349: 3,14
+ 1350: 3,17
+ 1351: 3,17
+ 1393: 3,28
+ 1394: 3,27
+ 1395: 3,26
+ 1396: 3,25
+ 1397: 7,26
+ 1398: 7,27
+ 1399: 6,27
+ 1490: 14,25
+ 1491: 13,25
+ 1492: 14,23
+ 1493: 14,23
+ 1494: 13,23
+ 1495: 15,24
+ 1496: 15,24
+ 1497: 16,24
+ 1498: 17,23
+ 1499: 16,22
+ 1500: 15,22
+ 1501: 18,24
+ 1502: 19,25
+ 1503: 19,24
+ 1504: 20,24
+ 1505: 20,24
+ 1506: 20,23
+ 1507: 20,23
+ 1508: 19,26
+ 1509: 19,26
+ 1510: 18,26
+ 1511: 17,26
+ 1512: 16,26
+ 1513: 21,24
+ 1514: 21,24
+ 1515: 21,22
+ 1516: 23,22
+ 1517: 21,23
+ 1518: 21,23
+ 1519: 22,23
+ 1520: 23,24
+ 1521: 22,25
+ 1522: 21,24
+ 1523: 22,24
1524: 23,24
- 1525: 22,25
- 1526: 21,24
- 1527: 22,24
- 1528: 23,24
- 1529: 24,24
- 1530: 26,25
- 1531: 26,25
- 1532: 24,24
- 1533: 24,23
- 1534: 27,22
- 1535: 27,22
- 1536: 26,22
- 1537: 26,23
- 1538: 28,23
- 1539: 28,23
- 1540: 28,24
- 1541: 29,24
- 1542: 29,24
- 1543: 31,24
- 1544: 31,25
- 1545: 29,25
- 1546: 30,24
- 1547: 29,22
- 1548: 31,23
- 1549: 31,23
- 1550: 31,22
- 1551: 30,23
- 1552: 29,23
- 1553: 29,21
- 1554: 28,22
- 1555: 30,20
- 1556: 31,21
- 1557: 31,21
- 1558: 33,24
- 1559: 33,24
- 1560: 32,24
- 1561: 32,25
- 1562: 32,26
- 1621: 34,25
- 1622: 34,26
- 1635: 41,25
- 1636: 40,26
- 1637: 40,26
- 1638: 39,25
- 1639: 40,24
- 1640: 41,23
- 1641: 44,24
- 1642: 44,25
- 1643: 43,25
- 1644: 42,25
- 1645: 43,25
- 1646: 44,26
- 1647: 44,26
- 1648: 46,25
- 1649: 47,26
- 1650: 49,26
- 1651: 48,26
- 1652: 49,25
- 1653: 49,26
- 1654: 50,25
- 1655: 50,24
- 1656: 50,23
- 1657: 49,24
- 1658: 48,24
- 1659: 46,23
- 1660: 46,23
- 1661: 46,24
- 1724: 50,26
- 1725: 51,23
- 1726: 51,24
- 1727: 45,23
- 1728: 44,23
- 1729: 42,23
- 1732: 14,11
- 1733: 14,11
- 1734: 14,11
- 1735: 14,10
- 1736: 13,10
- 1737: 13,11
- 1738: 11,11
- 1739: 10,11
- 1740: 9,11
- 1741: 9,11
- 1742: 9,10
- 1743: 9,13
- 1744: 9,13
- 1745: 9,13
- 1746: 9,13
- 1747: 11,15
- 1748: 10,15
- 1749: 11,15
- 1750: 13,14
- 1751: 15,15
- 1752: 17,16
- 1753: 17,15
- 1754: 17,13
- 1755: 17,13
- 1756: 17,12
- 1770: 10,12
- 1771: 9,12
- 1772: 8,12
- 1773: 8,12
- 1774: 10,14
- 1846: -3,11
- 1879: -3,13
- 1880: -2,10
- 1881: -3,9
- 1882: -1,8
- 1883: -1,9
- 1884: 0,10
- 1888: -1,12
- 1889: -1,13
- 1890: -3,12
- 1891: 0,11
- 1892: 1,13
- 1893: 3,16
- 1894: 3,16
- 1895: 3,18
- 1896: 3,18
- 1897: 3,18
- 1898: 2,18
- 1978: 8,2
- 1979: 7,4
- 1980: 11,4
- 1981: 6,5
- 2018: -14,2
- 2019: -14,4
- 2020: -13,2
- 2216: 31,17
- 2217: 32,18
- 2228: 32,15
- 2229: 31,15
- 2268: 39,17
- 2269: 38,18
- 2270: 36,17
- 2283: 33,5
- 2284: 35,5
- 2285: 37,5
- 2333: 38,18
- 2334: 36,17
- 2335: 37,17
- 2336: 37,22
- 2337: 36,22
- 2395: 4,25
- 2396: 5,25
- 2397: 6,25
- 2398: 7,25
- 2399: 8,25
- 2400: 7,25
- 2401: 0,21
- 2402: 0,21
- 2451: -37,12
- 2452: -38,12
+ 1525: 24,24
+ 1526: 26,25
+ 1527: 26,25
+ 1528: 24,24
+ 1529: 24,23
+ 1530: 27,22
+ 1531: 27,22
+ 1532: 26,22
+ 1533: 26,23
+ 1534: 28,23
+ 1535: 28,23
+ 1536: 28,24
+ 1537: 29,24
+ 1538: 29,24
+ 1539: 31,24
+ 1540: 31,25
+ 1541: 29,25
+ 1542: 30,24
+ 1543: 29,22
+ 1544: 31,23
+ 1545: 31,23
+ 1546: 31,22
+ 1547: 30,23
+ 1548: 29,23
+ 1549: 29,21
+ 1550: 28,22
+ 1551: 30,20
+ 1552: 31,21
+ 1553: 31,21
+ 1554: 33,24
+ 1555: 33,24
+ 1556: 32,24
+ 1557: 32,25
+ 1558: 32,26
+ 1617: 34,25
+ 1618: 34,26
+ 1631: 41,25
+ 1632: 40,26
+ 1633: 40,26
+ 1634: 39,25
+ 1635: 40,24
+ 1636: 41,23
+ 1637: 44,24
+ 1638: 44,25
+ 1639: 43,25
+ 1640: 42,25
+ 1641: 43,25
+ 1642: 44,26
+ 1643: 44,26
+ 1644: 46,25
+ 1645: 47,26
+ 1646: 49,26
+ 1647: 48,26
+ 1648: 49,25
+ 1649: 49,26
+ 1650: 50,25
+ 1651: 50,24
+ 1652: 50,23
+ 1653: 49,24
+ 1654: 48,24
+ 1655: 46,23
+ 1656: 46,23
+ 1657: 46,24
+ 1720: 50,26
+ 1721: 51,23
+ 1722: 51,24
+ 1723: 45,23
+ 1724: 44,23
+ 1725: 42,23
+ 1728: 14,11
+ 1729: 14,11
+ 1730: 14,11
+ 1731: 14,10
+ 1732: 13,10
+ 1733: 13,11
+ 1734: 11,11
+ 1735: 10,11
+ 1736: 9,11
+ 1737: 9,11
+ 1738: 9,10
+ 1739: 9,13
+ 1740: 9,13
+ 1741: 9,13
+ 1742: 9,13
+ 1743: 11,15
+ 1744: 10,15
+ 1745: 11,15
+ 1746: 13,14
+ 1747: 15,15
+ 1748: 17,16
+ 1749: 17,15
+ 1750: 17,13
+ 1751: 17,13
+ 1752: 17,12
+ 1766: 10,12
+ 1767: 9,12
+ 1768: 8,12
+ 1769: 8,12
+ 1770: 10,14
+ 1842: -3,11
+ 1875: -3,13
+ 1876: -2,10
+ 1877: -3,9
+ 1878: -1,8
+ 1879: -1,9
+ 1880: 0,10
+ 1884: -1,12
+ 1885: -1,13
+ 1886: -3,12
+ 1887: 0,11
+ 1888: 1,13
+ 1889: 3,16
+ 1890: 3,16
+ 1891: 3,18
+ 1892: 3,18
+ 1893: 3,18
+ 1894: 2,18
+ 1974: 8,2
+ 1975: 7,4
+ 1976: 11,4
+ 1977: 6,5
+ 2014: -14,2
+ 2015: -14,4
+ 2016: -13,2
+ 2212: 31,17
+ 2213: 32,18
+ 2224: 32,15
+ 2225: 31,15
+ 2264: 39,17
+ 2265: 38,18
+ 2266: 36,17
+ 2279: 33,5
+ 2280: 35,5
+ 2281: 37,5
+ 2329: 38,18
+ 2330: 36,17
+ 2331: 37,17
+ 2332: 37,22
+ 2333: 36,22
+ 2384: 4,25
+ 2385: 5,25
+ 2386: 6,25
+ 2387: 7,25
+ 2388: 8,25
+ 2389: 7,25
+ 2390: 0,21
+ 2391: 0,21
+ 2440: -37,12
+ 2441: -38,12
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 1904: -40,11
- 1905: -41,12
- 1906: -38,12
- 1907: -37,11
- 1908: -36,11
- 1909: -36,11
- 1910: -29,12
- 1911: -28,12
- 1912: -27,12
- 1928: -53,15
- 1929: -51,14
- 1930: -51,14
- 1931: -53,12
- 1932: -53,12
- 1933: -53,13
- 1934: -52,12
+ 1900: -40,11
+ 1901: -41,12
+ 1902: -38,12
+ 1903: -37,11
+ 1904: -36,11
+ 1905: -36,11
+ 1906: -29,12
+ 1907: -28,12
+ 1908: -27,12
+ 1924: -53,15
+ 1925: -51,14
+ 1926: -51,14
+ 1927: -53,12
+ 1928: -53,12
+ 1929: -53,13
+ 1930: -52,12
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2035,250 +2086,250 @@ entities:
1283: -1,16
1284: -3,17
1285: -3,17
- 1319: -6,9
- 1320: -4,8
- 1321: -4,8
- 1322: -4,8
- 1323: -4,8
- 1332: -6,17
- 1333: -4,16
- 1334: -6,8
- 1335: -6,8
- 1336: -6,8
- 1337: -6,8
- 1338: -6,9
- 1356: 2,17
- 1357: 2,18
- 1358: 4,18
- 1359: 4,18
- 1360: 4,17
- 1361: 4,17
- 1362: 4,16
+ 1315: -6,9
+ 1316: -4,8
+ 1317: -4,8
+ 1318: -4,8
+ 1319: -4,8
+ 1328: -6,17
+ 1329: -4,16
+ 1330: -6,8
+ 1331: -6,8
+ 1332: -6,8
+ 1333: -6,8
+ 1334: -6,9
+ 1352: 2,17
+ 1353: 2,18
+ 1354: 4,18
+ 1355: 4,18
+ 1356: 4,17
+ 1357: 4,17
+ 1358: 4,16
+ 1359: 4,14
+ 1360: 4,13
+ 1361: 4,13
+ 1362: 4,14
1363: 4,14
- 1364: 4,13
- 1365: 4,13
- 1366: 4,14
- 1367: 4,14
- 1368: 2,16
- 1369: 2,16
- 1370: 2,16
- 1371: 2,16
- 1372: 2,11
- 1373: 2,10
- 1374: 2,9
- 1375: 3,8
- 1376: 2,8
- 1404: 4,27
- 1405: 4,27
- 1406: 5,28
- 1407: 5,28
- 1408: 5,27
- 1409: 10,27
- 1410: 10,27
- 1411: 9,27
- 1412: 11,27
- 1413: 11,26
- 1425: 9,25
- 1426: 6,26
- 1563: 33,26
- 1564: 34,26
- 1565: 34,25
- 1566: 34,24
- 1567: 31,24
- 1568: 32,24
- 1569: 33,24
- 1570: 33,24
- 1571: 30,21
- 1572: 30,22
- 1573: 29,21
+ 1364: 2,16
+ 1365: 2,16
+ 1366: 2,16
+ 1367: 2,16
+ 1368: 2,11
+ 1369: 2,10
+ 1370: 2,9
+ 1371: 3,8
+ 1372: 2,8
+ 1400: 4,27
+ 1401: 4,27
+ 1402: 5,28
+ 1403: 5,28
+ 1404: 5,27
+ 1405: 10,27
+ 1406: 10,27
+ 1407: 9,27
+ 1408: 11,27
+ 1409: 11,26
+ 1421: 9,25
+ 1422: 6,26
+ 1559: 33,26
+ 1560: 34,26
+ 1561: 34,25
+ 1562: 34,24
+ 1563: 31,24
+ 1564: 32,24
+ 1565: 33,24
+ 1566: 33,24
+ 1567: 30,21
+ 1568: 30,22
+ 1569: 29,21
+ 1570: 28,21
+ 1571: 28,23
+ 1572: 27,22
+ 1573: 26,22
1574: 28,21
- 1575: 28,23
- 1576: 27,22
- 1577: 26,22
- 1578: 28,21
- 1579: 28,22
- 1580: 25,23
- 1581: 26,23
- 1582: 26,23
- 1583: 25,21
- 1584: 24,23
- 1585: 23,24
- 1586: 24,23
- 1587: 23,23
- 1588: 23,23
- 1589: 24,22
- 1590: 24,24
- 1591: 23,25
- 1592: 22,24
- 1593: 22,25
- 1594: 22,26
- 1595: 25,26
- 1596: 25,26
- 1597: 20,26
- 1598: 19,26
- 1599: 20,26
- 1600: 17,26
- 1601: 18,26
- 1602: 15,26
- 1603: 15,26
- 1604: 15,25
- 1605: 15,25
- 1606: 17,24
- 1607: 16,24
- 1608: 13,24
- 1609: 14,23
- 1610: 14,22
- 1611: 15,22
- 1612: 17,23
- 1613: 19,22
- 1614: 20,21
- 1615: 20,21
- 1616: 18,21
- 1623: 37,26
- 1624: 37,26
- 1625: 36,25
- 1626: 36,25
- 1627: 34,26
- 1628: 33,26
- 1629: 32,26
- 1630: 31,25
- 1631: 29,25
- 1695: 39,25
- 1696: 39,24
- 1697: 39,24
- 1698: 41,23
- 1699: 44,24
- 1700: 44,24
- 1701: 43,24
- 1702: 43,24
- 1703: 42,23
- 1704: 43,23
- 1705: 44,23
- 1706: 45,24
- 1707: 45,25
- 1708: 45,25
- 1709: 47,26
- 1710: 47,26
- 1711: 50,25
- 1712: 50,25
- 1713: 49,24
- 1714: 51,25
- 1715: 52,25
- 1716: 51,25
- 1717: 51,25
- 1718: 53,26
- 1719: 54,26
- 1720: 53,25
- 1721: 53,25
- 1722: 54,25
- 1723: 51,26
- 1731: 29,8
- 1775: 10,14
- 1776: 10,14
- 1777: 10,13
- 1778: 10,13
- 1779: 17,15
- 1780: 17,14
- 1781: 17,15
- 1782: 17,16
- 1783: 17,13
- 1784: 15,11
- 1785: 15,10
- 1786: 14,10
- 1787: 7,15
- 1788: 8,16
- 1789: 8,16
- 1790: 7,16
- 1791: 13,21
- 1792: 13,21
- 1793: 13,21
- 1877: -1,11
- 1878: -1,13
- 1885: -2,11
- 1886: 1,11
- 1887: -5,12
- 1982: 5,4
- 1983: 5,3
- 1984: 6,2
- 1985: 4,2
- 1986: 10,2
- 2021: -13,2
- 2022: -13,4
- 2023: -11,2
- 2024: -12,2
- 2105: 36,21
- 2106: 37,20
- 2107: 36,19
- 2108: 37,19
- 2109: 37,18
- 2110: 37,17
- 2119: 40,17
- 2125: 39,10
- 2126: 39,9
- 2137: 24,9
- 2138: 7,20
- 2139: 31,20
- 2140: 32,21
- 2141: 32,22
- 2142: 33,23
- 2143: 33,22
- 2205: 28,17
- 2206: 28,17
- 2207: 27,16
- 2215: 32,17
- 2271: 36,18
- 2273: 45,16
- 2274: 37,25
- 2275: 46,25
- 2276: 43,22
- 2277: 41,5
- 2278: 39,5
- 2279: 36,5
- 2280: 34,5
- 2281: 32,5
- 2282: 28,5
- 2338: 39,22
- 2339: 40,22
- 2340: 42,22
- 2341: 43,22
- 2342: 37,22
- 2343: 36,22
- 2344: 38,23
- 2345: 38,25
- 2346: 38,26
- 2347: 40,8
- 2348: 38,8
- 2349: 39,8
- 2350: 40,8
- 2351: 40,11
- 2352: 40,10
- 2353: 37,11
- 2450: -35,12
+ 1575: 28,22
+ 1576: 25,23
+ 1577: 26,23
+ 1578: 26,23
+ 1579: 25,21
+ 1580: 24,23
+ 1581: 23,24
+ 1582: 24,23
+ 1583: 23,23
+ 1584: 23,23
+ 1585: 24,22
+ 1586: 24,24
+ 1587: 23,25
+ 1588: 22,24
+ 1589: 22,25
+ 1590: 22,26
+ 1591: 25,26
+ 1592: 25,26
+ 1593: 20,26
+ 1594: 19,26
+ 1595: 20,26
+ 1596: 17,26
+ 1597: 18,26
+ 1598: 15,26
+ 1599: 15,26
+ 1600: 15,25
+ 1601: 15,25
+ 1602: 17,24
+ 1603: 16,24
+ 1604: 13,24
+ 1605: 14,23
+ 1606: 14,22
+ 1607: 15,22
+ 1608: 17,23
+ 1609: 19,22
+ 1610: 20,21
+ 1611: 20,21
+ 1612: 18,21
+ 1619: 37,26
+ 1620: 37,26
+ 1621: 36,25
+ 1622: 36,25
+ 1623: 34,26
+ 1624: 33,26
+ 1625: 32,26
+ 1626: 31,25
+ 1627: 29,25
+ 1691: 39,25
+ 1692: 39,24
+ 1693: 39,24
+ 1694: 41,23
+ 1695: 44,24
+ 1696: 44,24
+ 1697: 43,24
+ 1698: 43,24
+ 1699: 42,23
+ 1700: 43,23
+ 1701: 44,23
+ 1702: 45,24
+ 1703: 45,25
+ 1704: 45,25
+ 1705: 47,26
+ 1706: 47,26
+ 1707: 50,25
+ 1708: 50,25
+ 1709: 49,24
+ 1710: 51,25
+ 1711: 52,25
+ 1712: 51,25
+ 1713: 51,25
+ 1714: 53,26
+ 1715: 54,26
+ 1716: 53,25
+ 1717: 53,25
+ 1718: 54,25
+ 1719: 51,26
+ 1727: 29,8
+ 1771: 10,14
+ 1772: 10,14
+ 1773: 10,13
+ 1774: 10,13
+ 1775: 17,15
+ 1776: 17,14
+ 1777: 17,15
+ 1778: 17,16
+ 1779: 17,13
+ 1780: 15,11
+ 1781: 15,10
+ 1782: 14,10
+ 1783: 7,15
+ 1784: 8,16
+ 1785: 8,16
+ 1786: 7,16
+ 1787: 13,21
+ 1788: 13,21
+ 1789: 13,21
+ 1873: -1,11
+ 1874: -1,13
+ 1881: -2,11
+ 1882: 1,11
+ 1883: -5,12
+ 1978: 5,4
+ 1979: 5,3
+ 1980: 6,2
+ 1981: 4,2
+ 1982: 10,2
+ 2017: -13,2
+ 2018: -13,4
+ 2019: -11,2
+ 2020: -12,2
+ 2101: 36,21
+ 2102: 37,20
+ 2103: 36,19
+ 2104: 37,19
+ 2105: 37,18
+ 2106: 37,17
+ 2115: 40,17
+ 2121: 39,10
+ 2122: 39,9
+ 2133: 24,9
+ 2134: 7,20
+ 2135: 31,20
+ 2136: 32,21
+ 2137: 32,22
+ 2138: 33,23
+ 2139: 33,22
+ 2201: 28,17
+ 2202: 28,17
+ 2203: 27,16
+ 2211: 32,17
+ 2267: 36,18
+ 2269: 45,16
+ 2270: 37,25
+ 2271: 46,25
+ 2272: 43,22
+ 2273: 41,5
+ 2274: 39,5
+ 2275: 36,5
+ 2276: 34,5
+ 2277: 32,5
+ 2278: 28,5
+ 2334: 39,22
+ 2335: 40,22
+ 2336: 42,22
+ 2337: 43,22
+ 2338: 37,22
+ 2339: 36,22
+ 2340: 38,23
+ 2341: 38,25
+ 2342: 38,26
+ 2343: 40,8
+ 2344: 38,8
+ 2345: 39,8
+ 2346: 40,8
+ 2347: 40,11
+ 2348: 40,10
+ 2349: 37,11
+ 2439: -35,12
- node:
cleanable: True
zIndex: 180
color: '#FFFFFFFF'
id: DirtLight
decals:
- 1913: -38,11
- 1914: -38,11
- 1915: -39,12
- 1916: -39,12
- 1917: -41,10
- 1918: -38,12
- 1919: -33,11
- 1920: -29,11
- 1921: -30,12
- 1922: -30,12
- 1935: -52,11
- 1936: -53,10
- 1937: -49,14
- 1938: -48,14
- 1939: -48,14
- 1940: -50,5
- 1941: -51,5
- 1942: -51,6
- 1943: -51,5
+ 1909: -38,11
+ 1910: -38,11
+ 1911: -39,12
+ 1912: -39,12
+ 1913: -41,10
+ 1914: -38,12
+ 1915: -33,11
+ 1916: -29,11
+ 1917: -30,12
+ 1918: -30,12
+ 1931: -52,11
+ 1932: -53,10
+ 1933: -49,14
+ 1934: -48,14
+ 1935: -48,14
+ 1936: -50,5
+ 1937: -51,5
+ 1938: -51,6
+ 1939: -51,5
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2438,82 +2489,75 @@ entities:
1228: -9,17
1229: -8,15
1230: -9,15
- 1295: -5,18
- 1296: -5,18
- 1297: -5,17
- 1298: -6,17
- 1299: -6,16
- 1302: -6,16
- 1303: -5,15
- 1304: -5,13
- 1305: -5,13
- 1306: -4,13
- 1324: -5,9
- 1325: -4,10
- 1377: 2,8
- 1378: 4,9
- 1379: 4,10
- 1380: 3,9
- 1381: 4,12
- 1382: 4,13
- 1383: 2,15
- 1384: 2,14
- 1385: 4,15
- 1414: 3,28
- 1415: 4,28
- 1416: 5,28
- 1417: 7,28
- 1418: 7,28
- 1419: 6,27
- 1420: 5,26
- 1421: 5,26
- 1422: 8,27
- 1423: 10,23
- 1424: 11,23
- 1678: 48,26
- 1679: 49,26
- 1680: 48,25
- 1681: 47,25
- 1682: 46,26
- 1683: 45,26
- 1684: 45,26
- 1685: 40,26
- 1686: 43,26
- 1687: 43,26
- 1688: 42,24
- 1689: 41,24
- 1690: 42,25
- 1691: 42,26
- 1692: 41,26
- 1693: 40,25
- 1694: 39,26
- 1987: 4,3
- 1988: 6,4
- 1989: 11,2
- 2025: -9,4
- 2026: -10,4
- 2027: -8,2
- 2028: -12,4
- 2029: -11,2
- 2030: -12,2
- 2031: -12,1
- 2032: -13,4
- 2033: -13,5
- 2122: 37,10
- 2123: 38,9
- 2124: 38,10
- 2218: 31,18
- 2219: 32,17
- 2272: 42,16
- 2453: -33,12
- 2454: -34,12
- 2455: -32,12
- 2456: -31,12
- - node:
- color: '#334E6DC8'
- id: FullTileOverlayGreyscale
- decals:
- 2045: -50,3
+ 1293: -5,17
+ 1294: -6,17
+ 1295: -6,16
+ 1298: -6,16
+ 1299: -5,15
+ 1300: -5,13
+ 1301: -5,13
+ 1302: -4,13
+ 1320: -5,9
+ 1321: -4,10
+ 1373: 2,8
+ 1374: 4,9
+ 1375: 4,10
+ 1376: 3,9
+ 1377: 4,12
+ 1378: 4,13
+ 1379: 2,15
+ 1380: 2,14
+ 1381: 4,15
+ 1410: 3,28
+ 1411: 4,28
+ 1412: 5,28
+ 1413: 7,28
+ 1414: 7,28
+ 1415: 6,27
+ 1416: 5,26
+ 1417: 5,26
+ 1418: 8,27
+ 1419: 10,23
+ 1420: 11,23
+ 1674: 48,26
+ 1675: 49,26
+ 1676: 48,25
+ 1677: 47,25
+ 1678: 46,26
+ 1679: 45,26
+ 1680: 45,26
+ 1681: 40,26
+ 1682: 43,26
+ 1683: 43,26
+ 1684: 42,24
+ 1685: 41,24
+ 1686: 42,25
+ 1687: 42,26
+ 1688: 41,26
+ 1689: 40,25
+ 1690: 39,26
+ 1983: 4,3
+ 1984: 6,4
+ 1985: 11,2
+ 2021: -9,4
+ 2022: -10,4
+ 2023: -8,2
+ 2024: -12,4
+ 2025: -11,2
+ 2026: -12,2
+ 2027: -12,1
+ 2028: -13,4
+ 2029: -13,5
+ 2118: 37,10
+ 2119: 38,9
+ 2120: 38,10
+ 2214: 31,18
+ 2215: 32,17
+ 2268: 42,16
+ 2442: -33,12
+ 2443: -34,12
+ 2444: -32,12
+ 2445: -31,12
- node:
color: '#35526FFF'
id: FullTileOverlayGreyscale
@@ -2527,6 +2571,7 @@ entities:
478: -50,2
479: -51,3
480: -49,3
+ 2041: -50,3
- node:
color: '#9FED5896'
id: HalfTileOverlayGreyscale
@@ -2584,42 +2629,42 @@ entities:
color: '#1F6626FF'
id: MiniTileCheckerAOverlay
decals:
- 2373: 3,23
- 2374: 4,23
- 2375: 5,23
- 2376: 5,22
- 2377: 4,22
- 2378: 3,22
- 2379: 3,21
- 2380: 4,21
- 2381: 5,21
- 2382: 5,20
- 2383: 4,20
- 2384: 3,20
+ 2362: 3,23
+ 2363: 4,23
+ 2364: 5,23
+ 2365: 5,22
+ 2366: 4,22
+ 2367: 3,22
+ 2368: 3,21
+ 2369: 4,21
+ 2370: 5,21
+ 2371: 5,20
+ 2372: 4,20
+ 2373: 3,20
- node:
color: '#9FED5896'
id: MiniTileCheckerAOverlay
decals:
- 2177: 27,18
- 2178: 27,17
- 2179: 27,16
- 2180: 28,16
- 2181: 28,17
- 2182: 28,18
- 2183: 29,18
- 2184: 29,17
- 2185: 29,16
- 2186: 30,16
- 2187: 30,17
- 2188: 30,18
- 2208: 31,17
- 2209: 31,18
- 2210: 32,18
- 2211: 32,17
- 2220: 31,16
- 2221: 32,16
- 2222: 32,15
- 2223: 31,15
+ 2173: 27,18
+ 2174: 27,17
+ 2175: 27,16
+ 2176: 28,16
+ 2177: 28,17
+ 2178: 28,18
+ 2179: 29,18
+ 2180: 29,17
+ 2181: 29,16
+ 2182: 30,16
+ 2183: 30,17
+ 2184: 30,18
+ 2204: 31,17
+ 2205: 31,18
+ 2206: 32,18
+ 2207: 32,17
+ 2216: 31,16
+ 2217: 32,16
+ 2218: 32,15
+ 2219: 31,15
- node:
color: '#FFFFFFFF'
id: MiniTileCheckerAOverlay
@@ -2661,8 +2706,8 @@ entities:
color: '#DE3A3A96'
id: MiniTileLineOverlayW
decals:
- 2316: 46,16
- 2317: 46,15
+ 2312: 46,16
+ 2313: 46,15
- node:
color: '#FFFFFFFF'
id: MiniTileOverlay
@@ -2683,66 +2728,59 @@ entities:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNe
decals:
- 2297: 40,11
+ 2293: 40,11
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNw
decals:
- 2304: 37,11
+ 2300: 37,11
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerSe
decals:
- 2296: 40,8
+ 2292: 40,8
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerSw
decals:
- 2293: 37,8
+ 2289: 37,8
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineE
decals:
- 2302: 40,9
- 2303: 40,10
+ 2298: 40,9
+ 2299: 40,10
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineN
decals:
- 2298: 39,11
- 2299: 38,11
+ 2294: 39,11
+ 2295: 38,11
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineS
decals:
- 2300: 39,8
- 2301: 38,8
+ 2296: 39,8
+ 2297: 38,8
- node:
color: '#FFFFFFFF'
id: MiniTileSteelLineW
decals:
- 2294: 37,9
- 2295: 37,10
- - node:
- color: '#4C2A5EFF'
- id: QuarterTileOverlayGreyscale
- decals:
- 2361: -6,18
- 2362: -5,18
- 2363: -4,18
+ 2290: 37,9
+ 2291: 37,10
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale
decals:
188: -31,-28
197: -29,-26
- 2083: 42,6
- 2084: 44,6
- 2085: 43,6
- 2086: 45,6
- 2087: 46,6
- 2088: 47,6
- 2089: 48,6
+ 2079: 42,6
+ 2080: 44,6
+ 2081: 43,6
+ 2082: 45,6
+ 2083: 46,6
+ 2084: 47,6
+ 2085: 48,6
- node:
color: '#D381C996'
id: QuarterTileOverlayGreyscale
@@ -2784,14 +2822,6 @@ entities:
id: QuarterTileOverlayGreyscale270
decals:
485: -58,1
- - node:
- color: '#774194FF'
- id: QuarterTileOverlayGreyscale270
- decals:
- 2364: -2,26
- 2365: -2,26
- 2366: -2,27
- 2367: -2,28
- node:
color: '#9FED5896'
id: QuarterTileOverlayGreyscale270
@@ -2808,31 +2838,31 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 2251: 40,22
- 2252: 41,22
- 2253: 42,22
- 2254: 43,22
- 2255: 44,22
- 2256: 45,22
- 2257: 46,22
- 2258: 47,22
- 2259: 36,18
- 2260: 36,17
- 2261: 36,16
- 2262: 36,15
- 2263: 37,15
- 2264: 38,15
- 2305: 40,15
- 2306: 39,15
- 2307: 45,15
- 2308: 44,15
- 2309: 43,15
- 2310: 42,15
- 2311: 41,15
- 2312: 36,22
- 2313: 37,22
- 2314: 38,22
- 2315: 39,22
+ 2247: 40,22
+ 2248: 41,22
+ 2249: 42,22
+ 2250: 43,22
+ 2251: 44,22
+ 2252: 45,22
+ 2253: 46,22
+ 2254: 47,22
+ 2255: 36,18
+ 2256: 36,17
+ 2257: 36,16
+ 2258: 36,15
+ 2259: 37,15
+ 2260: 38,15
+ 2301: 40,15
+ 2302: 39,15
+ 2303: 45,15
+ 2304: 44,15
+ 2305: 43,15
+ 2306: 42,15
+ 2307: 41,15
+ 2308: 36,22
+ 2309: 37,22
+ 2310: 38,22
+ 2311: 39,22
- node:
color: '#52B4E996'
id: QuarterTileOverlayGreyscale90
@@ -2855,11 +2885,11 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 2318: 41,18
- 2319: 40,18
- 2320: 39,18
- 2321: 38,18
- 2322: 41,17
+ 2314: 41,18
+ 2315: 40,18
+ 2316: 39,18
+ 2317: 38,18
+ 2318: 41,17
- node:
color: '#EFB34196'
id: QuarterTileOverlayGreyscale90
@@ -2873,82 +2903,82 @@ entities:
619: -38,5
620: -37,5
621: -36,5
- 2422: -35,5
- 2423: -34,5
- 2424: -33,5
- 2425: -32,5
+ 2411: -35,5
+ 2412: -34,5
+ 2413: -33,5
+ 2414: -32,5
- node:
color: '#FFFFFFFF'
id: SpaceStationSign1
decals:
- 1953: -11,4
- 1968: 7,4
+ 1949: -11,4
+ 1964: 7,4
- node:
color: '#FFFFFFFF'
id: SpaceStationSign10
decals:
- 1958: -10,2
- 1969: 8,2
+ 1954: -10,2
+ 1965: 8,2
- node:
color: '#FFFFFFFF'
id: SpaceStationSign11
decals:
- 1959: -9,2
- 1970: 9,2
+ 1955: -9,2
+ 1966: 9,2
- node:
color: '#FFFFFFFF'
id: SpaceStationSign2
decals:
- 1960: -10,4
- 1971: 8,4
+ 1956: -10,4
+ 1967: 8,4
- node:
color: '#FFFFFFFF'
id: SpaceStationSign3
decals:
- 1950: -13,3
- 1967: 5,3
+ 1946: -13,3
+ 1963: 5,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign4
decals:
- 1951: -12,3
- 1966: 6,3
+ 1947: -12,3
+ 1962: 6,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign5
decals:
- 1952: -11,3
- 1965: 7,3
+ 1948: -11,3
+ 1961: 7,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign6
decals:
- 1954: -10,3
- 1964: 8,3
+ 1950: -10,3
+ 1960: 8,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign7
decals:
- 1955: -9,3
- 1963: 9,3
+ 1951: -9,3
+ 1959: 9,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign8
decals:
- 1956: -8,3
- 1962: 10,3
+ 1952: -8,3
+ 1958: 10,3
- node:
color: '#FFFFFFFF'
id: SpaceStationSign9
decals:
- 1957: -7,3
- 1961: 11,3
+ 1953: -7,3
+ 1957: 11,3
- node:
color: '#FF5C5CFF'
id: StandClearGreyscale
decals:
- 2245: 37,20
- 2246: 36,20
+ 2241: 37,20
+ 2242: 36,20
- node:
color: '#DE3A3A96'
id: ThreeQuarterTileOverlayGreyscale
@@ -2975,45 +3005,45 @@ entities:
color: '#FFFFFFFF'
id: WarnCornerNE
decals:
- 2442: -39,16
+ 2431: -39,16
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
- 2444: -41,16
+ 2433: -41,16
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
decals:
- 2446: -39,14
+ 2435: -39,14
- node:
color: '#FFFFFFFF'
id: WarnCornerSW
decals:
- 2448: -41,14
+ 2437: -41,14
- node:
color: '#EFB34196'
id: WarnFull
decals:
- 2441: -32,6
+ 2430: -32,6
- node:
color: '#52B4E996'
id: WarnFullGreyscale
decals:
- 2459: -36,6
- 2460: -35,6
+ 2448: -36,6
+ 2449: -35,6
- node:
color: '#D4D4D496'
id: WarnFullGreyscale
decals:
- 2461: -34,6
- 2462: -33,6
+ 2450: -34,6
+ 2451: -33,6
- node:
color: '#DE3A3A96'
id: WarnFullGreyscale
decals:
- 2457: -38,6
- 2458: -37,6
+ 2446: -38,6
+ 2447: -37,6
- node:
color: '#FFFFFFFF'
id: WarnLineE
@@ -3069,14 +3099,14 @@ entities:
1251: -3,16
1252: -3,17
1253: -3,18
- 2038: -28,1
- 2077: 35,26
- 2078: 35,25
- 2079: 35,24
- 2359: 35,22
- 2360: 35,23
- 2403: -57,2
- 2447: -39,15
+ 2034: -28,1
+ 2073: 35,26
+ 2074: 35,25
+ 2075: 35,24
+ 2355: 35,22
+ 2356: 35,23
+ 2392: -57,2
+ 2436: -39,15
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -3116,26 +3146,26 @@ entities:
302: 48,21
626: -41,8
627: -40,8
- 2053: -31,0
- 2054: -30,0
- 2055: -29,0
- 2056: -31,-11
- 2057: -29,-11
- 2061: 29,-11
- 2234: 43,17
- 2235: 44,17
- 2236: 45,17
- 2237: 36,19
- 2238: 37,19
- 2239: 36,21
- 2240: 37,21
- 2449: -40,14
+ 2049: -31,0
+ 2050: -30,0
+ 2051: -29,0
+ 2052: -31,-11
+ 2053: -29,-11
+ 2057: 29,-11
+ 2230: 43,17
+ 2231: 44,17
+ 2232: 45,17
+ 2233: 36,19
+ 2234: 37,19
+ 2235: 36,21
+ 2236: 37,21
+ 2438: -40,14
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 2176: 29,19
+ 2172: 29,19
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -3191,14 +3221,14 @@ entities:
1255: 1,16
1256: 1,17
1257: 1,18
- 2039: -28,1
- 2080: 35,26
- 2081: 35,25
- 2082: 35,24
- 2357: 35,22
- 2358: 35,23
- 2404: -57,2
- 2445: -41,15
+ 2035: -28,1
+ 2076: 35,26
+ 2077: 35,25
+ 2078: 35,24
+ 2353: 35,22
+ 2354: 35,23
+ 2393: -57,2
+ 2434: -41,15
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -3243,105 +3273,105 @@ entities:
623: -41,6
624: -41,9
625: -40,9
- 2050: -31,0
- 2051: -30,0
- 2052: -29,0
- 2058: -31,-11
- 2059: -29,-11
- 2060: 29,-11
- 2241: 36,19
- 2242: 37,19
- 2243: 37,21
- 2244: 36,21
- 2443: -40,16
+ 2046: -31,0
+ 2047: -30,0
+ 2048: -29,0
+ 2054: -31,-11
+ 2055: -29,-11
+ 2056: 29,-11
+ 2237: 36,19
+ 2238: 37,19
+ 2239: 37,21
+ 2240: 36,21
+ 2432: -40,16
- node:
cleanable: True
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 2175: 29,19
+ 2171: 29,19
- node:
color: '#C8C8C8FF'
id: WoodTrimThinCornerNe
decals:
- 2066: 26,12
- 2092: 46,10
+ 2062: 26,12
+ 2088: 46,10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
- 2289: 36,11
+ 2285: 36,11
- node:
color: '#C8C8C8FF'
id: WoodTrimThinCornerNw
decals:
- 2063: 24,12
- 2091: 42,10
+ 2059: 24,12
+ 2087: 42,10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
- 2288: 35,11
+ 2284: 35,11
- node:
color: '#C8C8C8FF'
id: WoodTrimThinCornerSe
decals:
- 2064: 26,11
- 2093: 46,8
+ 2060: 26,11
+ 2089: 46,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
- 2355: 36,8
+ 2351: 36,8
- node:
color: '#C8C8C8FF'
id: WoodTrimThinCornerSw
decals:
- 2065: 24,11
- 2090: 42,8
+ 2061: 24,11
+ 2086: 42,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 2354: 35,8
+ 2350: 35,8
- node:
color: '#C8C8C8FF'
id: WoodTrimThinLineE
decals:
- 2101: 46,9
+ 2097: 46,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
decals:
- 2290: 36,9
- 2291: 36,10
+ 2286: 36,9
+ 2287: 36,10
- node:
color: '#C8C8C8FF'
id: WoodTrimThinLineN
decals:
- 2067: 25,12
- 2098: 43,10
- 2099: 44,10
- 2100: 45,10
+ 2063: 25,12
+ 2094: 43,10
+ 2095: 44,10
+ 2096: 45,10
- node:
color: '#C8C8C8FF'
id: WoodTrimThinLineS
decals:
- 2068: 25,11
- 2095: 43,8
- 2096: 44,8
- 2097: 45,8
+ 2064: 25,11
+ 2091: 43,8
+ 2092: 44,8
+ 2093: 45,8
- node:
color: '#C8C8C8FF'
id: WoodTrimThinLineW
decals:
- 2094: 42,9
+ 2090: 42,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
decals:
- 2292: 35,10
- 2356: 35,9
+ 2288: 35,10
+ 2352: 35,9
- node:
color: '#9BC516FF'
id: shop
@@ -3512,7 +3542,7 @@ entities:
0: 47903
-9,3:
0: 34831
- 2: 8704
+ 3: 8704
-8,4:
0: 2187
1: 768
@@ -3652,13 +3682,13 @@ entities:
0: 63931
-10,3:
0: 13087
- 3: 34816
+ 2: 34816
-10,4:
0: 3
- 3: 8
+ 2: 8
1: 3840
-9,4:
- 2: 2
+ 3: 2
0: 8
1: 3840
-16,0:
@@ -3884,8 +3914,8 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 6666.982
- 0
+ - 6666.982
- 0
- 0
- 0
@@ -3899,7 +3929,6 @@ entities:
- volume: 2500
temperature: 293.15
moles:
- - 0
- 6666.982
- 0
- 0
@@ -3911,6 +3940,7 @@ entities:
- 0
- 0
- 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -5593,13 +5623,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 51.5,6.5
parent: 2173
-- proto: BarricadeBlock
- entities:
- - uid: 2008
- components:
- - type: Transform
- pos: -1.5,28.5
- parent: 2173
- proto: Bed
entities:
- uid: 346
@@ -14443,7 +14466,7 @@ entities:
- uid: 514
components:
- type: Transform
- pos: 6.5,23.5
+ pos: -1.5,28.5
parent: 2173
- type: ContainerContainer
containers:
@@ -17471,10 +17494,10 @@ entities:
parent: 2173
- proto: filingCabinetRandom
entities:
- - uid: 2041
+ - uid: 2008
components:
- type: Transform
- pos: 6.5,18.5
+ pos: 6.5,23.5
parent: 2173
- proto: FireAlarm
entities:
@@ -27580,7 +27603,7 @@ entities:
rot: 3.141592653589793 rad
pos: 8.592261,22.02486
parent: 2173
-- proto: LessLethalVendingMachine
+- proto: LessLethalVendingMachinePOI
entities:
- uid: 2025
components:
@@ -27696,6 +27719,14 @@ entities:
- type: Transform
pos: 8.50093,23.502323
parent: 2173
+- proto: LockerWallMaterialsBasicFilled
+ entities:
+ - uid: 2057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,18.5
+ parent: 2173
- proto: MachineCryoSleepPod
entities:
- uid: 1394
@@ -27735,24 +27766,6 @@ entities:
- type: Transform
pos: 29.342014,16.547031
parent: 2173
-- proto: MailCarrierMothershipComputer
- entities:
- - uid: 4296
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,16.5
- parent: 2173
- - type: ContainerContainer
- containers:
- ShipyardConsole-targetId: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- proto: MailingUnit
entities:
- uid: 207
@@ -28042,7 +28055,7 @@ entities:
- type: Transform
pos: -35.5,6.5
parent: 2173
-- proto: PacifiedZone100
+- proto: PacifiedZonePanicBunker100
entities:
- uid: 2054
components:
@@ -28412,6 +28425,11 @@ entities:
parent: 2173
- proto: PowerCellRecharger
entities:
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 2173
- uid: 2661
components:
- type: Transform
@@ -29132,12 +29150,6 @@ entities:
- type: Transform
pos: -45.5,7.5
parent: 2173
- - uid: 4050
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,18.5
- parent: 2173
- uid: 4158
components:
- type: Transform
@@ -31283,31 +31295,10 @@ entities:
parent: 2173
- proto: ServiceTechFab
entities:
- - uid: 4936
- components:
- - type: Transform
- pos: 32.5,17.5
- parent: 2173
-- proto: SheetGlass
- entities:
- - uid: 4819
+ - uid: 2056
components:
- type: Transform
- pos: 32.45495,18.826864
- parent: 2173
-- proto: SheetPlastic
- entities:
- - uid: 4930
- components:
- - type: Transform
- pos: 32.61017,18.753946
- parent: 2173
-- proto: SheetSteel
- entities:
- - uid: 4931
- components:
- - type: Transform
- pos: 32.39142,18.68103
+ pos: 32.5,18.5
parent: 2173
- proto: SignAtmos
entities:
@@ -32907,11 +32898,26 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,24.5
parent: 2173
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 2173
- uid: 2043
components:
- type: Transform
pos: 10.5,21.5
parent: 2173
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 27.5,16.5
+ parent: 2173
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: 6.5,18.5
+ parent: 2173
- uid: 2410
components:
- type: Transform
@@ -33208,7 +33214,7 @@ entities:
- type: Transform
pos: 38.428623,15.602282
parent: 2173
-- proto: VendingMachineAstroVend
+- proto: VendingMachineAstroVendPOI
entities:
- uid: 774
components:
@@ -33243,7 +33249,7 @@ entities:
- type: Transform
pos: 4.5,13.5
parent: 2173
-- proto: VendingMachineEngivend
+- proto: VendingMachineEngivendPOI
entities:
- uid: 2418
components:
@@ -33285,14 +33291,14 @@ entities:
- type: Transform
pos: 32.5,15.5
parent: 2173
-- proto: VendingMachineMedical
+- proto: VendingMachineCiviMedPlus
entities:
- uid: 2413
components:
- type: Transform
pos: -54.5,8.5
parent: 2173
-- proto: VendingMachineSalvage
+- proto: VendingMachineSalvagePOI
entities:
- uid: 2021
components:
@@ -33306,21 +33312,21 @@ entities:
- type: Transform
pos: 39.5,18.5
parent: 2173
-- proto: VendingMachineTankDispenserEVA
+- proto: VendingMachineTankDispenserEVAPOI
entities:
- uid: 1053
components:
- type: Transform
pos: -31.5,6.5
parent: 2173
-- proto: VendingMachineVendomat
+- proto: VendingMachineVendomatPOI
entities:
- uid: 2670
components:
- type: Transform
pos: -43.5,5.5
parent: 2173
-- proto: VendingMachineYouTool
+- proto: VendingMachineYouToolPOI
entities:
- uid: 2417
components:
@@ -36816,11 +36822,6 @@ entities:
- type: Transform
pos: -28.5,13.5
parent: 2173
- - uid: 3054
- components:
- - type: Transform
- pos: 9.5,22.5
- parent: 2173
- proto: WardrobeGreyFilled
entities:
- uid: 2435
@@ -36864,6 +36865,11 @@ entities:
parent: 2173
- proto: WeaponCapacitorRecharger
entities:
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 2173
- uid: 2763
components:
- type: Transform
diff --git a/Resources/Maps/_NF/POI/arena.yml b/Resources/Maps/_NF/POI/arena.yml
index c80d6f630db..a340e0e0703 100644
--- a/Resources/Maps/_NF/POI/arena.yml
+++ b/Resources/Maps/_NF/POI/arena.yml
@@ -18904,7 +18904,7 @@ entities:
parent: 2
- type: Anchorable
delay: 999999
-- proto: VendingMachineMedical
+- proto: VendingMachineCiviMedPlus
entities:
- uid: 1551
components:
diff --git a/Resources/Maps/_NF/POI/courthouse.yml b/Resources/Maps/_NF/POI/courthouse.yml
index aa3144eac9b..51693c33e2e 100644
--- a/Resources/Maps/_NF/POI/courthouse.yml
+++ b/Resources/Maps/_NF/POI/courthouse.yml
@@ -7238,7 +7238,7 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
-- proto: VendingMachineWallMedical
+- proto: VendingMachineCiviMed
entities:
- uid: 1151
components:
diff --git a/Resources/Maps/_NF/POI/lodge.yml b/Resources/Maps/_NF/POI/lodge.yml
index 64c09706e51..eb17219c518 100644
--- a/Resources/Maps/_NF/POI/lodge.yml
+++ b/Resources/Maps/_NF/POI/lodge.yml
@@ -16591,14 +16591,14 @@ entities:
- Left: Forward
- Right: Forward
- Middle: Off
-- proto: VendingMachineAmmo
+- proto: VendingMachineAmmoPOI
entities:
- uid: 597
components:
- type: Transform
pos: 11.5,11.5
parent: 1
-- proto: VendingMachineAstroVend
+- proto: VendingMachineAstroVendPOI
entities:
- uid: 2052
components:
@@ -16650,14 +16650,14 @@ entities:
- type: Transform
pos: 16.5,11.5
parent: 1
-- proto: VendingMachineMedical
+- proto: VendingMachineCiviMedPlus
entities:
- uid: 2032
components:
- type: Transform
pos: -11.5,17.5
parent: 1
-- proto: VendingMachineSalvage
+- proto: VendingMachineSalvagePOI
entities:
- uid: 1162
components:
@@ -16669,7 +16669,7 @@ entities:
- type: Transform
pos: -11.5,4.5
parent: 1
-- proto: VendingMachineTankDispenserEVA
+- proto: VendingMachineTankDispenserEVAPOI
entities:
- uid: 385
components:
diff --git a/Resources/Maps/_NF/POI/mchobo.yml b/Resources/Maps/_NF/POI/mchobo.yml
new file mode 100644
index 00000000000..fbdd80876d3
--- /dev/null
+++ b/Resources/Maps/_NF/POI/mchobo.yml
@@ -0,0 +1,6854 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 6: FloorGlass
+ 77: FloorRGlass
+ 5: FloorSteelBurnt
+ 3: FloorSteelDamaged
+ 4: FloorSteelDirty
+ 107: FloorTechMaint
+ 115: FloorWhiteMini
+ 116: FloorWhiteMono
+ 124: Lattice
+ 125: Plating
+ 1: PlatingBurnt
+ 2: PlatingDamaged
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.5,-0.6875
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: AQAAAAAAAQAAAAAABAAAAAAAAgAAAAACAgAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACBAAAAAAABAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABBQAAAAABBAAAAAAABAAAAAAABAAAAAAAfQAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAABAwAAAAABAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABBQAAAAABBQAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAABAgAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAdAAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAdAAAAAACAgAAAAABdAAAAAABdAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAACAgAAAAABAQAAAAAAfQAAAAAAdAAAAAADAgAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAEBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAdAAAAAABdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAAgAAAAACfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAAgAAAAACAgAAAAAAAQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAAgAAAAABAgAAAAACAQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAACBQAAAAAABQAAAAABAQAAAAAAAQAAAAAABQAAAAABfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAfQAAAAAAAgAAAAABBQAAAAABfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAgAAAAACAgAAAAABfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABAAAAAAABQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAADfQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAABfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAawAAAAAAAQAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAABQAAAAAABQAAAAABAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAawAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAgAAAAABAQAAAAAAAgAAAAACBQAAAAABBQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAgAAAAACAgAAAAABAgAAAAABAgAAAAAAAgAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAfQAAAAAAAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABAAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAABAQAAAAAABAAAAAAAAQAAAAAAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAACawAAAAAAAQAAAAAAAgAAAAABAwAAAAACTQAAAAADAQAAAAAAAgAAAAABAwAAAAACBAAAAAAABQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAACawAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAATQAAAAADAgAAAAACBQAAAAABAgAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAawAAAAAABQAAAAABAQAAAAAABAAAAAAAAQAAAAAAAgAAAAABAgAAAAACBAAAAAAATQAAAAABAQAAAAAAAQAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAACAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfQAAAAAAawAAAAAAAQAAAAAAAQAAAAAAfQAAAAAABgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAABAgAAAAACAwAAAAABAQAAAAAAAQAAAAAABQAAAAABfQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAABAAAAAAAAQAAAAAABQAAAAABBAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAACAwAAAAAEAwAAAAAEBAAAAAAAAgAAAAABTQAAAAACAQAAAAAABAAAAAAABAAAAAAAAwAAAAACawAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAgAAAAABTQAAAAADAQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAwAAAAADawAAAAAAAgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAATQAAAAABTQAAAAAABAAAAAAABQAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAawAAAAAAAgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: fQAAAAAABgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 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: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ cleanable: True
+ color: '#85DAEBFF'
+ id: Blasto
+ decals:
+ 59: -6.9550385,12.0449705
+ - node:
+ color: '#A4610696'
+ id: CheckerNWSE
+ decals:
+ 55: 7,4
+ - node:
+ cleanable: True
+ color: '#4AB9A3FF'
+ id: Clandestine
+ decals:
+ 72: -6.606568,3.2095013
+ - node:
+ cleanable: True
+ color: '#5DC190FF'
+ id: Cyber
+ decals:
+ 68: 6.3080244,11.334811
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 0: 9,11
+ - node:
+ cleanable: True
+ color: '#FF5DCCFF'
+ id: Donk
+ decals:
+ 66: -1.4256788,-0.34560585
+ - node:
+ cleanable: True
+ color: '#F96363FF'
+ id: Gene
+ decals:
+ 67: -9.803357,-2.8254132
+ - node:
+ cleanable: True
+ color: '#F5DAA7FF'
+ id: Gib
+ decals:
+ 58: 5.007736,11.951612
+ - node:
+ cleanable: True
+ color: '#4AB9A3FF'
+ id: Newton
+ decals:
+ 74: 2.5866513,10.571531
+ - node:
+ cleanable: True
+ color: '#85DAEBFF'
+ id: Omni
+ decals:
+ 65: 7.9577494,3.002947
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: Osiron
+ decals:
+ 76: 5.045655,2.6219652
+ - node:
+ cleanable: True
+ color: '#F3A787FF'
+ id: Prima
+ decals:
+ 95: -1.3977542,3.3780653
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: Psyke
+ decals:
+ 96: 1.2575297,5.559182
+ - node:
+ cleanable: True
+ color: '#CA60AEFF'
+ id: Tunnel
+ decals:
+ 64: -2.529286,13.502137
+ - node:
+ cleanable: True
+ color: '#F3A787FF'
+ id: Waffle
+ decals:
+ 94: 2.2378523,1.7433231
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 12: 11,-1
+ 13: 11,-2
+ 14: 11,-3
+ 15: -11,-1
+ 16: -11,-2
+ 23: -13,-1
+ 24: -13,-2
+ 25: -13,-3
+ 26: 13,-1
+ 27: 13,-2
+ 28: 13,-3
+ 47: 5,14
+ 48: 1,14
+ 50: -11,-3
+ 54: -3,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 9: -8,-7
+ 10: -7,-7
+ 11: -6,-7
+ 29: -4,2
+ 32: 6,15
+ 41: -8,-9
+ 42: -7,-9
+ 43: -6,-9
+ 44: 6,-9
+ 45: 7,-9
+ 46: 8,-9
+ 52: -3,16
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 1: -11,-1
+ 2: -11,-2
+ 3: 11,-1
+ 4: 11,-2
+ 5: 11,-3
+ 17: 13,-3
+ 18: 13,-2
+ 19: 13,-1
+ 20: -13,-3
+ 21: -13,-2
+ 22: -13,-1
+ 30: 1,14
+ 31: 5,14
+ 49: -11,-3
+ 53: -3,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 6: -8,-7
+ 7: -7,-7
+ 8: -6,-7
+ 33: 6,15
+ 34: -4,2
+ 35: 8,-9
+ 36: 7,-9
+ 37: 6,-9
+ 38: -8,-9
+ 39: -7,-9
+ 40: -6,-9
+ 51: -3,16
+ - node:
+ cleanable: True
+ color: '#4AB9A3FF'
+ id: amyjon
+ decals:
+ 60: 1.9955573,-3.033001
+ - node:
+ cleanable: True
+ color: '#5EFDF7FF'
+ id: b
+ decals:
+ 79: 7.4721994,-3.205122
+ - node:
+ cleanable: True
+ color: '#C85353FF'
+ id: beepsky
+ decals:
+ 71: -4.7566547,8.7082615
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: biohazard
+ decals:
+ 87: 6.170536,8.736349
+ - node:
+ cleanable: True
+ color: '#5DC190FF'
+ id: body
+ decals:
+ 69: -2.9432287,-0.9892385
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: body
+ decals:
+ 70: -7.585581,-5.334134
+ - node:
+ cleanable: True
+ color: '#5FC9E7FF'
+ id: bottle
+ decals:
+ 88: 1.823868,11.493463
+ - node:
+ cleanable: True
+ color: '#F96363FF'
+ id: c
+ decals:
+ 82: 6.5753803,-2.7126794
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: carp
+ decals:
+ 84: -4.678934,-0.4259138
+ - node:
+ cleanable: True
+ color: '#8DD894FF'
+ id: corgi
+ decals:
+ 85: -5.783374,5.3281918
+ - node:
+ color: '#AB58A8FF'
+ id: cyka
+ decals:
+ 56: -9.005027,-0.10002446
+ - node:
+ cleanable: True
+ color: '#F3A787FF'
+ id: end
+ decals:
+ 61: 3.1368914,7.5267057
+ - node:
+ cleanable: True
+ color: '#8DD894FF'
+ id: engie
+ decals:
+ 89: -0.039014816,12.495938
+ - node:
+ cleanable: True
+ color: '#5FC9E7FF'
+ id: face
+ decals:
+ 86: -1.9961433,11.695769
+ - node:
+ cleanable: True
+ color: '#F5DAA7FF'
+ id: ghost
+ decals:
+ 73: 5.6013007,-0.5060599
+ - node:
+ cleanable: True
+ color: '#FDFE89FF'
+ id: h
+ decals:
+ 77: 6.9446583,-3.205122
+ - node:
+ cleanable: True
+ color: '#8DD894FF'
+ id: m
+ decals:
+ 81: 6.2061024,-2.730266
+ - node:
+ cleanable: True
+ color: '#4593A5FF'
+ id: matt
+ decals:
+ 57: -7.9617004,5.9941115
+ - node:
+ cleanable: True
+ color: '#F5DAA7FF'
+ id: o
+ decals:
+ 78: 7.208429,-3.1347733
+ - node:
+ cleanable: True
+ color: '#FF5DCCFF'
+ id: o
+ decals:
+ 80: 7.7535524,-3.205122
+ - node:
+ cleanable: True
+ color: '#F96363FF'
+ id: peace
+ decals:
+ 83: -3.5261693,4.855317
+ - node:
+ cleanable: True
+ color: '#5DC190FF'
+ id: prolizard
+ decals:
+ 62: -0.55499125,10.56416
+ - node:
+ cleanable: True
+ color: '#F96363FF'
+ id: revolution
+ decals:
+ 90: 8.514212,-1.2514956
+ - node:
+ cleanable: True
+ color: '#4593A5FF'
+ id: skull
+ decals:
+ 91: -0.5062866,-4.4347954
+ - node:
+ cleanable: True
+ color: '#CA60AEFF'
+ id: skull
+ decals:
+ 93: -8.4844055,11.855696
+ - node:
+ cleanable: True
+ color: '#F5DAA7FF'
+ id: skull
+ decals:
+ 92: -1.5029974,8.109605
+ - node:
+ cleanable: True
+ color: '#4593A5FF'
+ id: snake
+ decals:
+ 75: -7.028755,-2.8571744
+ - node:
+ cleanable: True
+ color: '#F96363FF'
+ id: stickman
+ decals:
+ 63: 4.083477,-3.4422233
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ -1,0:
+ 0: 56575
+ 0,1:
+ 0: 65535
+ -1,1:
+ 0: 57343
+ 0,2:
+ 0: 56591
+ -1,2:
+ 0: 65437
+ 0,3:
+ 0: 7967
+ -1,3:
+ 0: 65535
+ 0,4:
+ 1: 2
+ 2: 12
+ 1,0:
+ 0: 65535
+ 1,1:
+ 0: 56785
+ 1,2:
+ 0: 56653
+ 1,3:
+ 0: 19935
+ 1,-1:
+ 0: 65535
+ 1,4:
+ 2: 15
+ 2,0:
+ 0: 12343
+ 1: 128
+ 2,1:
+ 0: 560
+ 2,2:
+ 0: 4131
+ 2: 16384
+ 2,3:
+ 0: 273
+ 2: 17476
+ 2,-1:
+ 0: 32759
+ 2,4:
+ 2: 7
+ 3,-1:
+ 0: 13104
+ -4,-1:
+ 0: 34944
+ -3,-1:
+ 0: 64988
+ -3,0:
+ 1: 32
+ 0: 32908
+ -3,1:
+ 0: 34952
+ -3,2:
+ 0: 34952
+ -3,3:
+ 0: 2184
+ 1: 16384
+ -2,0:
+ 0: 62207
+ -2,1:
+ 0: 65535
+ -2,2:
+ 0: 65535
+ -2,3:
+ 0: 4095
+ -2,-1:
+ 0: 65535
+ -2,4:
+ 1: 8
+ -1,-1:
+ 0: 65535
+ -3,-2:
+ 1: 8256
+ 0: 34816
+ -2,-3:
+ 0: 28672
+ -2,-2:
+ 0: 65319
+ -1,-2:
+ 1: 16
+ 0: 61440
+ 0,-2:
+ 0: 61440
+ 1,-2:
+ 0: 65052
+ 1,-3:
+ 0: 49152
+ 2,-3:
+ 0: 4096
+ 2,-2:
+ 0: 13057
+ 1: 32832
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 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
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+- proto: AirCanister
+ entities:
+ - uid: 901
+ components:
+ - type: Transform
+ anchored: True
+ pos: 8.5,11.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: AirlockAssemblyCargo
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+- proto: AirlockAssemblyFreezer
+ entities:
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 1.5,12.5
+ parent: 1
+- proto: AirlockAssemblyGlass
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+- proto: AirlockCargo
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-0.5
+ parent: 1
+ - uid: 939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-1.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-2.5
+ parent: 1
+ - uid: 945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-6.5
+ parent: 1
+- proto: AirlockGlass
+ entities:
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-1.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-2.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -7.5,-8.5
+ parent: 1
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-2.5
+ parent: 1
+ - uid: 925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-1.5
+ parent: 1
+ - uid: 926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-0.5
+ parent: 1
+ - uid: 927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-0.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 578
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-2.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-0.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-1.5
+ parent: 1
+ - uid: 320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-8.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-8.5
+ parent: 1
+ - uid: 446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-8.5
+ parent: 1
+ - uid: 522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-8.5
+ parent: 1
+ - uid: 542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-2.5
+ parent: 1
+ - uid: 551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-0.5
+ parent: 1
+ - uid: 552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-1.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-8.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 5.5,16.5
+ parent: 1
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 6.5,16.5
+ parent: 1
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 8.5,16.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 9.5,16.5
+ parent: 1
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1
+ - uid: 1047
+ components:
+ - type: Transform
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: -10.5,-4.5
+ parent: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: -9.5,-6.5
+ parent: 1
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 1
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 1
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 1
+- proto: Beaker
+ entities:
+ - uid: 130
+ components:
+ - type: Transform
+ pos: -6.6027393,8.254347
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ pos: -6.2277393,8.129347
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ pos: -6.6808643,8.691847
+ parent: 1
+- proto: BigBox
+ entities:
+ - uid: 894
+ components:
+ - type: Transform
+ pos: -6.483196,0.5249231
+ parent: 1
+- proto: BiomassReclaimer
+ entities:
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+- proto: Blunt
+ entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -5.7665076,7.6190767
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ pos: -6.2040076,7.2284517
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.7977576,7.2440767
+ parent: 1
+ - uid: 439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.4267225,2.3591065
+ parent: 1
+ - uid: 685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5517225,2.3591065
+ parent: 1
+ - uid: 861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.3798475,2.6091065
+ parent: 1
+ - uid: 862
+ components:
+ - type: Transform
+ pos: -1.5829725,2.8278565
+ parent: 1
+- proto: Bonfire
+ entities:
+ - uid: 525
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+- proto: BrokenBottle
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.675235,1.76089
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.81586,1.29214
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.28461,1.557765
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.59711,1.69839
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.3267446,-3.7776022
+ parent: 1
+ - uid: 433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5923696,-2.6526022
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.7241392,2.5564156
+ parent: 1
+ - uid: 626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.3552984,-2.6213522
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 1.0740484,-3.9182272
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5984693,-3.5744772
+ parent: 1
+ - uid: 1026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.4921689,7.3721914
+ parent: 1
+ - uid: 1027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.7109189,3.3721914
+ parent: 1
+ - uid: 1028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.632794,7.2159414
+ parent: 1
+ - uid: 1030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.6952939,6.0440664
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -6.5,-4.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ pos: -0.5,12.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 1
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 348
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 408
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 1
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 430
+ components:
+ - type: Transform
+ pos: -6.5,-6.5
+ parent: 1
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ pos: -4.5,7.5
+ parent: 1
+ - uid: 459
+ components:
+ - type: Transform
+ pos: -4.5,8.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: -4.5,9.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: -4.5,10.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 1
+ - uid: 467
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 7.5,0.5
+ parent: 1
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 6.5,0.5
+ parent: 1
+ - uid: 504
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 1
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 507
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 512
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 513
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 514
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 515
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 516
+ components:
+ - type: Transform
+ pos: -6.5,0.5
+ parent: 1
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -7.5,0.5
+ parent: 1
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 1
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 612
+ components:
+ - type: Transform
+ pos: -7.5,-0.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 1
+ - uid: 614
+ components:
+ - type: Transform
+ pos: -8.5,-1.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 1
+ - uid: 616
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 619
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 1
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 1
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 4.5,-3.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 836
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ pos: -6.5,9.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: -7.5,9.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -8.5,13.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -4.5,10.5
+ parent: 1
+ - uid: 183
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,16.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,9.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,16.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,16.5
+ parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ pos: -8.5,7.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 1
+ - uid: 824
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,11.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,10.5
+ parent: 1
+ - uid: 869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,3.5
+ parent: 1
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,16.5
+ parent: 1
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+- proto: ChemistryHotplate
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -6.5,6.5
+ parent: 1
+- proto: CigaretteSpent
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.047888,8.756269
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.9708767,8.271894
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.0646267,8.506269
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.422888,8.521894
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.438513,8.146894
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.610388,8.318769
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4865017,6.3343945
+ parent: 1
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.079138,8.334394
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4083767,6.6468945
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.045166,7.4601307
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.482666,8.288256
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.732666,7.9601307
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.6840506,6.4913807
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.607666,5.7570057
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.157263,5.7093945
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.3615017,7.5218945
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.2365017,7.6781445
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 7.342041,5.9132557
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 7.388916,6.8195057
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 7.607666,7.0070057
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.641638,6.3812695
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.154541,7.4132557
+ parent: 1
+ - uid: 222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.295166,7.5538807
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.670166,7.7257557
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.795166,8.366381
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.388916,8.288256
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 7.654541,6.6320057
+ parent: 1
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 7.732666,6.1632557
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 9.657339,5.7570057
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 9.266714,5.5695057
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 9.766714,5.9132557
+ parent: 1
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 9.657339,5.9757557
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.0958767,6.5843945
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.9028006,6.5851307
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.7309256,6.7882557
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.2990017,6.4125195
+ parent: 1
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.6427517,6.4750195
+ parent: 1
+ - uid: 352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.094763,6.3187695
+ parent: 1
+ - uid: 375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.829138,5.4437695
+ parent: 1
+ - uid: 380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.141638,8.834394
+ parent: 1
+ - uid: 381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.235388,5.9437695
+ parent: 1
+ - uid: 386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5646267,8.506269
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.532263,5.7718945
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.1271267,5.8812695
+ parent: 1
+ - uid: 533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5021267,5.7875195
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 9.735464,5.5382557
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 7.7510896,8.647631
+ parent: 1
+ - uid: 600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.532263,5.4593945
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.532263,5.2250195
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.235388,5.0062695
+ parent: 1
+ - uid: 605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.907263,5.0375195
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.079138,5.2875195
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.297888,5.4593945
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.172888,8.193769
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.2990017,6.3031445
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.8403006,6.3351307
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.3771267,6.4593945
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5121756,6.3663807
+ parent: 1
+ - uid: 651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.3771267,8.490644
+ parent: 1
+ - uid: 655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.3246756,6.3038807
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 7.6729646,8.897631
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 7.4073396,7.8820057
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 9.454214,8.757006
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 9.376089,9.038256
+ parent: 1
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 9.594839,8.413256
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 7.2823396,7.5538807
+ parent: 1
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.157263,5.8812695
+ parent: 1
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 9.188589,8.507006
+ parent: 1
+ - uid: 683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.7208767,6.8187695
+ parent: 1
+ - uid: 684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.2208767,6.7406445
+ parent: 1
+ - uid: 688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.3715506,6.8038807
+ parent: 1
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.388916,6.6320057
+ parent: 1
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.3246756,6.8976307
+ parent: 1
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 6.1885896,8.241381
+ parent: 1
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 7.2979646,8.616381
+ parent: 1
+ - uid: 752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.1740017,6.5218945
+ parent: 1
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 6.6260896,8.678881
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 9.438589,8.819506
+ parent: 1
+ - uid: 795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.782263,6.3812695
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.735388,5.7562695
+ parent: 1
+ - uid: 846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.360388,5.6937695
+ parent: 1
+ - uid: 930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.442237,0.13106656
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ pos: -0.5513623,-0.15018344
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.7991714,0.69356656
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.855571,0.72481656
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.803701,4.5998163
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ pos: -7.6765633,9.2665
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ pos: -5.7390637,8.375875
+ parent: 1
+ - uid: 944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.1296887,8.594625
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.0621243,11.404356
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.3277493,13.123106
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.1089993,13.998106
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.047250748,14.576231
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.76524925,12.216856
+ parent: 1
+ - uid: 951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.0152493,9.888731
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.2808743,13.669981
+ parent: 1
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 3.391551,11.124602
+ parent: 1
+ - uid: 954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.500926,11.030852
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.985301,12.874602
+ parent: 1
+ - uid: 956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.516551,12.171477
+ parent: 1
+ - uid: 957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.45405102,7.396597
+ parent: 1
+ - uid: 958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.407176,5.943472
+ parent: 1
+ - uid: 963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.49907398,3.5684717
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.422801,6.599722
+ parent: 1
+ - uid: 965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.454051,8.474722
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ pos: -0.639699,8.052847
+ parent: 1
+ - uid: 967
+ components:
+ - type: Transform
+ pos: -0.530324,4.943472
+ parent: 1
+ - uid: 968
+ components:
+ - type: Transform
+ pos: -1.389699,3.3340967
+ parent: 1
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 1.532176,4.599722
+ parent: 1
+ - uid: 970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.813426,5.380972
+ parent: 1
+ - uid: 971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.844676,4.630972
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.157176,7.193472
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.407176,7.990347
+ parent: 1
+ - uid: 975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.530324,4.505972
+ parent: 1
+ - uid: 976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.37407398,7.193472
+ parent: 1
+ - uid: 977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.49497318,6.755972
+ parent: 1
+ - uid: 978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.8813658,0.44446635
+ parent: 1
+ - uid: 979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.6967592,0.39759135
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.7963638,-3.9474058
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.26,-2.619281
+ parent: 1
+ - uid: 988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.8394365,0.72446895
+ parent: 1
+ - uid: 996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.170907,0.84946895
+ parent: 1
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: -5.781123,11.494265
+ parent: 1
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: -7.3875966,12.725374
+ parent: 1
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: -6.68421,13.780611
+ parent: 1
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: -8.513013,12.848486
+ parent: 1
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: -7.756874,14.551413
+ parent: 1
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: -6.297345,14.551413
+ parent: 1
+ - uid: 1093
+ components:
+ - type: Transform
+ pos: -3.7478323,15.448365
+ parent: 1
+- proto: ComputerShipyardScrap
+ entities:
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -3.5,15.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ ShipyardConsole-targetId: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: ComputerTabletopBroken
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 1
+- proto: ComputerTabletopPowerMonitoring
+ entities:
+ - uid: 317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,9.5
+ parent: 1
+- proto: DefibrillatorCabinetOpen
+ entities:
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,2.5
+ parent: 1
+- proto: DefibrillatorEmpty
+ entities:
+ - uid: 206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4846663,7.4399996
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1
+- proto: DisposalJunction
+ entities:
+ - uid: 272
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,5.5
+ parent: 1
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,6.5
+ parent: 1
+ - uid: 376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+- proto: DisposalMachineFrame
+ entities:
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 219
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,4.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+- proto: DisposalPipeBroken
+ entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 7.5,12.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,5.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 1
+- proto: DisposalTrunk
+ entities:
+ - uid: 248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 367
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,5.5
+ parent: 1
+ - uid: 934
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -4.5,1.5
+ parent: 1
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 1
+- proto: DisposalYJunction
+ entities:
+ - uid: 333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,1.5
+ parent: 1
+- proto: DrinkBottlePatron
+ entities:
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.671588,0.660843
+ parent: 1
+- proto: DrinkBottleRum
+ entities:
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.48466218,2.551468
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.45283782,3.270218
+ parent: 1
+- proto: DrinkBottleWhiskey
+ entities:
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: -4.5396256,12.778627
+ parent: 1
+ - uid: 1025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.53849936,15.825502
+ parent: 1
+- proto: DrinkCartonOrange
+ entities:
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 0.39033782,3.707718
+ parent: 1
+ - uid: 997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.17158782,-2.714157
+ parent: 1
+ - uid: 999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.703412,-2.354782
+ parent: 1
+- proto: EmergencyLight
+ entities:
+ - uid: 226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,11.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ - uid: 982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-7.5
+ parent: 1
+ - uid: 984
+ components:
+ - type: Transform
+ pos: -11.5,-0.5
+ parent: 1
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+- proto: ExtinguisherCabinetOpen
+ entities:
+ - uid: 159
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,10.5
+ parent: 1
+- proto: FireAlarm
+ entities:
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 646
+ - 8
+ - 471
+- proto: Firelock
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 1.5,14.5
+ parent: 1
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1
+- proto: FloodlightBroken
+ entities:
+ - uid: 282
+ components:
+ - type: Transform
+ pos: -5.4990225,-1.2865016
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 6.565043,0.4530797
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 2.5418053,5.5728273
+ parent: 1
+- proto: FoodBowlBigTrash
+ entities:
+ - uid: 437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.16617322,2.43319
+ parent: 1
+ - uid: 453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.17757678,2.542565
+ parent: 1
+- proto: FoodFrozenSnowconeTrash
+ entities:
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: -1.736228,13.864145
+ parent: 1
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: -7.328153,12.105415
+ parent: 1
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: -7.5919237,3.3318362
+ parent: 1
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 1.3134371,-0.06251001
+ parent: 1
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: -5.3519535,-4.5448537
+ parent: 1
+ - uid: 1085
+ components:
+ - type: Transform
+ pos: 5.3232183,-1.256032
+ parent: 1
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 6.378297,6.851166
+ parent: 1
+- proto: FoodPlateTrash
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: -7.75336,1.9811897
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -8.487735,1.8093147
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.643985,1.4811897
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ pos: -8.28461,1.5436897
+ parent: 1
+- proto: FoodTinBeansTrash
+ entities:
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -5.506468,-5.4502707
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.35392892,-2.3051271
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.452832,-0.64887726
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.0054461,2.4761229
+ parent: 1
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.374707,-4.414502
+ parent: 1
+- proto: FoodTinMRETrash
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.600452,-1.7520173
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -5.693968,-2.3252707
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.287952,-1.2051423
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -7.696374,1.274397
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.551283,0.63860774
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -1.0221233,2.6542327
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.62882817,-2.7676423
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.801283,-0.62701726
+ parent: 1
+- proto: FoodTinPeachesMaintTrash
+ entities:
+ - uid: 242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.497925,0.44487274
+ parent: 1
+ - uid: 243
+ components:
+ - type: Transform
+ pos: 0.93872404,-2.2738771
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -5.5066376,-4.836377
+ parent: 1
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -8.201614,1.4971204
+ parent: 1
+ - uid: 705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.20440567,2.4419537
+ parent: 1
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeBroken
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 1
+- proto: GasPipeFourway
+ entities:
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 6.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 661
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 832
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPressurePump
+ entities:
+ - uid: 744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 238
+ components:
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 72
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-7.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,5.5
+ parent: 1
+ - uid: 413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 1
+ - uid: 422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 1
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 1
+ - uid: 912
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 1
+- proto: GrilleDiagonal
+ entities:
+ - uid: 529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 1
+- proto: InflatableDoor
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -10.5,-2.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 11.5,-0.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -10.5,-1.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 8.5,-6.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -7.5,-6.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 5.5,14.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ pos: -2.5,16.5
+ parent: 1
+- proto: InflatableWall
+ entities:
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -0.5,16.5
+ parent: 1
+- proto: LargeBeaker
+ entities:
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -5.3839893,8.535597
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ pos: -5.8214893,8.801222
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -6.2433643,8.582472
+ parent: 1
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 10.5,15.5
+ parent: 1
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 10.5,16.5
+ parent: 1
+ - uid: 457
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+- proto: Mattress
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -8.5,-4.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -6.5,-1.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -8.5,6.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -7.5,13.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 6.5,-0.5
+ parent: 1
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ pos: -8.5,7.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ pos: -4.5,11.5
+ parent: 1
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 1
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: Transform
+ pos: -6.5,-0.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 466
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 559
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 9.5,0.5
+ parent: 1
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 9.5,1.5
+ parent: 1
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 689
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 1
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 711
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 713
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 723
+ components:
+ - type: Transform
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 1
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: -8.5,8.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 1
+ - uid: 860
+ components:
+ - type: Transform
+ pos: -6.5,11.5
+ parent: 1
+- proto: Mirror
+ entities:
+ - uid: 989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1
+- proto: MysteryFigureBoxTrash
+ entities:
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 2.7382228,3.8079877
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 2.6444728,3.5736127
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 2.7225978,3.3079877
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 2.3319728,3.4954877
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 2.2069728,3.2611127
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 5.2209473,-1.1625972
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 5.363201,-2.5375972
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 5.785076,-2.5844722
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 5.6740723,-1.1469722
+ parent: 1
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 5.706951,-2.2407222
+ parent: 1
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 5.2209473,-1.4907222
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 5.363201,-2.1157222
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 2.3319728,3.8392377
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 5.7053223,-1.3969722
+ parent: 1
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 0.2664075,6.807229
+ parent: 1
+ - uid: 687
+ components:
+ - type: Transform
+ pos: 0.6726575,6.775979
+ parent: 1
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 0.6570325,6.338479
+ parent: 1
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 0.2664075,6.104104
+ parent: 1
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 0.2820325,6.479104
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 0.5320325,6.525979
+ parent: 1
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 0.83872986,5.979104
+ parent: 1
+ - uid: 874
+ components:
+ - type: Transform
+ pos: -5.697736,9.799101
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: -5.244611,9.752226
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ pos: -5.400861,9.392851
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ pos: -5.713361,9.486601
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ pos: -3.64881,13.907734
+ parent: 1
+ - uid: 883
+ components:
+ - type: Transform
+ pos: -3.226935,13.860859
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: -3.383185,13.501484
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: -3.789435,13.735859
+ parent: 1
+ - uid: 888
+ components:
+ - type: Transform
+ pos: -3.820685,13.532734
+ parent: 1
+- proto: NoticeBoardNF
+ entities:
+ - uid: 872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,9.5
+ parent: 1
+- proto: PillSpaceDrugs
+ entities:
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -5.8839893,7.863722
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -5.5558643,8.129347
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -5.3527393,8.035597
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ pos: -5.7121143,8.191847
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ pos: -5.8527393,7.848097
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -5.2433643,8.269972
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -5.4777393,7.879347
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ pos: -5.6964893,7.691847
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: -5.3058643,7.691847
+ parent: 1
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -5.4308643,7.691847
+ parent: 1
+ - uid: 562
+ components:
+ - type: Transform
+ pos: -5.3839893,7.566847
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: -5.9308643,8.082472
+ parent: 1
+- proto: PortableGeneratorHyperPacmanShuttle
+ entities:
+ - uid: 959
+ components:
+ - type: Transform
+ pos: -8.5,14.5
+ parent: 1
+ - type: FuelGenerator
+ targetPower: 10000
+ on: False
+ - type: MaterialStorage
+ storage:
+ Bananium: 2000
+ - type: Physics
+ bodyType: Static
+ - type: InsertingMaterialStorage
+- proto: PosterContrabandEAT
+ entities:
+ - uid: 345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+- proto: PosterContrabandSmoke
+ entities:
+ - uid: 725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,7.5
+ parent: 1
+- proto: PosterContrabandSpaceUp
+ entities:
+ - uid: 742
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 1
+- proto: PoweredlightEmpty
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,5.5
+ parent: 1
+ - uid: 537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-7.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-2.5
+ parent: 1
+ - uid: 544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-2.5
+ parent: 1
+ - uid: 560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-7.5
+ parent: 1
+- proto: PoweredlightSodium
+ entities:
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-4.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,8.5
+ parent: 1
+ - uid: 403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 1
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 302
+ components:
+ - type: Transform
+ pos: -7.5,14.5
+ parent: 1
+- proto: PrefilledSyringe
+ entities:
+ - uid: 895
+ components:
+ - type: Transform
+ pos: -5.123821,-2.3247318
+ parent: 1
+ - uid: 902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.60532665,-2.6059818
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.2992396,-1.1216068
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.180202,0.39401817
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.055202,-0.07473183
+ parent: 1
+ - uid: 915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.6068498,2.5421815
+ parent: 1
+- proto: PuddleVomit
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 9.5,5.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 694
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 1
+ - uid: 701
+ components:
+ - type: Transform
+ pos: -3.5,16.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ pos: -1.5,16.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 0.5,16.5
+ parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 9.5,15.5
+ parent: 1
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 5.5,-7.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 9.5,-7.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ pos: -11.5,-3.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -11.5,0.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+- proto: ReinforcedWindowDiagonal
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,16.5
+ parent: 1
+ - uid: 528
+ components:
+ - type: Transform
+ pos: -4.5,16.5
+ parent: 1
+- proto: ShardGlass
+ entities:
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.205751,-0.42699623
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.093823,-4.551996
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.3103466,-0.34900165
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.6540966,-0.73962665
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5621076,8.217713
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 7.4665966,-0.44275165
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.542706,8.638382
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.8637176,0.38550377
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 2.1987824,-3.9582462
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.390232,5.7958384
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.49583,7.5758824
+ parent: 1
+ - uid: 279
+ components:
+ - type: Transform
+ pos: -4.5036745,-2.4896266
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5817995,-1.5365016
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.3495011,-1.4271266
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.4276261,-1.6771266
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.033876,-2.4426212
+ parent: 1
+ - uid: 445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.6620011,-1.5677516
+ parent: 1
+ - uid: 449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.392297,-2.0676212
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.203624,3.776889
+ parent: 1
+ - uid: 1008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.375499,7.1986685
+ parent: 1
+ - uid: 1011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.000499,9.2611685
+ parent: 1
+ - uid: 1013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.687999,8.4642935
+ parent: 1
+ - uid: 1015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.724594,14.850584
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 0.44728088,14.475584
+ parent: 1
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: -0.083969116,12.881834
+ parent: 1
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: -2.599594,14.006834
+ parent: 1
+- proto: ShuttersFrame
+ entities:
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+- proto: SignCargo
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+- proto: SignDirectionalDorms
+ entities:
+ - uid: 547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,0.5
+ parent: 1
+ - uid: 555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-6.5
+ parent: 1
+ - uid: 557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 1
+ - uid: 558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
+ parent: 1
+- proto: SignDirectionalJanitor
+ entities:
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
+ parent: 1
+- proto: SignDirectionalWash
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,4.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4667277,6.32853
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.4771442,7.3422375
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,7.5
+ parent: 1
+- proto: SpawnDungeonRandomHumanCorpse
+ entities:
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: -7.539418,13.484325
+ parent: 1
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 9.556423,5.511012
+ parent: 1
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 7.5204787,13.4464855
+ parent: 1
+- proto: SpawnMobBearSalvage
+ entities:
+ - uid: 1094
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+- proto: SpawnMobCockroach
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 321
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: Transform
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 1
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -7.5,-7.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+- proto: SpawnMobKangarooSalvage
+ entities:
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 1
+- proto: SpawnMobMouse
+ entities:
+ - uid: 124
+ components:
+ - type: Transform
+ pos: -8.5,-0.5
+ parent: 1
+ - uid: 390
+ components:
+ - type: Transform
+ pos: -11.5,-1.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 7.5,-7.5
+ parent: 1
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 9.5,3.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+- proto: SpawnMobSpiderSalvage
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ pos: -7.5,5.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 1
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+- proto: SpiderWeb
+ entities:
+ - uid: 68
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-7.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-1.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-2.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,3.5
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,3.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 7.5,14.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,9.5
+ parent: 1
+ - uid: 596
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 1
+ - uid: 634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 1
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,0.5
+ parent: 1
+ - uid: 708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-2.5
+ parent: 1
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+ - uid: 729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 1
+ - uid: 730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,12.5
+ parent: 1
+ - uid: 743
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,1.5
+ parent: 1
+ - uid: 757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 873
+ components:
+ - type: Transform
+ pos: -6.5,14.5
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -8.5,11.5
+ parent: 1
+- proto: Syringe
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.4855175,9.536195
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5784163,6.783909
+ parent: 1
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 9.5167675,6.299534
+ parent: 1
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.564487,5.7314057
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.220737,9.43453
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.642612,5.4189057
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 6.6409163,6.424534
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.548862,6.3095307
+ parent: 1
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.392612,5.3407807
+ parent: 1
+ - uid: 676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.314487,5.7626557
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.439487,5.3564057
+ parent: 1
+ - uid: 678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.455112,5.4345307
+ parent: 1
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 6.470737,6.6064057
+ parent: 1
+ - uid: 682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.798862,5.7939057
+ parent: 1
+- proto: TableCounterMetal
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+- proto: TableFrame
+ entities:
+ - uid: 133
+ components:
+ - type: Transform
+ pos: -5.5,6.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -8.5,1.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ pos: -8.5,9.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,6.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -7.5,10.5
+ parent: 1
+ - uid: 399
+ components:
+ - type: Transform
+ pos: -8.5,10.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,7.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ pos: -5.5,8.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: -6.5,6.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: -6.5,8.5
+ parent: 1
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 1
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 9.5,6.5
+ parent: 1
+- proto: TrashBananaPeel
+ entities:
+ - uid: 1076
+ components:
+ - type: Transform
+ pos: -8.433495,13.586496
+ parent: 1
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: -5.5144396,12.460911
+ parent: 1
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: -6.534351,2.348336
+ parent: 1
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 4.5521736,14.497027
+ parent: 1
+- proto: TrashNapkin
+ entities:
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 9.12499,8.823985
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 9.212915,8.560176
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 9.494268,9.439539
+ parent: 1
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 9.12003,6.22535
+ parent: 1
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 9.155199,6.0494766
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 7.423523,8.177539
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 6.614629,8.388586
+ parent: 1
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 7.3531847,6.4363966
+ parent: 1
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 7.6345377,5.6977315
+ parent: 1
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 6.368443,6.647444
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 6.250475,7.2805867
+ parent: 1
+- proto: WallReinforced
+ entities:
+ - uid: 203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,15.5
+ parent: 1
+ - uid: 297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-6.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,12.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,9.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,7.5
+ parent: 1
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -4.5,-8.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,5.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,4.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,2.5
+ parent: 1
+ - uid: 432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 1
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
+ parent: 1
+ - uid: 623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 1
+ - uid: 709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-5.5
+ parent: 1
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-4.5
+ parent: 1
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 1
+ - uid: 732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-3.5
+ parent: 1
+ - uid: 735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,0.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: -4.5,15.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 1
+ - uid: 908
+ components:
+ - type: Transform
+ pos: -12.5,0.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 1
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,0.5
+ parent: 1
+ - uid: 435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-4.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-6.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,1.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-4.5
+ parent: 1
+ - uid: 595
+ components:
+ - type: Transform
+ pos: -10.5,1.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ pos: -4.5,-5.5
+ parent: 1
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 1
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 1
+- proto: WallReinforcedRust
+ entities:
+ - uid: 760
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ pos: -9.5,3.5
+ parent: 1
+ - uid: 765
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+ - uid: 767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,15.5
+ parent: 1
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 1
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -4.5,-6.5
+ parent: 1
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 771
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1
+ - uid: 772
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -6.5,15.5
+ parent: 1
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 1
+ - uid: 775
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 1
+ - uid: 776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,13.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,14.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -9.5,1.5
+ parent: 1
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -12.5,-3.5
+ parent: 1
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 13.5,0.5
+ parent: 1
+ - uid: 960
+ components:
+ - type: Transform
+ pos: -9.5,11.5
+ parent: 1
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -9.5,10.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: -9.5,8.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 0.5,9.5
+ parent: 1
+- proto: WallSolidRust
+ entities:
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 1
+ - uid: 786
+ components:
+ - type: Transform
+ pos: -2.5,9.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ pos: -1.5,9.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 1.5,9.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: -8.5,2.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 1
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 9.5,7.5
+ parent: 1
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 842
+ components:
+ - type: Transform
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 854
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 857
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 1
+- proto: WarpPointNFMcHobo
+ entities:
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: WindoorAssembly
+ entities:
+ - uid: 983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,6.5
+ parent: 1
+...
diff --git a/Resources/Maps/_NF/POI/nfsd.yml b/Resources/Maps/_NF/POI/nfsd.yml
index fac69ebcbc4..8c9e2fb246b 100644
--- a/Resources/Maps/_NF/POI/nfsd.yml
+++ b/Resources/Maps/_NF/POI/nfsd.yml
@@ -15463,7 +15463,7 @@ entities:
- Left: Forward
- Right: Forward
- Middle: Off
-- proto: VendingMachineAmmo
+- proto: VendingMachineAmmoPOI
entities:
- uid: 594
components:
@@ -15512,7 +15512,7 @@ entities:
- type: Transform
pos: 1.5,-8.5
parent: 1
-- proto: VendingMachineMedical
+- proto: VendingMachineCiviMedPlus
entities:
- uid: 2269
components:
diff --git a/Resources/Maps/_NF/POI/trade.yml b/Resources/Maps/_NF/POI/trade.yml
index 4f1dfb8b32c..397c6960d42 100644
--- a/Resources/Maps/_NF/POI/trade.yml
+++ b/Resources/Maps/_NF/POI/trade.yml
@@ -22742,7 +22742,7 @@ entities:
- type: Transform
pos: 60.5,-18.5
parent: 1
-- proto: LessLethalVendingMachine
+- proto: LessLethalVendingMachinePOI
entities:
- uid: 2598
components:
@@ -28206,7 +28206,7 @@ entities:
- type: Transform
pos: 53.5,-1.5
parent: 1
-- proto: VendingMachineAstroVend
+- proto: VendingMachineAstroVendPOI
entities:
- uid: 5717
components:
@@ -28276,7 +28276,7 @@ entities:
- type: Transform
pos: 35.5,3.5
parent: 1
-- proto: VendingMachineEngivend
+- proto: VendingMachineEngivendPOI
entities:
- uid: 5546
components:
@@ -28339,7 +28339,7 @@ entities:
- type: Transform
pos: -12.5,7.5
parent: 1
-- proto: VendingMachineTankDispenserEVA
+- proto: VendingMachineTankDispenserEVAPOI
entities:
- uid: 3727
components:
@@ -28360,7 +28360,7 @@ entities:
- type: Transform
pos: 69.5,-8.5
parent: 1
-- proto: VendingMachineYouTool
+- proto: VendingMachineYouToolPOI
entities:
- uid: 1491
components:
diff --git a/Resources/Maps/_NF/Shuttles/Bus/publicts.yml b/Resources/Maps/_NF/Shuttles/Bus/publicts.yml
index f43aa385124..a77bfbfb66e 100644
--- a/Resources/Maps/_NF/Shuttles/Bus/publicts.yml
+++ b/Resources/Maps/_NF/Shuttles/Bus/publicts.yml
@@ -678,7 +678,7 @@ entities:
parent: 8756
- type: Physics
bodyType: Static
-- proto: PacifiedZone10
+- proto: PacifiedZonePanicBunker10
entities:
- uid: 84
components:
diff --git a/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml b/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml
index d74b98ef648..0e36b1cb017 100644
--- a/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml
+++ b/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml
@@ -4,15 +4,22 @@ meta:
tilemap:
0: Space
14: FloorBar
+ 7: FloorBlue
+ 5: FloorBoxing
+ 3: FloorBrokenWood
30: FloorDark
+ 1: FloorDarkDiagonal
33: FloorDarkHerringbone
+ 2: FloorDarkMono
37: FloorDarkPavement
45: FloorFreezer
46: FloorGlass
61: FloorKitchen
+ 6: FloorLaundry
63: FloorLino
65: FloorMetalDiamond
90: FloorSteel
+ 4: FloorSteelDiagonal
97: FloorSteelDirty
104: FloorSteelPavementVertical
105: FloorTechMaint
@@ -34,51 +41,51 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: HgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABLgAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADLgAAAAAAHgAAAAABHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAABLgAAAAAAHgAAAAACHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADLgAAAAAAHgAAAAADHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAALgAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAAALgAAAAAAHgAAAAABHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAABLgAAAAAAHgAAAAACHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAADHgAAAAACLgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAHgAAAAAALgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAegAAAAAAHgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAADHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADegAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABegAAAAAAHgAAAAADHgAAAAAA
+ tiles: aAAAAAABHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAADLgAAAAABaAAAAAADHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAACDgAAAAAADgAAAAABHgAAAAAAHgAAAAAALgAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAACDgAAAAABDgAAAAAAHgAAAAABHgAAAAABLgAAAAABHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAABDgAAAAABDgAAAAAAHgAAAAABHgAAAAADLgAAAAACHgAAAAADHgAAAAABHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAABDgAAAAADDgAAAAAAHgAAAAABHgAAAAACLgAAAAACHgAAAAACHgAAAAABHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAADDgAAAAACegAAAAAAHgAAAAAAHgAAAAABLgAAAAABHgAAAAACHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAAADgAAAAACDgAAAAACegAAAAAAHgAAAAABLgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAABDgAAAAACDgAAAAABAgAAAAABHgAAAAABLgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAAAHgAAAAADLgAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAAAegAAAAAAHgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADegAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABegAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAABAgAAAAAAHgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAADegAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAABdwAAAAADegAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAegAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAAAegAAAAAAdwAAAAACdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAIQAAAAACdwAAAAACdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAegAAAAAALgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAegAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAABAwAAAAAFdwAAAAACdwAAAAAAAgAAAAACLgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAACegAAAAAAegAAAAAAAgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIQAAAAACdwAAAAABdwAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: HgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAADdgAAAAADdgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAdgAAAAADdgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACLQAAAAAAHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADLQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADdgAAAAACLgAAAAACHgAAAAABHgAAAAABAQAAAAACAQAAAAACAQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAdgAAAAAAdgAAAAAAHgAAAAADHgAAAAACAQAAAAABAQAAAAAAAQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABAQAAAAACAQAAAAABAQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAegAAAAAAAgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAADegAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADegAAAAAAegAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAABQAAAAABegAAAAAAegAAAAAABQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAABQAAAAADBQAAAAADegAAAAAABQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAABQAAAAAAegAAAAAABQAAAAABBQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: LgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAABHgAAAAABHgAAAAAAdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADdwAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAABdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: LgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAABegAAAAAABgAAAAAABgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABdwAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAABdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAABHgAAAAABHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABaQAAAAAAegAAAAAAWgAAAAABWgAAAAADHgAAAAACHgAAAAADHgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAYQAAAAAAWgAAAAADHgAAAAAAHgAAAAADLgAAAAAAAAAAAAAAHgAAAAAAHgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADLgAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABLgAAAAAAHgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAALgAAAAAAHgAAAAADLgAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACLgAAAAAAHgAAAAAALgAAAAAALgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABLgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACLgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACLgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADLgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABLgAAAAAALgAAAAAALgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAQAAAAACAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAHgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAABWgAAAAABegAAAAAAHgAAAAACHgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAWgAAAAACWgAAAAADAgAAAAABHgAAAAABLgAAAAADAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADLgAAAAADegAAAAAAegAAAAAAHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAABdwAAAAADegAAAAAAHgAAAAACLgAAAAACegAAAAAALgAAAAABLgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAAwAAAAAAAgAAAAABHgAAAAAALgAAAAAAegAAAAAALgAAAAABLgAAAAABegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAdwAAAAAAdwAAAAACHgAAAAADHgAAAAABLgAAAAADegAAAAAALgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAACAgAAAAACegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACLgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADLgAAAAACAgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADLgAAAAACegAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAADLgAAAAACegAAAAAAHgAAAAACHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAALgAAAAACHgAAAAAALgAAAAADLgAAAAACLgAAAAAAaAAAAAADHgAAAAADHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADLgAAAAACLgAAAAABLgAAAAAB
version: 6
0,-2:
ind: 0,-2
- tiles: HgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAABHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABegAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAADegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAADegAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAegAAAAAAHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAADegAAAAAAHgAAAAABHgAAAAACHgAAAAADAAAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAACQQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAADegAAAAAAHgAAAAAAHgAAAAABHgAAAAACeQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAADegAAAAAAHgAAAAAAHgAAAAABHgAAAAABegAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAQQAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAACdgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAADdgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAABdgAAAAAALgAAAAAALgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACdgAAAAABLgAAAAAALgAAAAAAHgAAAAADHgAAAAADHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACdgAAAAABLgAAAAAALgAAAAAAHgAAAAADHgAAAAABHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAABdgAAAAACdgAAAAAD
+ tiles: AQAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADAgAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALgAAAAADegAAAAAAegAAAAAAAAAAAAAAHgAAAAAAAgAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAABAQAAAAADegAAAAAAeQAAAAAAHgAAAAADegAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAAgAAAAABAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAADegAAAAAAegAAAAAAdgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADdgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADdgAAAAACLgAAAAABLgAAAAADHgAAAAADHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAACdgAAAAABLgAAAAADLgAAAAADHgAAAAAALgAAAAAAHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAADdgAAAAAALgAAAAAALgAAAAABHgAAAAACHgAAAAABHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAADdgAAAAABdgAAAAAD
version: 6
-2,-2:
ind: -2,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaAAAAAAAHgAAAAABaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACaAAAAAAAaAAAAAAAaAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAAAaAAAAAABaAAAAAAB
version: 6
-2,-1:
ind: -2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAADaAAAAAAAaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaAAAAAAAaAAAAAADaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAQAAAAACAQAAAAAAegAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAQAAAAAAAQAAAAABAQAAAAACAgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAACAQAAAAABAQAAAAAAegAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAQAAAAACAQAAAAACAQAAAAAAAgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: dgAAAAACdgAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAAAdgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAADAQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAACAQAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAACAQAAAAABAQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAADHgAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAABHgAAAAAD
version: 6
- type: Broadphase
- type: Physics
@@ -100,734 +107,930 @@ entities:
version: 2
nodes:
- node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 44: 14,-10
- 45: 14,-12
- - node:
- angle: 3.141592653589793 rad
color: '#FFFFFFFF'
- id: Arrows
+ id: Box
decals:
- 46: 11.966288,-14.393062
+ 288: -9,-24
- node:
color: '#FFFFFFFF'
- id: Bot
- decals:
- 34: 12,-9
- 35: 13,-9
- 36: 13,-10
- 37: 12,-10
- 38: 12,-11
- 39: 13,-11
- 40: 13,-12
- 41: 12,-12
- 42: 12,-13
- 43: 13,-13
- - node:
- angle: 3.141592653589793 rad
- color: '#0000B4FF'
id: BoxGreyscale
decals:
- 47: 8,-23
- 48: 9,-23
- 49: 10,-23
+ 237: -1,5
+ 238: -3,6
+ 239: 1,6
- node:
- angle: 3.141592653589793 rad
- color: '#7C0000FF'
- id: BoxGreyscale
+ color: '#FFFFFFFF'
+ id: BrickTileDarkBox
decals:
- 50: 5,-25
- 51: 5,-26
- 52: 5,-27
+ 74: -5,-18
+ 75: 3,-18
+ 76: -1,-29
+ 77: -1,-3
+ 189: -1,-5
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkCornerNe
decals:
- 95: -2,-20
+ 1: 0,2
+ 124: 4,-16
+ 297: 14,-20
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkCornerNw
decals:
- 96: 0,-20
- - node:
- color: '#CDCDCDCC'
- id: BrickTileDarkCornerSe
- decals:
- 93: -2,-16
+ 0: -2,2
+ 16: 1,2
+ 123: -6,-16
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
- 5: -4,4
+ 152: 14,-21
+ 157: 15,-14
+ 195: 0,0
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkCornerSw
decals:
- 94: 0,-16
+ 2: -2,0
+ 17: 1,0
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
decals:
- 102: -4,-20
- 145: -2,-28
+ 111: 1,-16
+ 131: 4,-20
+ 134: -7,-20
+ 188: 0,-6
+ 298: 13,-20
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkInnerNw
decals:
- 103: 2,-20
- 146: 0,-28
- - node:
- color: '#CDCDCDCC'
- id: BrickTileDarkInnerSe
- decals:
- 100: -4,-16
- 120: -2,-6
+ 110: -3,-16
+ 130: -6,-20
+ 135: 5,-20
+ 179: -15,-21
+ 211: -2,-6
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSe
decals:
- 6: -4,5
+ 147: 13,-14
+ 148: 10,-21
+ 158: 15,-13
+ 171: -9,-21
+ 172: 4,-21
+ 201: 0,-2
- node:
- color: '#CDCDCDCC'
+ color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
decals:
- 101: 2,-16
- 119: 0,-6
+ 173: 7,-21
+ 174: -6,-21
+ 180: -15,-19
+ 212: -2,-2
- node:
- color: '#0066BDFF'
+ color: '#FFFFFFFF'
id: BrickTileDarkLineE
decals:
- 89: 0.49825978,2.0046659
- 90: 0.49825978,1.0202909
- 91: 0.49825978,0.020290852
+ 24: 5,1
+ 105: 4,-19
+ 106: 4,-18
+ 107: 4,-17
+ 112: 1,-15
+ 113: 1,-14
+ 114: 1,-13
+ 115: 1,-12
+ 153: 13,-16
+ 154: 13,-15
+ 185: 0,-5
+ 186: 0,-4
+ 187: 0,-3
+ 197: 0,1
+ 227: -16,-17
+ 228: -16,-16
+ 229: -16,-15
+ 294: 13,-17
+ 295: 13,-18
+ 296: 13,-19
- node:
- color: '#1B99FBFF'
- id: BrickTileDarkLineE
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
decals:
- 86: 0.25239444,2.0046659
- 87: 0.25239444,1.0202909
- 88: 0.25239444,0.020290852
+ 21: 2,2
+ 22: 3,2
+ 23: 4,2
+ 108: 3,-16
+ 109: 2,-16
+ 121: -4,-16
+ 122: -5,-16
+ 192: -1,2
- node:
- color: '#CDCDCDCC'
- id: BrickTileDarkLineE
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
decals:
- 92: -2,-15
- 97: -4,-19
- 98: -4,-18
- 99: -4,-17
- 111: -2,-14
- 112: -2,-13
- 113: -2,-12
- 114: -2,-11
- 115: -2,-10
- 116: -2,-9
- 117: -2,-8
- 118: -2,-7
- 138: -2,-21
- 139: -2,-22
- 140: -2,-23
- 141: -2,-24
- 142: -2,-25
- 143: -2,-26
- 144: -2,-27
+ 18: 2,0
+ 19: 3,0
+ 20: 4,0
+ 146: 14,-14
+ 149: 11,-21
+ 150: 12,-21
+ 151: 13,-21
+ 167: 5,-21
+ 168: 6,-21
+ 169: -7,-21
+ 170: -8,-21
+ 190: -1,0
- node:
- color: '#CDCDCDCC'
- id: BrickTileDarkLineN
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
decals:
- 109: -3,-20
- 110: 1,-20
- 147: -1,-28
+ 116: -3,-15
+ 117: -3,-14
+ 118: -3,-13
+ 119: -3,-12
+ 120: -3,-11
+ 125: -6,-17
+ 126: -6,-18
+ 127: -6,-19
+ 178: -15,-20
+ 191: -2,1
+ 196: 1,1
+ 208: -2,-3
+ 209: -2,-4
+ 210: -2,-5
- node:
color: '#FFFFFFFF'
- id: BrickTileDarkLineN
+ id: BrickTileSteelCornerNe
decals:
- 7: -3,7
- 8: -2,7
- 9: -1,7
- 10: 0,7
- 11: 1,7
+ 7: 5,-2
- node:
- color: '#CDCDCDCC'
- id: BrickTileDarkLineS
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
decals:
- 104: -3,-16
- 105: 1,-16
- 121: -1,-6
+ 6: 2,-2
- node:
color: '#FFFFFFFF'
- id: BrickTileDarkLineS
+ id: BrickTileSteelCornerSe
decals:
- 4: -5,4
+ 15: 5,-5
- node:
- color: '#CDCDCDCC'
- id: BrickTileDarkLineW
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
decals:
- 106: 2,-19
- 107: 2,-18
- 108: 2,-17
- 122: 0,-7
- 123: 0,-8
- 124: 0,-9
- 125: 0,-10
- 126: 0,-11
- 127: 0,-12
- 128: 0,-13
- 129: 0,-14
- 130: 0,-15
- 131: 0,-21
- 132: 0,-22
- 133: 0,-23
- 134: 0,-24
- 135: 0,-25
- 136: 0,-26
- 137: 0,-27
+ 8: 2,-5
- node:
color: '#FFFFFFFF'
- id: BrickTileSteelBox
+ id: BrickTileSteelLineE
decals:
- 187: -14,-25
+ 12: 5,-3
+ 13: 5,-4
- node:
- color: '#254C9599'
- id: BrickTileSteelCornerNe
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
decals:
- 57: 0,2
+ 10: 3,-2
+ 11: 4,-2
- node:
- color: '#254C9599'
- id: BrickTileSteelCornerNw
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineS
decals:
- 58: -2,2
+ 9: 3,-5
+ 14: 4,-5
- node:
- color: '#254C9599'
- id: BrickTileSteelCornerSe
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
decals:
- 59: 0,0
+ 4: 2,-4
+ 5: 2,-3
- node:
- color: '#254C9599'
- id: BrickTileSteelCornerSw
+ color: '#FFFFFFFF'
+ id: BrickTileWhiteBox
decals:
- 60: -2,0
+ 136: 15,-16
- node:
- color: '#254C9599'
- id: BrickTileSteelLineE
+ color: '#FFFFFFFF'
+ id: Caution
decals:
- 53: 0,1
+ 233: -10,-26
+ 234: -11,-26
+ 256: -12,-26
- node:
- color: '#8C8C8CCC'
- id: BrickTileSteelLineN
+ color: '#FFFFFFFF'
+ id: DeliveryGreyscale
decals:
- 156: -6.005792,-11.450896
- 157: -5.021417,-11.450896
- 158: 3.0095334,-11.491488
- 159: 3.9939084,-11.491488
+ 3: -11,-27
+ 78: -10,-27
+ 240: -7,-2
+ 251: -20,-13
+ 252: -19,-13
+ 253: 18,-13
+ 254: 17,-13
+ 255: -12,-27
+ 286: -4,6
+ 287: 2,6
- node:
- color: '#B4B4B4CC'
- id: BrickTileSteelLineN
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
decals:
- 151: -6.006692,-11.216935
- 152: -5.022317,-11.216935
- 153: 3.008933,-11.26381
- 154: 3.993308,-11.26381
+ 283: -12,-26
+ 284: -7,-29
+ 285: -7,-28
- node:
- color: '#C8C8C8CC'
- id: BrickTileSteelLineN
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
decals:
- 155: -5.022317,-10.98256
+ 259: 3,-9
+ 263: 4,-10
+ 264: 4,-11
+ 282: -6,-12
- node:
- color: '#CDCDCDCC'
- id: BrickTileSteelLineN
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
decals:
- 148: -6.006692,-10.98256
- 149: 3.008933,-11.01381
- 150: 3.993308,-11.01381
+ 265: 3,-11
+ 266: 2,-10
+ 276: -6,-7
+ 277: -6,-9
- node:
+ cleanable: True
+ angle: 3.141592653589793 rad
color: '#FFFFFFFF'
- id: BrickTileSteelLineS
+ id: DirtHeavy
decals:
- 185: -15,-21
- 186: -14,-21
+ 267: 2,-11
- node:
- color: '#254C9599'
- id: BrickTileSteelLineW
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
decals:
- 54: -2,1
+ 268: 3,-6
+ 274: -5,-7
- node:
+ cleanable: True
angle: 1.5707963267948966 rad
- color: '#254C9599'
- id: BrickTileSteelLineW
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
decals:
- 55: -1,0
+ 275: -5,-8
- node:
- angle: 4.71238898038469 rad
- color: '#254C9599'
- id: BrickTileSteelLineW
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
decals:
- 56: -1,2
+ 260: 3,-10
+ 262: 2,-9
+ 269: 3,-7
+ 270: 4,-7
+ 271: 4,-6
+ 272: 5,-3
+ 273: -6,-8
+ 280: -5,-10
+ 281: -6,-13
- node:
- color: '#82000099'
- id: BrickTileWhiteCornerNe
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
decals:
- 63: -4,-2
+ 261: 2,-10
+ 278: -6,-10
+ 279: -5,-9
- node:
- color: '#1B99FB99'
- id: BrickTileWhiteCornerNw
+ color: '#E6E6E6FF'
+ id: FullTileOverlayGreyscale
decals:
- 79: 14,-15
+ 235: -4,-29
+ 236: -5,-29
- node:
- color: '#82000099'
- id: BrickTileWhiteCornerNw
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale
decals:
- 69: -7,-2
+ 86: -5,-16
+ 87: -4,-16
+ 102: 2,-16
+ 103: 3,-16
- node:
- color: '#334E6DC8'
- id: BrickTileWhiteCornerSe
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
decals:
- 13: -4,4
+ 140: 13,-21
+ 141: 14,-14
+ 143: 12,-21
+ 144: 11,-21
- node:
- color: '#82000099'
- id: BrickTileWhiteCornerSe
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 159: -8,-21
+ 160: -7,-21
+ 161: 5,-21
+ 162: 6,-21
+ - node:
+ color: '#5E7C1696'
+ id: HalfTileOverlayGreyscale270
decals:
- 64: -4,-4
+ 203: -2,-4
+ 204: -2,-3
+ 205: -2,-5
- node:
- color: '#82000099'
- id: BrickTileWhiteCornerSw
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale270
decals:
- 67: -7,-4
+ 175: -15,-20
- node:
- color: '#0066DCCC'
- id: BrickTileWhiteInnerSe
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
decals:
- 173: 4,-21
+ 82: -6,-19
+ 83: -6,-18
+ 84: -6,-17
+ 89: -3,-15
+ 90: -3,-14
+ 91: -3,-13
+ 92: -3,-12
+ 93: -3,-11
- node:
color: '#334E6DC8'
- id: BrickTileWhiteInnerSe
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 181: 0,-5
+ 182: 0,-4
+ 183: 0,-3
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
decals:
- 12: -4,5
+ 137: 13,-15
+ 138: 13,-16
+ 290: 13,-17
+ 291: 13,-18
+ 292: 13,-19
- node:
- color: '#B79C0099'
- id: BrickTileWhiteInnerSe
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale90
decals:
- 76: -9,-21
+ 94: 4,-19
+ 95: 4,-18
+ 96: 4,-17
+ 97: 1,-15
+ 98: 1,-14
+ 99: 1,-13
+ 100: 1,-12
- node:
- color: '#0066DCCC'
- id: BrickTileWhiteInnerSw
+ color: '#FFFFFFFF'
+ id: LoadingArea
decals:
- 172: 7,-21
+ 304: 12,-11
- node:
- color: '#B79C0099'
- id: BrickTileWhiteInnerSw
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
decals:
- 75: -6,-21
+ 305: 13,-11
- node:
- color: '#505050FF'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerNe
decals:
- 26: 13.247913,-17.99221
- 27: 13.247913,-18.976585
+ 49: 1,-17
- node:
- color: '#6F6F6FFF'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerNw
decals:
- 24: 13.493418,-17.993195
- 25: 13.493418,-18.97757
+ 50: -3,-17
- node:
- color: '#82000099'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSe
decals:
- 61: -4,-3
+ 46: 1,-19
- node:
- angle: 1.5707963267948966 rad
- color: '#82000099'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSw
decals:
- 62: -5,-2
+ 45: -3,-19
- node:
- color: '#9E9F9EFF'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkEndN
decals:
- 22: 13.743418,-17.993195
- 23: 13.743418,-18.97757
+ 73: -1,-7
- node:
- color: '#E3E5E9FF'
- id: BrickTileWhiteLineE
+ color: '#FFFFFFFF'
+ id: MiniTileDarkEndS
decals:
- 20: 13.993418,-17.993195
- 21: 13.993418,-18.97757
+ 31: -1,-27
- node:
- color: '#0066DCCC'
- id: BrickTileWhiteLineN
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerNe
decals:
- 174: 5,-23
- 175: 6,-23
+ 54: -1,-17
- node:
- color: '#1B99FB99'
- id: BrickTileWhiteLineN
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerNw
decals:
- 80: 15,-15
- 81: 16,-15
- 82: 17,-15
+ 53: -1,-17
- node:
- color: '#334E6DC8'
- id: BrickTileWhiteLineN
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerSe
+ decals:
+ 42: -1,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerSw
+ decals:
+ 41: -1,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineE
+ decals:
+ 26: -1,-22
+ 27: -1,-23
+ 28: -1,-24
+ 29: -1,-25
+ 30: -1,-26
+ 39: -1,-21
+ 40: -1,-20
+ 47: 1,-18
+ 64: -1,-16
+ 65: -1,-15
+ 66: -1,-14
+ 67: -1,-13
+ 68: -1,-12
+ 69: -1,-11
+ 70: -1,-10
+ 71: -1,-9
+ 72: -1,-8
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineN
decals:
- 15: -3,7
- 16: -2,7
- 17: -1,7
- 18: 0,7
- 19: 1,7
+ 51: -2,-17
+ 52: 0,-17
- node:
- color: '#82000099'
- id: BrickTileWhiteLineN
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineS
+ decals:
+ 43: -2,-19
+ 44: 0,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineW
decals:
- 70: -6,-2
+ 32: -1,-26
+ 33: -1,-25
+ 34: -1,-24
+ 35: -1,-23
+ 36: -1,-22
+ 37: -1,-21
+ 38: -1,-20
+ 48: -3,-18
+ 55: -1,-16
+ 56: -1,-15
+ 57: -1,-14
+ 58: -1,-13
+ 59: -1,-12
+ 60: -1,-11
+ 61: -1,-10
+ 62: -1,-9
+ 63: -1,-8
- node:
- color: '#B79C0099'
- id: BrickTileWhiteLineN
+ color: '#5E7C1696'
+ id: QuarterTileOverlayGreyscale
decals:
- 73: -8,-23
- 74: -7,-23
+ 207: -2,-6
- node:
- color: '#0066DCCC'
- id: BrickTileWhiteLineS
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale
decals:
- 170: 5,-21
- 171: 6,-21
+ 177: -15,-21
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 88: -3,-16
+ 129: -6,-20
+ 132: 5,-20
- node:
color: '#334E6DC8'
- id: BrickTileWhiteLineS
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 200: 0,-2
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale180
decals:
- 14: -5,4
+ 142: 13,-14
+ 145: 10,-21
+ 156: 15,-13
- node:
- color: '#82000099'
- id: BrickTileWhiteLineS
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
decals:
- 65: -5,-4
- 66: -6,-4
+ 163: 4,-21
+ 164: -9,-21
- node:
- color: '#B79C0099'
- id: BrickTileWhiteLineS
+ color: '#5E7C1696'
+ id: QuarterTileOverlayGreyscale270
decals:
- 71: -8,-21
- 72: -7,-21
+ 206: -2,-2
- node:
- color: '#1B99FB99'
- id: BrickTileWhiteLineW
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale270
decals:
- 77: 14,-17
- 78: 14,-16
- 83: 15,-20
- 84: 15,-21
- 85: 15,-22
+ 176: -15,-19
- node:
- color: '#646464CC'
- id: BrickTileWhiteLineW
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
decals:
- 163: -15.780144,-15.000807
- 164: -15.780143,-16.000807
- 165: -15.747205,-19.019861
- 166: -15.747205,-18.004236
- 167: -15.76283,-17.004236
+ 165: -6,-21
+ 166: 7,-21
- node:
- color: '#787878CC'
- id: BrickTileWhiteLineW
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale90
decals:
- 160: -16,-15
- 161: -16,-16
- 162: -16,-18
- 168: -16,-19
- 169: -16,-17
+ 184: 0,-6
- node:
- color: '#82000099'
- id: BrickTileWhiteLineW
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale90
decals:
- 68: -7,-3
+ 293: 13,-20
- node:
- angle: 1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: StandClear
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale90
decals:
- 28: -20,-10
- 29: -20,-12
+ 101: 1,-16
+ 128: 4,-20
+ 133: -7,-20
- node:
- angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: StandClear
decals:
- 30: -2,-32
- 31: 0,-32
+ 303: 14,-9
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 85: -6,-16
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 139: 14,-21
+ 155: 15,-14
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 289: 14,-20
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 104: 4,-16
- node:
- angle: 4.71238898038469 rad
color: '#FFFFFFFF'
- id: StandClear
+ id: WarnCornerSmallNW
decals:
- 32: 18,-10
- 33: 18,-12
+ 249: -9,-26
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleE
+ decals:
+ 217: -4,2
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleE
+ decals:
+ 301: 13,-19
+ 302: 13,-18
+ - node:
+ color: '#5E7C1696'
+ id: WarnLineGreyscaleE
+ decals:
+ 202: -4,-3
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleE
+ decals:
+ 219: 0,-9
+ 220: -4,-9
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleN
+ decals:
+ 193: -1,2
+ 214: 0,-2
+ 215: -2,-2
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleN
+ decals:
+ 300: 12,-23
- node:
color: '#EFB34196'
- id: WarnLineS
+ id: WarnLineGreyscaleN
+ decals:
+ 226: -7,-23
+ 246: -8,-23
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleS
+ decals:
+ 198: -2,0
+ 199: 0,0
+ 216: -1,4
+ - node:
+ color: '#3EB38896'
+ id: WarnLineGreyscaleS
+ decals:
+ 224: 6,-21
+ 225: 5,-21
+ - node:
+ color: '#52B4E996'
+ id: WarnLineGreyscaleS
+ decals:
+ 299: 12,-21
+ - node:
+ color: '#EFB34196'
+ id: WarnLineGreyscaleS
+ decals:
+ 221: -8,-21
+ 222: -7,-21
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleW
+ decals:
+ 194: -2,2
+ - node:
+ color: '#5E7C1696'
+ id: WarnLineGreyscaleW
+ decals:
+ 213: -2,-3
+ - node:
+ color: '#8C347F96'
+ id: WarnLineGreyscaleW
decals:
- 0: -2,-1
+ 223: -15,-20
+ - node:
+ color: '#9FED5896'
+ id: WarnLineGreyscaleW
+ decals:
+ 218: -2,-9
+ 258: 2,-9
- node:
color: '#FFFFFFFF'
- id: WoodTrimThinBox
+ id: WarnLineS
decals:
- 176: -1,5
+ 247: -9,-23
+ 248: -9,-25
+ 250: -9,-24
- node:
color: '#FFFFFFFF'
- id: WoodTrimThinInnerNe
+ id: WarnLineW
decals:
- 177: -0.86669874,5.1252174
+ 25: 12,-25
+ 79: -10,-26
+ 80: -11,-26
+ 257: -12,-26
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinInnerNw
+ id: body
decals:
- 178: -1.1375321,5.1252174
+ 81: 3,-28
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinInnerSe
+ id: bottle
decals:
- 180: -0.86669874,4.8543844
+ 242: 2,-4
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinInnerSw
+ id: end
decals:
- 179: -1.1166987,4.8752174
+ 243: -4,-2
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinLineN
+ id: engie
decals:
- 1: -2,3
- 2: -1,3
- 3: 0,3
+ 241: -7,-27
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinLineS
+ id: ghost
decals:
- 183: -0.99169874,4.8543844
- 184: -1.0021155,5.958551
+ 244: 12,-24
- node:
+ cleanable: True
color: '#FFFFFFFF'
- id: WoodTrimThinLineW
+ id: peace
+ decals:
+ 245: 15,-9
+ - node:
+ cleanable: True
+ angle: -3.141592653589793 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 231: 12.693383,-23.568222
+ - node:
+ cleanable: True
+ angle: -1.5707963267948966 rad
+ color: '#1D1D2172'
+ id: splatter
+ decals:
+ 230: 12.401744,-23.958847
+ - node:
+ cleanable: True
+ color: '#1D1D2172'
+ id: splatter
decals:
- 181: -1.1271155,4.989801
- 182: -0.022948742,4.989801
+ 232: 12.302758,-23.146347
- type: GridAtmosphere
version: 2
data:
tiles:
- -1,-1:
- 0: 65279
- 1: 256
- -1,0:
- 0: 65535
- -1,1:
- 0: 65535
- -3,-1:
- 0: 52428
+ -4,-4:
+ 0: 30327
+ -4,-5:
+ 0: 30319
+ -5,-4:
+ 0: 45294
+ -4,-3:
+ 0: 30583
+ -5,-3:
+ 0: 36799
+ -4,-2:
+ 1: 36064
+ -4,-1:
+ 1: 2184
-3,-2:
- 0: 34952
+ 1: 34952
-2,-3:
- 0: 65262
+ 1: 4096
+ 0: 52428
-2,-2:
- 0: 65023
- 1: 512
+ 0: 3820
-2,-1:
- 0: 65535
+ 0: 3822
-2,-4:
+ 0: 52428
+ -2,0:
0: 61166
+ -2,-5:
+ 0: 52431
+ 1: 256
-1,-4:
0: 65535
-1,-3:
- 0: 65535
+ 0: 65007
-1,-2:
+ 0: 52701
+ -1,-1:
+ 0: 19965
+ -1,-5:
+ 0: 65535
+ -1,0:
+ 0: 40925
+ 0,-4:
0: 65535
+ 0,-3:
+ 0: 64987
+ 0,-2:
+ 0: 56793
+ 0,-1:
+ 0: 7645
-3,0:
- 0: 34956
+ 1: 34944
-3,1:
- 0: 8
- -2,0:
- 0: 65531
- 2: 4
+ 1: 8
-2,1:
- 0: 36079
+ 1: 1056
+ -1,1:
+ 0: 65534
-2,2:
- 0: 8
+ 1: 8
-1,2:
- 0: 255
- 0,-4:
- 0: 65535
- 0,-3:
- 0: 65535
- 0,-2:
+ 1: 240
+ 0,0:
+ 0: 4095
+ 0,1:
+ 0: 30587
+ 0,2:
+ 1: 120
+ 0,-5:
0: 65535
- 0,-1:
- 0: 65471
- 1: 64
1,-4:
- 0: 13107
+ 0: 4369
1,-3:
- 0: 29491
+ 0: 4368
+ 1: 16384
1,-2:
- 0: 65535
+ 0: 13104
+ 1: 34952
1,-1:
- 0: 65533
- 1: 2
- 2,-1:
- 0: 6553
- 0,0:
+ 0: 819
+ 1,-5:
+ 0: 4383
+ 1: 1024
+ 1,0:
+ 0: 4915
+ 1: 34944
+ 3,-4:
0: 65535
- 0,1:
+ 3,-3:
0: 65535
- 0,2:
- 0: 127
- 1,0:
+ 2,-2:
+ 1: 34944
+ 3,-2:
+ 1: 304
+ 2,-1:
+ 1: 2184
+ 3,-5:
0: 65535
+ 4,-4:
+ 0: 24627
+ 4,-3:
+ 0: 4079
1,1:
- 0: 319
- 2,0:
0: 1
+ 1: 296
+ -4,-6:
+ 2: 102
+ 0: 57856
+ -5,-6:
+ 1: 8
+ 0: 57344
+ -5,-5:
+ 0: 57582
+ -4,-7:
+ 1: 96
+ 2: 16384
-3,-7:
- 0: 65407
- 1: 128
+ 0: 65528
-3,-6:
- 0: 65535
+ 0: 61695
-3,-5:
- 0: 4607
+ 0: 15
+ 1: 4352
-2,-7:
- 0: 32767
- 3: 32768
+ 0: 46011
-2,-6:
- 0: 65535
- -2,-5:
- 0: 65535
+ 0: 62395
+ -2,-8:
+ 1: 240
+ 0: 40960
+ -1,-8:
+ 0: 54508
-1,-7:
- 0: 65535
+ 0: 56573
-1,-6:
- 0: 65535
- -1,-5:
- 0: 65535
- 0,-6:
- 0: 65535
- 0,-5:
- 0: 65535
+ 0: 65247
+ -1,-9:
+ 0: 16384
+ 0,-8:
+ 0: 53553
+ 1: 128
0,-7:
- 0: 65535
- 1,-7:
- 0: 65535
+ 0: 53757
+ 0,-6:
+ 0: 62431
+ 0,-9:
+ 0: 4096
+ 1,-8:
+ 1: 112
1,-6:
- 0: 65535
- 1,-5:
- 0: 30719
+ 0: 63214
+ 1,-7:
+ 3: 34
+ 0: 57344
+ 4: 136
2,-7:
- 0: 65535
+ 0: 30304
2,-6:
- 0: 65535
+ 0: 61559
2,-5:
- 0: 52479
- -4,-4:
- 0: 65535
- 2,-4:
- 0: 34952
- 3,-4:
- 0: 65535
- -4,-8:
- 0: 65535
- -4,-7:
- 0: 65535
- -4,-6:
- 0: 65535
- -4,-5:
- 0: 65535
- -2,-8:
- 0: 65520
- -1,-8:
- 0: 65535
- 0,-8:
- 0: 65527
- 2,-8:
- 0: 55432
- 3,-8:
- 0: 65535
+ 0: 15
+ 1: 17408
3,-7:
- 0: 65535
+ 1: 48
+ 0: 4096
3,-6:
- 0: 32767
- 1: 32768
- 3,-5:
- 0: 65527
+ 0: 63795
1: 8
- -5,-8:
- 0: 34952
- -5,-7:
- 0: 34952
- -5,-6:
- 0: 65512
- -5,-5:
- 0: 65535
- -5,-4:
- 0: 65535
- -4,-10:
- 0: 61440
- -4,-9:
- 0: 65535
- -5,-10:
- 0: 32768
- -5,-9:
- 0: 34952
- 2,-10:
- 0: 32768
- 2,-9:
- 0: 34952
- 3,-10:
- 0: 61440
- 3,-9:
- 0: 65535
- -4,-3:
- 0: 65535
- -4,-2:
- 0: 36079
- -4,-1:
- 0: 2184
- 2,-3:
- 0: 34952
- 2,-2:
- 0: 34952
- 3,-3:
- 0: 65535
- 3,-2:
- 0: 319
- -3,-8:
- 0: 49152
- 1,-8:
- 0: 63344
- -6,-4:
- 0: 51200
- -6,-3:
- 0: 52428
- -5,-3:
- 0: 65535
- -5,-2:
- 0: 12
4,-6:
- 0: 30512
+ 0: 12544
4,-5:
- 0: 30583
- 0,-9:
- 0: 12288
- 4,-4:
- 0: 65399
- 4,-3:
- 0: 65535
- 4,-2:
- 0: 1
- -1,-9:
- 0: 57344
- 5,-4:
- 0: 4096
+ 0: 13107
+ -6,-3:
+ 0: 3212
5,-3:
- 0: 4369
+ 0: 257
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -845,10 +1048,8 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ immutable: True
moles:
- - 20.078888
- - 75.53487
- 0
- 0
- 0
@@ -859,11 +1060,28 @@ entities:
- 0
- 0
- 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 340
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
- temperature: 293.1499
+ temperature: 293.15
moles:
- - 18.472576
- - 69.49208
+ - 2500
+ - 0
- 0
- 0
- 0
@@ -875,10 +1093,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14996
+ temperature: 293.15
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 2500
- 0
- 0
- 0
@@ -897,91 +1115,238 @@ entities:
- type: GasTileOverlay
- type: BecomesStation
id: Anchor
+- proto: AirAlarm
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15
+ - 573
+ - 578
+ - uid: 571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-17.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 754
+ - 755
+ - 1756
+ - 1023
+ - 1024
+ - 1025
+ - 1030
+ - 1093
+ - 1094
+ - 1757
+ - 762
+ - 763
+ - 764
+ - 765
+ - uid: 698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-17.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 756
+ - 757
+ - 636
+ - 1463
+ - 1500
+ - 1499
+ - 767
+ - 766
+ - 1614
+ - 1615
+ - uid: 730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 968
+ - 1231
+ - 1229
+ - 1760
+ - 1763
+ - 628
+ - 1276
+ - 1275
+ - 987
+ - 988
+ - 577
+ - 576
+ - uid: 871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 968
+ - 754
+ - 755
+ - 756
+ - 757
+ - 579
+ - 581
+ - 578
+ - 573
+ - 991
+ - 992
+ - 993
+ - 1648
+ - 1144
+ - 1146
+ - 1160
+ - 1110
+ - 1113
+ - 1229
+ - 987
+ - 988
+ - 1234
+ - uid: 1216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-9.5
+ parent: 1
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 576
+ - 577
+ - 575
+ - 574
+ - 1325
+ - 1324
+ - 1317
+ - 1284
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-24.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 993
+ - 992
+ - 991
+ - 1734
+ - 1738
+ - 1739
+ - 1735
+ - 1718
+ - 1720
+ - 1721
+ - 1712
+ - uid: 1758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-23.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1344
+ - 1345
+ - 579
+ - 581
- proto: Airlock
entities:
- - uid: 2
+ - uid: 6
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -16.5,-19.5
+ pos: -2.5,-23.5
parent: 1
- - uid: 3
+ - uid: 32
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -18.5,-19.5
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: -2.5,-26.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 1.5,-26.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ pos: -15.5,-19.5
parent: 1
- proto: AirlockAtmospherics
entities:
- uid: 4
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-21.5
parent: 1
- uid: 5
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-21.5
parent: 1
-- proto: AirlockCargo
- entities:
- - uid: 6
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-26.5
- parent: 1
- proto: AirlockCommand
entities:
- uid: 7
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,3.5
parent: 1
- uid: 8
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,2.5
parent: 1
- - uid: 9
+- proto: AirlockCommandGlass
+ entities:
+ - uid: 985
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -1.5,-0.5
+ pos: 0.5,-0.5
parent: 1
- - uid: 10
+ - uid: 986
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 0.5,-0.5
+ pos: -1.5,-0.5
parent: 1
- proto: AirlockEngineering
entities:
- uid: 11
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-21.5
parent: 1
- uid: 12
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-21.5
parent: 1
@@ -997,25 +1362,27 @@ entities:
- type: Transform
pos: -17.5,-11.5
parent: 1
- - uid: 15
+ - uid: 17
components:
- type: Transform
- pos: -1.5,-29.5
+ pos: 16.5,-11.5
parent: 1
- - uid: 16
+ - uid: 18
components:
- type: Transform
- pos: 0.5,-29.5
+ pos: 16.5,-9.5
parent: 1
- - uid: 17
+ - uid: 1754
components:
- type: Transform
- pos: 16.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-29.5
parent: 1
- - uid: 18
+ - uid: 1755
components:
- type: Transform
- pos: 16.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-29.5
parent: 1
- proto: AirlockGlass
entities:
@@ -1039,23 +1406,26 @@ entities:
- type: Transform
pos: -12.5,-19.5
parent: 1
- - uid: 23
+ - uid: 24
components:
- type: Transform
rot: 1.5707963267948966 rad
+ pos: -2.5,-8.5
+ parent: 1
+ - uid: 713
+ components:
+ - type: Transform
pos: 1.5,-8.5
parent: 1
- - uid: 24
+ - uid: 793
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-8.5
+ pos: 3.5,-7.5
parent: 1
- - uid: 25
+ - uid: 834
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-4.5
+ pos: 3.5,-11.5
parent: 1
- proto: AirlockGlassShuttle
entities:
@@ -1093,98 +1463,69 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,-11.5
parent: 1
-- proto: AirlockMaint
- entities:
- - uid: 32
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,3.5
- parent: 1
- proto: AirlockMedical
entities:
- - uid: 33
+ - uid: 2
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 13.5,-21.5
+ pos: 12.5,-21.5
parent: 1
-- proto: AirlockMercenaryLocked
+- proto: AirlockMercenary
entities:
- uid: 34
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -2.5,-2.5
parent: 1
-- proto: AirlockVirology
+- proto: AirSensor
entities:
- - uid: 35
+ - uid: 1648
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-26.5
+ pos: -1.5,-17.5
parent: 1
- - uid: 36
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - uid: 1757
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-23.5
+ pos: 17.5,-14.5
parent: 1
- - uid: 37
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+- proto: AltarSpawner
+ entities:
+ - uid: 801
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-23.5
- parent: 1
-- proto: AltarSpawner
- entities:
- - uid: 38
- components:
- - type: Transform
- pos: -17.5,-15.5
+ pos: -18.5,-15.5
parent: 1
- proto: AmeController
entities:
- - uid: 39
+ - uid: 53
components:
- type: Transform
- pos: -7.5,-23.5
+ pos: -8.5,-23.5
parent: 1
- type: AmeController
- injectionAmount: 4
injecting: True
- type: ContainerContainer
containers:
- AmeFuel: !type:ContainerSlot
+ fuelSlot: !type:ContainerSlot
showEnts: False
occludes: True
- ent: 40
+ ent: 104
- proto: AmeJar
entities:
- - uid: 40
+ - uid: 104
components:
- - type: MetaData
- flags: InContainer
- type: Transform
- parent: 39
+ parent: 53
- type: Physics
canCollide: False
- - uid: 41
- components:
- - type: Transform
- pos: -6.4750996,-27.367401
- parent: 1
- proto: AmeShielding
entities:
- uid: 42
@@ -1199,7 +1540,6 @@ entities:
parent: 1
- type: PointLight
radius: 2
- enabled: True
- uid: 44
components:
- type: Transform
@@ -1238,41 +1578,59 @@ entities:
- type: Transform
pos: -11.5,-22.5
parent: 1
- - uid: 51
+- proto: APCBasic
+ entities:
+ - uid: 55
components:
- type: Transform
- pos: -8.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-25.5
parent: 1
- - uid: 52
+ - uid: 56
components:
- type: Transform
- pos: -8.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
parent: 1
- - uid: 53
+ - uid: 102
components:
- type: Transform
- pos: -8.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
parent: 1
-- proto: APCBasic
- entities:
- - uid: 54
+ - uid: 169
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 1
+ - uid: 214
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-9.5
+ pos: 1.5,-25.5
parent: 1
- - uid: 55
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-14.5
+ parent: 1
+ - uid: 333
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-25.5
+ pos: 5.5,-8.5
parent: 1
-- proto: APCBasic
- entities:
- - uid: 56
+ - uid: 334
components:
- type: Transform
- pos: 0.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-8.5
+ parent: 1
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
parent: 1
- proto: AtmosDeviceFanTiny
entities:
@@ -1311,10095 +1669,11023 @@ entities:
- type: Transform
pos: -14.5,-21.5
parent: 1
-- proto: AtmosFixSaunaMarker
+- proto: AtmosFixBlockerMarker
entities:
- - uid: 631
+ - uid: 175
components:
- type: Transform
- pos: -13.5,-23.5
+ pos: 3.5,8.5
parent: 1
- - uid: 633
+ - uid: 1823
components:
- type: Transform
- pos: -13.5,-24.5
+ pos: 7.5,-4.5
parent: 1
- - uid: 641
+ - uid: 1824
components:
- type: Transform
- pos: -14.5,-22.5
+ pos: -3.5,9.5
parent: 1
- - uid: 650
+ - uid: 1825
components:
- type: Transform
- pos: -14.5,-23.5
+ pos: -2.5,9.5
parent: 1
- - uid: 656
+ - uid: 1826
components:
- type: Transform
- pos: -13.5,-22.5
+ pos: -1.5,9.5
parent: 1
-- proto: BarSign
- entities:
- - uid: 63
+ - uid: 1827
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-10.5
+ pos: 0.5,9.5
parent: 1
-- proto: Bed
- entities:
- - uid: 64
+ - uid: 1828
components:
- type: Transform
- pos: -3.5,0.5
+ pos: -0.5,9.5
parent: 1
- - uid: 65
+ - uid: 1829
components:
- type: Transform
- pos: 3.5,-22.5
+ pos: 1.5,9.5
parent: 1
- - uid: 66
+ - uid: 1830
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: 2.5,9.5
parent: 1
- - uid: 67
+ - uid: 1832
components:
- type: Transform
- pos: -4.5,-22.5
+ pos: 4.5,6.5
parent: 1
-- proto: BedsheetSpawner
- entities:
- - uid: 68
+ - uid: 1833
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 5.5,5.5
parent: 1
- - uid: 69
+ - uid: 1834
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-17.5
+ pos: 7.5,4.5
parent: 1
-- proto: BedsheetNT
- entities:
- - uid: 70
+ - uid: 1835
components:
- type: Transform
- pos: -3.5,0.5
+ pos: 7.5,3.5
parent: 1
-- proto: BedsheetSpawner
- entities:
- - uid: 71
+ - uid: 1836
components:
- type: Transform
- pos: -4.5,-22.5
+ pos: 7.5,2.5
parent: 1
- - uid: 72
+ - uid: 1837
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: 7.5,1.5
parent: 1
- - uid: 73
+ - uid: 1838
components:
- type: Transform
- pos: 3.5,-22.5
+ pos: 7.5,-5.5
parent: 1
-- proto: BenchPewLeft
- entities:
- - uid: 74
+ - uid: 1839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-17.5
+ pos: 7.5,-6.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchPewMiddle
- entities:
- - uid: 75
+ - uid: 1840
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-17.5
+ pos: 7.5,-7.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchPewRight
- entities:
- - uid: 76
+ - uid: 1841
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-17.5
+ pos: 6.5,-8.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpLeft
- entities:
- - uid: 77
+ - uid: 1842
components:
- type: Transform
- pos: 0.5,-16.5
+ pos: 6.5,-17.5
parent: 1
- - type: Physics
- bodyType: Static
- - uid: 78
+ - uid: 1843
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-17.5
+ pos: 10.5,-16.5
parent: 1
- - type: Physics
- bodyType: Static
- - uid: 79
+ - uid: 1844
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-18.5
+ pos: 10.5,-17.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpMiddle
- entities:
- - uid: 80
+ - uid: 1845
components:
- type: Transform
- pos: -0.5,-16.5
+ pos: 11.5,-1.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BenchSofaCorpRight
- entities:
- - uid: 81
+ - uid: 1846
components:
- type: Transform
- pos: -1.5,-16.5
+ pos: 11.5,-2.5
parent: 1
- - type: Physics
- bodyType: Static
- - uid: 82
+ - uid: 1847
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-18.5
+ pos: 11.5,-3.5
parent: 1
- - type: Physics
- bodyType: Static
- - uid: 83
+ - uid: 1848
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-17.5
+ pos: 11.5,-4.5
parent: 1
- - type: Physics
- bodyType: Static
-- proto: BlastDoorOpen
- entities:
- - uid: 84
+ - uid: 1849
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 11.5,-5.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1246
- - uid: 85
+ - uid: 1850
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 11.5,-6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1246
- - uid: 86
+ - uid: 1851
components:
- type: Transform
- pos: -0.5,8.5
+ pos: 12.5,-6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1246
- - uid: 87
+ - uid: 1852
components:
- type: Transform
- pos: -1.5,8.5
+ pos: 12.5,-5.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 1246
- - uid: 88
+ - uid: 1853
components:
- type: Transform
- pos: -2.5,8.5
+ pos: 13.5,-6.5
parent: 1
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 1246
-- proto: BookRandom
- entities:
- - uid: 89
+ - uid: 1854
components:
- type: Transform
- pos: 0.34862417,-18.29124
+ pos: 5.5,-30.5
parent: 1
- - uid: 90
+ - uid: 1855
components:
- type: Transform
- pos: -1.2216883,-17.494366
+ pos: 15.5,-23.5
parent: 1
- - uid: 91
+ - uid: 1856
components:
- type: Transform
- pos: -1.5029383,-18.267803
+ pos: 13.5,-26.5
parent: 1
- - uid: 92
+ - uid: 1857
components:
- type: Transform
- pos: -13.607726,-8.476817
+ pos: 12.5,-26.5
parent: 1
-- proto: BookshelfFilled
- entities:
- - uid: 93
+ - uid: 1858
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -16.5,-8.5
+ pos: 6.5,-30.5
parent: 1
- - uid: 94
+ - uid: 1859
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -15.5,-8.5
+ pos: 4.5,-30.5
parent: 1
- - uid: 95
+ - uid: 1860
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -16.5,-12.5
+ pos: 3.5,-30.5
parent: 1
- - uid: 96
+ - uid: 1861
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -15.5,-12.5
+ pos: -16.5,-23.5
parent: 1
-- proto: BoozeDispenser
- entities:
- - uid: 97
+ - uid: 1862
components:
- type: Transform
- pos: -4.5,-5.5
+ pos: -4.5,-30.5
parent: 1
-- proto: BoxBodyBag
- entities:
- - uid: 98
+ - uid: 1863
components:
- type: Transform
- pos: 17.63137,-20.525381
+ pos: -5.5,-30.5
parent: 1
-- proto: BoxMRE
- entities:
- - uid: 99
+ - uid: 1864
components:
- type: Transform
- pos: -5.796024,-3.4417071
+ pos: -6.5,-30.5
parent: 1
-- proto: BoxPillCanister
- entities:
- - uid: 100
+ - uid: 1865
components:
- type: Transform
- pos: 17.303503,-20.40484
+ pos: -7.5,-30.5
parent: 1
-- proto: CableApcExtension
- entities:
- - uid: 101
+ - uid: 1866
components:
- type: Transform
- pos: -15.5,-18.5
+ pos: -13.5,-26.5
parent: 1
- - uid: 102
+ - uid: 1867
components:
- type: Transform
- pos: -1.5,5.5
+ pos: -14.5,-26.5
parent: 1
- - uid: 103
+ - uid: 1868
components:
- type: Transform
- pos: -1.5,6.5
+ pos: -12.5,-6.5
parent: 1
- - uid: 104
+ - uid: 1869
components:
- type: Transform
- pos: -1.5,7.5
+ pos: -11.5,-16.5
parent: 1
- - uid: 105
+ - uid: 1870
components:
- type: Transform
- pos: -2.5,7.5
+ pos: -11.5,-17.5
parent: 1
- - uid: 106
+ - uid: 1871
components:
- type: Transform
- pos: -0.5,7.5
+ pos: -7.5,-17.5
parent: 1
- - uid: 107
+ - uid: 1872
components:
- type: Transform
- pos: 0.5,7.5
+ pos: -12.5,-5.5
parent: 1
- - uid: 108
+ - uid: 1873
components:
- type: Transform
- pos: 1.5,7.5
+ pos: -12.5,-4.5
parent: 1
- - uid: 109
+ - uid: 1874
components:
- type: Transform
- pos: -2.5,5.5
+ pos: -12.5,-3.5
parent: 1
- - uid: 110
+ - uid: 1875
components:
- type: Transform
- pos: -3.5,5.5
+ pos: -12.5,-2.5
parent: 1
- - uid: 111
+ - uid: 1876
components:
- type: Transform
- pos: -0.5,5.5
+ pos: -12.5,-1.5
parent: 1
- - uid: 112
+ - uid: 1877
components:
- type: Transform
- pos: 0.5,5.5
+ pos: -13.5,-5.5
parent: 1
- - uid: 113
+ - uid: 1878
components:
- type: Transform
- pos: 1.5,5.5
+ pos: -13.5,-6.5
parent: 1
- - uid: 114
+ - uid: 1879
components:
- type: Transform
- pos: 2.5,5.5
+ pos: -14.5,-6.5
parent: 1
- - uid: 115
+ - uid: 1880
components:
- type: Transform
- pos: -7.5,3.5
+ pos: -7.5,-8.5
parent: 1
- - uid: 116
+ - uid: 1881
components:
- type: Transform
- pos: 5.5,3.5
+ pos: -8.5,-7.5
parent: 1
- - uid: 117
+ - uid: 1882
components:
- type: Transform
- pos: 6.5,3.5
+ pos: -8.5,-6.5
parent: 1
- - uid: 118
+ - uid: 1883
components:
- type: Transform
- pos: 12.5,-16.5
+ pos: -8.5,-5.5
parent: 1
- - uid: 119
+ - uid: 1884
components:
- type: Transform
- pos: 10.5,-16.5
+ pos: -8.5,-4.5
parent: 1
- - uid: 120
+ - uid: 1885
components:
- type: Transform
- pos: -14.5,-19.5
+ pos: -8.5,1.5
parent: 1
- - uid: 121
+ - uid: 1886
components:
- type: Transform
- pos: 0.5,4.5
+ pos: -8.5,2.5
parent: 1
- - uid: 122
+ - uid: 1887
components:
- type: Transform
- pos: 0.5,3.5
+ pos: -8.5,3.5
parent: 1
- - uid: 123
+ - uid: 1888
components:
- type: Transform
- pos: 0.5,1.5
+ pos: -8.5,4.5
parent: 1
- - uid: 124
+ - uid: 1889
components:
- type: Transform
- pos: 0.5,0.5
+ pos: -6.5,5.5
parent: 1
- - uid: 125
+ - uid: 1890
components:
- type: Transform
- pos: 0.5,-0.5
+ pos: -5.5,6.5
parent: 1
- - uid: 126
+ - uid: 1891
components:
- type: Transform
- pos: 0.5,-1.5
+ pos: -4.5,8.5
parent: 1
- - uid: 127
+- proto: AtmosFixSaunaMarker
+ entities:
+ - uid: 117
components:
- type: Transform
- pos: 0.5,-2.5
+ pos: -13.5,-22.5
parent: 1
- - uid: 128
+ - uid: 305
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: -13.5,-24.5
parent: 1
- - uid: 129
+ - uid: 607
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: -14.5,-22.5
parent: 1
- - uid: 130
+ - uid: 1197
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: -14.5,-23.5
parent: 1
- - uid: 131
+ - uid: 1366
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: -13.5,-23.5
parent: 1
- - uid: 132
+- proto: AtmosFixShuttleNitrogenMarker
+ entities:
+ - uid: 559
components:
- type: Transform
- pos: 0.5,-7.5
+ pos: 7.5,-26.5
parent: 1
- - uid: 133
+ - uid: 560
components:
- type: Transform
- pos: 0.5,-8.5
+ pos: 7.5,-27.5
parent: 1
- - uid: 134
+- proto: AtmosFixShuttleOxygenMarker
+ entities:
+ - uid: 561
components:
- type: Transform
- pos: 0.5,-9.5
+ pos: 5.5,-26.5
parent: 1
- - uid: 135
+ - uid: 562
components:
- type: Transform
- pos: 0.5,-10.5
+ pos: 5.5,-27.5
parent: 1
- - uid: 136
+- proto: BarberScissors
+ entities:
+ - uid: 1768
components:
- type: Transform
- pos: 0.5,-11.5
+ pos: 3.5,-22.5
parent: 1
- - uid: 137
+- proto: BarSign
+ entities:
+ - uid: 63
components:
- type: Transform
- pos: 0.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-10.5
parent: 1
- - uid: 138
+- proto: Bed
+ entities:
+ - uid: 64
components:
- type: Transform
- pos: 0.5,-13.5
+ pos: -3.5,0.5
parent: 1
- - uid: 139
+ - uid: 67
components:
- type: Transform
- pos: 0.5,-14.5
+ pos: -4.5,-22.5
parent: 1
- - uid: 140
+ - uid: 75
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: 3.5,-28.5
parent: 1
- - uid: 141
+ - uid: 443
components:
- type: Transform
- pos: 0.5,-16.5
+ pos: 17.5,-14.5
parent: 1
- - uid: 142
+ - uid: 506
components:
- type: Transform
- pos: 0.5,-17.5
+ pos: 17.5,-16.5
parent: 1
- - uid: 143
+ - uid: 693
components:
- type: Transform
- pos: 0.5,-18.5
+ pos: 17.5,-15.5
parent: 1
- - uid: 144
+ - uid: 728
components:
- type: Transform
- pos: 0.5,-19.5
+ pos: 3.5,-24.5
parent: 1
- - uid: 145
+- proto: BedsheetCaptain
+ entities:
+ - uid: 73
components:
- type: Transform
- pos: 0.5,-20.5
+ pos: -3.5,0.5
parent: 1
- - uid: 146
+- proto: BedsheetMedical
+ entities:
+ - uid: 68
components:
- type: Transform
- pos: 0.5,-9.5
+ pos: 17.5,-14.5
parent: 1
- - uid: 147
+ - uid: 288
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: 17.5,-16.5
parent: 1
- - uid: 148
+ - uid: 543
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: 17.5,-15.5
parent: 1
- - uid: 149
+- proto: BedsheetSpawner
+ entities:
+ - uid: 71
components:
- type: Transform
- pos: -1.5,-9.5
+ pos: -4.5,-22.5
parent: 1
- - uid: 150
+ - uid: 72
components:
- type: Transform
- pos: -1.5,-8.5
+ pos: 3.5,-28.5
parent: 1
- - uid: 151
+ - uid: 712
components:
- type: Transform
- pos: -2.5,-8.5
+ pos: 3.5,-24.5
parent: 1
- - uid: 152
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 77
components:
- type: Transform
- pos: -3.5,-8.5
+ pos: 0.5,-16.5
parent: 1
- - uid: 153
+ - type: Physics
+ bodyType: Static
+ - uid: 78
components:
- type: Transform
- pos: -4.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-17.5
parent: 1
- - uid: 154
+ - type: Physics
+ bodyType: Static
+ - uid: 79
components:
- type: Transform
- pos: -4.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
parent: 1
- - uid: 155
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 80
components:
- type: Transform
- pos: -4.5,-6.5
+ pos: -0.5,-16.5
parent: 1
- - uid: 156
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 81
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: -1.5,-16.5
parent: 1
- - uid: 157
+ - type: Physics
+ bodyType: Static
+ - uid: 82
components:
- type: Transform
- pos: 2.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-18.5
parent: 1
- - uid: 158
+ - type: Physics
+ bodyType: Static
+ - uid: 83
components:
- type: Transform
- pos: 3.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-17.5
parent: 1
- - uid: 159
+ - type: Physics
+ bodyType: Static
+- proto: BlastDoor
+ entities:
+ - uid: 872
components:
- type: Transform
- pos: 3.5,-7.5
+ pos: -17.5,-22.5
parent: 1
- - uid: 160
+- proto: BlockGameArcade
+ entities:
+ - uid: 1787
components:
- type: Transform
- pos: 3.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
parent: 1
- - uid: 161
+- proto: BookRandom
+ entities:
+ - uid: 89
components:
- type: Transform
- pos: 4.5,-6.5
+ pos: 0.34862417,-18.29124
parent: 1
- - uid: 162
+ - uid: 90
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: -1.2216883,-17.494366
parent: 1
- - uid: 163
+ - uid: 91
components:
- type: Transform
- pos: 4.5,-4.5
+ pos: -1.5029383,-18.267803
parent: 1
- - uid: 164
+ - uid: 92
components:
- type: Transform
- pos: 4.5,-3.5
+ pos: -13.607726,-8.476817
parent: 1
- - uid: 165
+- proto: Bookshelf
+ entities:
+ - uid: 93
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: -16.5,-12.5
parent: 1
- - uid: 166
+ - uid: 95
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: -16.5,-8.5
parent: 1
- - uid: 167
+- proto: BookshelfFilled
+ entities:
+ - uid: 94
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: -15.5,-8.5
parent: 1
- - uid: 168
- components:
+- proto: BoxCandle
+ entities:
+ - uid: 749
+ components:
- type: Transform
- pos: -3.5,-20.5
+ pos: -18.5,-16.5
parent: 1
- - uid: 169
+- proto: BoxingBell
+ entities:
+ - uid: 807
components:
- type: Transform
- pos: -4.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-5.5
parent: 1
- - uid: 170
+- proto: BoxPaperCaptainsThoughts
+ entities:
+ - uid: 570
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: -4.5,3.5
parent: 1
- - uid: 171
+- proto: BrokenBottle
+ entities:
+ - uid: 127
components:
- type: Transform
- pos: -6.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-2.5
parent: 1
- - uid: 172
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 715
components:
- type: Transform
- pos: -7.5,-20.5
+ pos: -0.5,6.5
parent: 1
- - uid: 173
+ - uid: 865
components:
- type: Transform
- pos: -8.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-20.5
parent: 1
- - uid: 174
+- proto: CableApcExtension
+ entities:
+ - uid: 25
components:
- type: Transform
- pos: -9.5,-20.5
+ pos: 3.5,-4.5
parent: 1
- - uid: 175
+ - uid: 54
components:
- type: Transform
- pos: -10.5,-20.5
+ pos: -6.5,-8.5
parent: 1
- - uid: 176
+ - uid: 108
components:
- type: Transform
- pos: -11.5,-20.5
+ pos: -14.5,-18.5
parent: 1
- - uid: 177
+ - uid: 109
components:
- type: Transform
- pos: -12.5,-20.5
+ pos: -1.5,-0.5
parent: 1
- - uid: 178
+ - uid: 113
components:
- type: Transform
- pos: -13.5,-20.5
+ pos: -14.5,-17.5
parent: 1
- - uid: 179
+ - uid: 114
components:
- type: Transform
- pos: -14.5,-20.5
+ pos: -14.5,-19.5
parent: 1
- - uid: 180
+ - uid: 115
components:
- type: Transform
- pos: -14.5,-18.5
+ pos: -11.5,-25.5
parent: 1
- - uid: 181
+ - uid: 157
components:
- type: Transform
- pos: -14.5,-17.5
+ pos: -5.5,-25.5
parent: 1
- - uid: 182
+ - uid: 158
components:
- type: Transform
- pos: -14.5,-16.5
+ pos: -6.5,-25.5
parent: 1
- - uid: 183
+ - uid: 159
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: -7.5,-25.5
parent: 1
- - uid: 184
+ - uid: 160
components:
- type: Transform
- pos: -14.5,-14.5
+ pos: -8.5,-25.5
parent: 1
- - uid: 185
+ - uid: 161
components:
- type: Transform
- pos: -14.5,-13.5
+ pos: -9.5,-25.5
parent: 1
- - uid: 186
+ - uid: 162
components:
- type: Transform
- pos: -14.5,-12.5
+ pos: -10.5,-25.5
parent: 1
- - uid: 187
+ - uid: 164
components:
- type: Transform
- pos: -14.5,-11.5
+ pos: -7.5,-24.5
parent: 1
- - uid: 188
+ - uid: 165
components:
- type: Transform
- pos: -14.5,-10.5
+ pos: -7.5,-23.5
parent: 1
- - uid: 189
+ - uid: 166
components:
- type: Transform
- pos: -15.5,-10.5
+ pos: -7.5,-22.5
parent: 1
- - uid: 190
+ - uid: 167
components:
- type: Transform
- pos: -16.5,-10.5
+ pos: -7.5,-21.5
parent: 1
- - uid: 191
+ - uid: 168
components:
- type: Transform
- pos: -17.5,-10.5
+ pos: -7.5,-20.5
parent: 1
- - uid: 192
+ - uid: 170
components:
- type: Transform
- pos: -18.5,-10.5
+ pos: -16.5,-13.5
parent: 1
- - uid: 193
+ - uid: 171
components:
- type: Transform
- pos: 13.5,-19.5
+ pos: -16.5,-14.5
parent: 1
- - uid: 194
+ - uid: 172
components:
- type: Transform
- pos: 1.5,-20.5
+ pos: -15.5,-14.5
parent: 1
- - uid: 195
+ - uid: 173
components:
- type: Transform
- pos: 2.5,-20.5
+ pos: -14.5,-14.5
parent: 1
- - uid: 196
+ - uid: 177
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: 15.5,-20.5
parent: 1
- - uid: 197
+ - uid: 178
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: 15.5,-19.5
parent: 1
- - uid: 198
+ - uid: 179
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: -14.5,-23.5
parent: 1
- - uid: 199
+ - uid: 180
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: 15.5,-21.5
parent: 1
- - uid: 200
+ - uid: 183
components:
- type: Transform
- pos: 7.5,-20.5
+ pos: -14.5,-20.5
parent: 1
- - uid: 201
+ - uid: 184
components:
- type: Transform
- pos: 8.5,-20.5
+ pos: -14.5,-21.5
parent: 1
- - uid: 202
+ - uid: 185
components:
- type: Transform
- pos: 9.5,-20.5
+ pos: -14.5,-22.5
parent: 1
- - uid: 203
+ - uid: 186
components:
- type: Transform
- pos: 10.5,-20.5
+ pos: -13.5,-14.5
parent: 1
- - uid: 204
+ - uid: 187
components:
- type: Transform
- pos: 11.5,-20.5
+ pos: -14.5,-15.5
parent: 1
- - uid: 205
+ - uid: 188
components:
- type: Transform
- pos: 12.5,-20.5
+ pos: -13.5,-13.5
parent: 1
- - uid: 206
+ - uid: 189
components:
- type: Transform
- pos: 13.5,-20.5
+ pos: -13.5,-12.5
parent: 1
- - uid: 207
+ - uid: 190
components:
- type: Transform
- pos: 13.5,-18.5
+ pos: -14.5,-16.5
parent: 1
- - uid: 208
+ - uid: 191
components:
- type: Transform
- pos: 13.5,-17.5
+ pos: -13.5,-11.5
parent: 1
- - uid: 209
+ - uid: 192
components:
- type: Transform
- pos: 13.5,-16.5
+ pos: -14.5,-11.5
parent: 1
- - uid: 210
+ - uid: 193
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: -15.5,-11.5
parent: 1
- - uid: 211
+ - uid: 194
components:
- type: Transform
- pos: 13.5,-14.5
+ pos: -16.5,-11.5
parent: 1
- - uid: 212
+ - uid: 195
components:
- type: Transform
- pos: 13.5,-13.5
+ pos: -17.5,-11.5
parent: 1
- - uid: 213
+ - uid: 196
components:
- type: Transform
- pos: 13.5,-12.5
+ pos: -18.5,-11.5
parent: 1
- - uid: 214
+ - uid: 197
components:
- type: Transform
- pos: 13.5,-11.5
+ pos: -19.5,-11.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -13.5,-10.5
parent: 1
- uid: 215
components:
- type: Transform
- pos: 13.5,-10.5
+ pos: 1.5,-25.5
parent: 1
- uid: 216
components:
- type: Transform
- pos: 14.5,-10.5
+ pos: 0.5,-25.5
parent: 1
- uid: 217
components:
- type: Transform
- pos: 15.5,-10.5
+ pos: -0.5,-25.5
parent: 1
- uid: 218
components:
- type: Transform
- pos: 16.5,-10.5
+ pos: -0.5,-26.5
parent: 1
- uid: 219
components:
- type: Transform
- pos: 17.5,-10.5
+ pos: -1.5,-26.5
parent: 1
- uid: 220
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: 1.5,-26.5
parent: 1
- uid: 221
components:
- type: Transform
- pos: 6.5,-21.5
+ pos: 2.5,-26.5
parent: 1
- uid: 222
components:
- type: Transform
- pos: 6.5,-22.5
+ pos: -2.5,-30.5
parent: 1
- uid: 223
components:
- type: Transform
- pos: 6.5,-23.5
+ pos: -2.5,-26.5
parent: 1
- uid: 224
components:
- type: Transform
- pos: 7.5,-23.5
+ pos: -3.5,-26.5
parent: 1
- uid: 225
components:
- type: Transform
- pos: 7.5,-24.5
+ pos: 0.5,-30.5
parent: 1
- uid: 226
components:
- type: Transform
- pos: 7.5,-25.5
+ pos: -0.5,-24.5
parent: 1
- uid: 227
components:
- type: Transform
- pos: -0.5,-21.5
+ pos: -0.5,-23.5
parent: 1
- uid: 228
components:
- type: Transform
- pos: 10.5,-25.5
+ pos: 0.5,-23.5
parent: 1
- uid: 229
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: 1.5,-23.5
parent: 1
- uid: 230
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: 2.5,-23.5
parent: 1
- uid: 231
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: -1.5,-23.5
parent: 1
- uid: 232
components:
- type: Transform
- pos: 9.5,-25.5
+ pos: -2.5,-23.5
parent: 1
- uid: 233
components:
- type: Transform
- pos: 8.5,-25.5
+ pos: -3.5,-23.5
parent: 1
- uid: 234
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: -1.5,-27.5
parent: 1
- uid: 235
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: -1.5,-28.5
parent: 1
- uid: 236
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: -1.5,-29.5
parent: 1
- uid: 237
components:
- type: Transform
- pos: -1.5,-27.5
+ pos: -1.5,-30.5
parent: 1
- uid: 238
components:
- type: Transform
- pos: -2.5,-27.5
- parent: 1
- - uid: 239
- components:
- - type: Transform
- pos: -3.5,-27.5
+ pos: -0.5,-30.5
parent: 1
- uid: 240
components:
- type: Transform
- pos: 0.5,-27.5
+ pos: 1.5,-30.5
parent: 1
- uid: 241
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: 13.5,-19.5
parent: 1
- uid: 242
components:
- type: Transform
- pos: -1.5,-23.5
+ pos: -3.5,-30.5
parent: 1
- uid: 243
components:
- type: Transform
- pos: -2.5,-23.5
+ pos: 2.5,-30.5
parent: 1
- - uid: 244
+ - uid: 252
components:
- type: Transform
- pos: -3.5,-23.5
+ pos: 9.5,-22.5
parent: 1
- - uid: 245
+ - uid: 256
components:
- type: Transform
- pos: 0.5,-23.5
+ pos: 7.5,-20.5
parent: 1
- - uid: 246
+ - uid: 260
components:
- type: Transform
- pos: 1.5,-23.5
+ pos: 16.5,-19.5
parent: 1
- - uid: 247
+ - uid: 263
components:
- type: Transform
- pos: 2.5,-23.5
+ pos: 6.5,-20.5
parent: 1
- - uid: 248
+ - uid: 275
components:
- type: Transform
- pos: -6.5,-21.5
+ pos: 11.5,-14.5
parent: 1
- - uid: 249
+ - uid: 278
components:
- type: Transform
- pos: -6.5,-22.5
+ pos: 12.5,-14.5
parent: 1
- - uid: 250
+ - uid: 279
components:
- type: Transform
- pos: -6.5,-23.5
+ pos: 13.5,-14.5
parent: 1
- - uid: 251
+ - uid: 280
components:
- type: Transform
- pos: -6.5,-24.5
+ pos: 13.5,-15.5
parent: 1
- - uid: 252
+ - uid: 281
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: 13.5,-16.5
parent: 1
- - uid: 253
+ - uid: 282
components:
- type: Transform
- pos: -5.5,-25.5
+ pos: 13.5,-17.5
parent: 1
- - uid: 254
+ - uid: 283
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: 13.5,-18.5
parent: 1
- - uid: 255
+ - uid: 289
components:
- type: Transform
- pos: -0.5,-29.5
+ pos: 4.5,4.5
parent: 1
- - uid: 256
+ - uid: 290
components:
- type: Transform
- pos: -0.5,-30.5
+ pos: 3.5,-7.5
parent: 1
- - uid: 257
+ - uid: 291
components:
- type: Transform
- pos: -0.5,-31.5
+ pos: 16.5,-18.5
parent: 1
- - uid: 258
+ - uid: 292
components:
- type: Transform
- pos: -0.5,2.5
+ pos: 16.5,-17.5
parent: 1
- - uid: 259
+ - uid: 293
components:
- type: Transform
- pos: -1.5,2.5
+ pos: 16.5,-16.5
parent: 1
- - uid: 260
+ - uid: 295
components:
- type: Transform
- pos: -2.5,2.5
+ pos: 13.5,-13.5
parent: 1
- - uid: 261
+ - uid: 296
components:
- type: Transform
- pos: -3.5,2.5
+ pos: 13.5,-12.5
parent: 1
- - uid: 262
+ - uid: 297
components:
- type: Transform
- pos: -4.5,2.5
+ pos: 13.5,-11.5
parent: 1
- - uid: 263
+ - uid: 298
components:
- type: Transform
- pos: -5.5,2.5
+ pos: 13.5,-10.5
parent: 1
- - uid: 264
+ - uid: 299
components:
- type: Transform
- pos: 0.5,2.5
+ pos: 13.5,-9.5
parent: 1
- - uid: 265
+ - uid: 300
components:
- type: Transform
- pos: 1.5,2.5
+ pos: 14.5,-11.5
parent: 1
- - uid: 266
+ - uid: 301
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 15.5,-11.5
parent: 1
- - uid: 267
+ - uid: 302
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 16.5,-11.5
parent: 1
- - uid: 268
+ - uid: 303
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 17.5,-11.5
parent: 1
- - uid: 269
+ - uid: 304
components:
- type: Transform
- pos: -14.5,-21.5
+ pos: 18.5,-11.5
parent: 1
- - uid: 270
+ - uid: 335
components:
- type: Transform
- pos: -14.5,-22.5
+ pos: -5.5,-8.5
parent: 1
- - uid: 271
+ - uid: 336
components:
- type: Transform
- pos: -14.5,-23.5
+ pos: -5.5,-7.5
parent: 1
- - uid: 272
+ - uid: 337
components:
- type: Transform
- pos: -13.5,-23.5
+ pos: -5.5,-6.5
parent: 1
- - uid: 273
+ - uid: 338
components:
- type: Transform
- pos: -13.5,-24.5
+ pos: -6.5,-6.5
parent: 1
- - uid: 274
+ - uid: 339
components:
- type: Transform
- pos: 13.5,-21.5
+ pos: -6.5,-5.5
parent: 1
- - uid: 275
+ - uid: 340
components:
- type: Transform
- pos: 13.5,-22.5
+ pos: 5.5,-8.5
parent: 1
- - uid: 276
+ - uid: 341
components:
- type: Transform
- pos: 13.5,-23.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 277
+ - uid: 346
components:
- type: Transform
- pos: 12.5,-23.5
+ pos: 3.5,-8.5
parent: 1
- - uid: 278
+ - uid: 347
components:
- type: Transform
- pos: 12.5,-24.5
+ pos: -4.5,-8.5
parent: 1
- - uid: 279
+ - uid: 348
components:
- type: Transform
- pos: 14.5,-15.5
+ pos: -4.5,-9.5
parent: 1
- - uid: 280
+ - uid: 349
components:
- type: Transform
- pos: 15.5,-15.5
+ pos: -4.5,-10.5
parent: 1
- - uid: 281
+ - uid: 350
components:
- type: Transform
- pos: 16.5,-15.5
+ pos: -4.5,-11.5
parent: 1
- - uid: 282
+ - uid: 351
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: -4.5,-12.5
parent: 1
- - uid: 283
+ - uid: 352
components:
- type: Transform
- pos: -6.5,-26.5
+ pos: -4.5,-13.5
parent: 1
- - uid: 284
+ - uid: 353
components:
- type: Transform
- pos: -6.5,-27.5
+ pos: -4.5,-14.5
parent: 1
- - uid: 285
+ - uid: 354
components:
- type: Transform
- pos: -5.5,-27.5
+ pos: -4.5,-15.5
parent: 1
- - uid: 286
+ - uid: 355
components:
- type: Transform
- pos: -5.5,-28.5
+ pos: -4.5,-16.5
parent: 1
- - uid: 287
+ - uid: 356
components:
- type: Transform
- pos: -5.5,-29.5
+ pos: -3.5,-15.5
parent: 1
- - uid: 288
+ - uid: 357
components:
- type: Transform
- pos: -5.5,-30.5
+ pos: -2.5,-15.5
parent: 1
- - uid: 289
+ - uid: 358
components:
- type: Transform
- pos: -4.5,-30.5
+ pos: 1.5,-15.5
parent: 1
- - uid: 290
+ - uid: 359
components:
- type: Transform
- pos: 7.5,-26.5
+ pos: 3.5,-15.5
parent: 1
- - uid: 291
+ - uid: 360
components:
- type: Transform
- pos: 7.5,-26.5
+ pos: 2.5,-15.5
parent: 1
- - uid: 292
+ - uid: 361
components:
- type: Transform
- pos: 7.5,-28.5
+ pos: 3.5,-16.5
parent: 1
- - uid: 293
+ - uid: 362
components:
- type: Transform
- pos: 7.5,-27.5
+ pos: -0.5,-22.5
parent: 1
- - uid: 294
+ - uid: 363
components:
- type: Transform
- pos: 6.5,-28.5
+ pos: -0.5,-21.5
parent: 1
- - uid: 295
+ - uid: 364
components:
- type: Transform
- pos: 6.5,-29.5
+ pos: -0.5,-20.5
parent: 1
- - uid: 296
+ - uid: 365
components:
- type: Transform
- pos: 5.5,-29.5
+ pos: -0.5,-19.5
parent: 1
- - uid: 297
+ - uid: 366
components:
- type: Transform
- pos: 4.5,-29.5
+ pos: 3.5,-14.5
parent: 1
- - uid: 298
+ - uid: 367
components:
- type: Transform
- pos: 4.5,-30.5
+ pos: 3.5,-13.5
parent: 1
- - uid: 299
+ - uid: 368
components:
- type: Transform
- pos: 3.5,-30.5
+ pos: 3.5,-12.5
parent: 1
- - uid: 300
+ - uid: 369
components:
- type: Transform
- pos: -15.5,-23.5
+ pos: 3.5,-11.5
parent: 1
- - uid: 301
+ - uid: 370
components:
- type: Transform
- pos: -16.5,-23.5
+ pos: 3.5,-10.5
parent: 1
- - uid: 302
+ - uid: 371
components:
- type: Transform
- pos: 14.5,-23.5
+ pos: 3.5,-9.5
parent: 1
- - uid: 303
+ - uid: 380
components:
- type: Transform
- pos: 15.5,-23.5
+ pos: 0.5,3.5
parent: 1
- - uid: 304
+ - uid: 381
components:
- type: Transform
- pos: 11.5,-16.5
+ pos: 0.5,4.5
parent: 1
- - uid: 305
+ - uid: 382
components:
- type: Transform
- pos: -13.5,-16.5
+ pos: 0.5,5.5
parent: 1
- - uid: 306
+ - uid: 383
components:
- type: Transform
- pos: -12.5,-16.5
+ pos: 0.5,6.5
parent: 1
- - uid: 307
+ - uid: 384
components:
- type: Transform
- pos: -11.5,-16.5
+ pos: -0.5,6.5
parent: 1
- - uid: 308
+ - uid: 385
components:
- type: Transform
- pos: -7.5,-25.5
+ pos: -1.5,6.5
parent: 1
- - uid: 309
+ - uid: 386
components:
- type: Transform
- pos: -8.5,-25.5
+ pos: -2.5,6.5
parent: 1
- - uid: 310
+ - uid: 387
components:
- type: Transform
- pos: -10.5,-25.5
+ pos: -3.5,6.5
parent: 1
- - uid: 311
+ - uid: 388
components:
- type: Transform
- pos: -9.5,-25.5
+ pos: 1.5,6.5
parent: 1
- - uid: 312
+ - uid: 389
components:
- type: Transform
- pos: -19.5,-10.5
+ pos: 2.5,6.5
parent: 1
- - uid: 313
+ - uid: 390
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: -2.5,0.5
parent: 1
- - uid: 314
+ - uid: 391
components:
- type: Transform
- pos: -20.5,-9.5
+ pos: -1.5,0.5
parent: 1
- - uid: 315
+ - uid: 392
components:
- type: Transform
- pos: -20.5,-11.5
+ pos: -3.5,0.5
parent: 1
- - uid: 316
+ - uid: 393
components:
- type: Transform
- pos: 18.5,-10.5
+ pos: -4.5,0.5
parent: 1
- - uid: 317
+ - uid: 394
components:
- type: Transform
- pos: 19.5,-10.5
+ pos: -5.5,0.5
parent: 1
- - uid: 318
+ - uid: 397
components:
- type: Transform
- pos: 19.5,-9.5
+ pos: -6.5,0.5
parent: 1
- - uid: 319
+ - uid: 398
components:
- type: Transform
- pos: 19.5,-11.5
+ pos: -6.5,1.5
parent: 1
- - uid: 320
+ - uid: 399
components:
- type: Transform
- pos: 15.5,-16.5
+ pos: -6.5,2.5
parent: 1
- - uid: 321
+ - uid: 400
components:
- type: Transform
- pos: 15.5,-17.5
+ pos: -6.5,3.5
parent: 1
- - uid: 322
+ - uid: 401
components:
- type: Transform
- pos: 15.5,-18.5
+ pos: -0.5,0.5
parent: 1
- - uid: 323
+ - uid: 404
components:
- type: Transform
- pos: 15.5,-19.5
+ pos: 1.5,1.5
parent: 1
- - uid: 324
+ - uid: 405
components:
- type: Transform
- pos: 15.5,-20.5
+ pos: 2.5,1.5
parent: 1
- - uid: 325
+ - uid: 406
components:
- type: Transform
- pos: 16.5,-18.5
+ pos: 3.5,1.5
parent: 1
- - uid: 326
+ - uid: 407
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: 4.5,1.5
parent: 1
- - uid: 327
+ - uid: 408
components:
- type: Transform
- pos: 2.5,-27.5
+ pos: 5.5,1.5
parent: 1
- - uid: 328
+ - uid: 410
components:
- type: Transform
- pos: 3.5,-27.5
+ pos: -1.5,-4.5
parent: 1
- - uid: 329
+ - uid: 411
components:
- type: Transform
- pos: -0.5,-16.5
+ pos: -1.5,-2.5
parent: 1
- - uid: 330
+ - uid: 412
components:
- type: Transform
- pos: -1.5,-16.5
+ pos: -1.5,-1.5
parent: 1
- - uid: 331
+ - uid: 413
components:
- type: Transform
- pos: -3.5,-16.5
+ pos: -2.5,-2.5
parent: 1
- - uid: 332
+ - uid: 414
components:
- type: Transform
- pos: -2.5,-16.5
+ pos: -3.5,-2.5
parent: 1
- - uid: 333
+ - uid: 415
components:
- type: Transform
- pos: -4.5,-16.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 334
+ - uid: 416
components:
- type: Transform
- pos: -5.5,-16.5
+ pos: -1.5,-5.5
parent: 1
- - uid: 335
+ - uid: 418
components:
- type: Transform
- pos: -5.5,-15.5
+ pos: -4.5,-17.5
parent: 1
- - uid: 336
+ - uid: 419
components:
- type: Transform
- pos: -5.5,-14.5
+ pos: 3.5,-17.5
parent: 1
- - uid: 337
+ - uid: 435
components:
- type: Transform
- pos: -5.5,-13.5
+ pos: -1.5,-20.5
parent: 1
- - uid: 338
+ - uid: 473
components:
- type: Transform
- pos: -5.5,-12.5
+ pos: -2.5,-20.5
parent: 1
- - uid: 339
+ - uid: 474
components:
- type: Transform
- pos: -5.5,-11.5
+ pos: 0.5,-20.5
parent: 1
- - uid: 340
+ - uid: 475
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: 1.5,-20.5
parent: 1
- - uid: 341
+ - uid: 477
components:
- type: Transform
- pos: 2.5,-16.5
+ pos: 8.5,-23.5
parent: 1
- - uid: 342
+ - uid: 480
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: 9.5,-23.5
parent: 1
- - uid: 343
+ - uid: 481
components:
- type: Transform
- pos: 3.5,-16.5
+ pos: 9.5,-24.5
parent: 1
- - uid: 344
+ - uid: 482
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 9.5,-25.5
parent: 1
- - uid: 345
+ - uid: 483
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: 9.5,-26.5
parent: 1
- - uid: 346
+ - uid: 484
components:
- type: Transform
- pos: 4.5,-13.5
+ pos: 10.5,-26.5
parent: 1
- - uid: 347
+ - uid: 499
components:
- type: Transform
- pos: 4.5,-12.5
+ pos: 8.5,-20.5
parent: 1
- - uid: 348
+ - uid: 500
components:
- type: Transform
- pos: 4.5,-11.5
+ pos: 9.5,-20.5
parent: 1
- - uid: 349
+ - uid: 504
components:
- type: Transform
- pos: 4.5,-10.5
+ pos: 9.5,-21.5
parent: 1
- - uid: 350
+ - uid: 515
components:
- type: Transform
- pos: 4.5,-9.5
+ pos: 4.5,3.5
parent: 1
- - uid: 351
+ - uid: 518
components:
- type: Transform
- pos: 4.5,-8.5
+ pos: 12.5,-20.5
parent: 1
- - uid: 352
+ - uid: 519
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: 12.5,-21.5
parent: 1
- - uid: 353
+ - uid: 520
components:
- type: Transform
- pos: -5.5,-8.5
+ pos: 12.5,-19.5
parent: 1
- - uid: 354
+ - uid: 521
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: 12.5,-22.5
parent: 1
- - uid: 355
+ - uid: 523
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 14.5,-19.5
parent: 1
- - uid: 356
+ - uid: 531
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: 4.5,2.5
parent: 1
- - uid: 357
+ - uid: 552
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: 0.5,1.5
parent: 1
- - uid: 358
+ - uid: 584
components:
- type: Transform
- pos: -4.5,-2.5
+ pos: -10.5,-20.5
parent: 1
- - uid: 359
+ - uid: 599
components:
- type: Transform
- pos: -3.5,-2.5
+ pos: 4.5,-4.5
parent: 1
- - uid: 360
+ - uid: 600
components:
- type: Transform
- pos: -5.5,-2.5
+ pos: 5.5,-4.5
parent: 1
- - uid: 361
+ - uid: 637
components:
- type: Transform
- pos: -0.5,0.5
+ pos: 18.5,-10.5
parent: 1
- - uid: 362
+ - uid: 639
components:
- type: Transform
- pos: -1.5,0.5
+ pos: -19.5,-10.5
parent: 1
- - uid: 363
+ - uid: 687
components:
- type: Transform
- pos: -1.5,-0.5
+ pos: -9.5,-20.5
parent: 1
- - uid: 364
+ - uid: 725
components:
- type: Transform
- pos: -6.5,2.5
+ pos: -13.5,-8.5
parent: 1
- - uid: 365
+ - uid: 729
components:
- type: Transform
- pos: -7.5,2.5
+ pos: -8.5,-20.5
parent: 1
- - uid: 366
+ - uid: 737
components:
- type: Transform
- pos: -8.5,2.5
+ pos: 13.5,-8.5
parent: 1
- - uid: 367
+ - uid: 750
components:
- type: Transform
- pos: -8.5,3.5
+ pos: 3.5,-5.5
parent: 1
- - uid: 368
+ - uid: 753
components:
- type: Transform
- pos: -8.5,4.5
+ pos: -1.5,-6.5
parent: 1
- - uid: 369
+ - uid: 776
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 12.5,-8.5
parent: 1
- - uid: 370
+ - uid: 794
components:
- type: Transform
- pos: 6.5,2.5
+ pos: -13.5,-9.5
parent: 1
- - uid: 371
+ - uid: 819
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -0.5,1.5
parent: 1
- - uid: 372
+ - uid: 843
components:
- type: Transform
- pos: 7.5,3.5
+ pos: 3.5,-6.5
parent: 1
- - uid: 373
+ - uid: 864
components:
- type: Transform
- pos: 7.5,4.5
+ pos: -0.5,-18.5
parent: 1
- - uid: 374
+ - uid: 877
components:
- type: Transform
- pos: 7.5,1.5
+ pos: -15.5,-19.5
parent: 1
- - uid: 375
+ - uid: 878
components:
- type: Transform
- pos: 5.5,-6.5
+ pos: -16.5,-19.5
parent: 1
- - uid: 376
+ - uid: 960
components:
- type: Transform
- pos: 6.5,-6.5
+ pos: -11.5,-26.5
parent: 1
- - uid: 377
+ - uid: 1191
components:
- type: Transform
- pos: 7.5,-6.5
+ pos: -2.5,-14.5
parent: 1
- - uid: 378
+ - uid: 1201
components:
- type: Transform
- pos: 7.5,-5.5
+ pos: 1.5,-12.5
parent: 1
- - uid: 379
+ - uid: 1237
components:
- type: Transform
- pos: 6.5,-7.5
+ pos: 2.5,-12.5
parent: 1
- - uid: 380
+ - uid: 1764
components:
- type: Transform
- pos: -5.5,-6.5
+ pos: 7.5,-23.5
parent: 1
- - uid: 381
+ - uid: 1766
components:
- type: Transform
- pos: -6.5,-6.5
+ pos: -4.5,-2.5
parent: 1
- - uid: 382
+ - uid: 1810
components:
- type: Transform
- pos: -7.5,-6.5
+ pos: -0.5,-7.5
parent: 1
- - uid: 383
+ - uid: 1812
components:
- type: Transform
- pos: -8.5,-6.5
+ pos: -1.5,-7.5
parent: 1
- - uid: 384
+ - uid: 1814
components:
- type: Transform
- pos: -8.5,-5.5
+ pos: 0.5,-12.5
parent: 1
- - uid: 385
+- proto: CableApcStack
+ entities:
+ - uid: 395
components:
- type: Transform
- pos: 11.5,-25.5
+ pos: -6.6621842,-3.3624609
parent: 1
- - uid: 386
+ - uid: 396
components:
- type: Transform
- pos: 12.5,-25.5
+ pos: -6.3809342,-3.5499609
parent: 1
- - uid: 387
+- proto: CableHV
+ entities:
+ - uid: 39
components:
- type: Transform
- pos: 12.5,-26.5
+ pos: -8.5,-23.5
parent: 1
- - uid: 388
+ - uid: 52
components:
- type: Transform
- pos: -11.5,-25.5
+ pos: -8.5,-24.5
parent: 1
- - uid: 389
+ - uid: 116
components:
- type: Transform
- pos: -12.5,-25.5
+ pos: -7.5,-25.5
parent: 1
- - uid: 390
+ - uid: 121
components:
- type: Transform
- pos: -13.5,-25.5
+ pos: -8.5,-26.5
parent: 1
- - uid: 391
+ - uid: 122
components:
- type: Transform
- pos: -13.5,-26.5
+ pos: -8.5,-27.5
parent: 1
- - uid: 392
+ - uid: 125
components:
- type: Transform
- pos: -16.5,-18.5
+ pos: -8.5,-25.5
parent: 1
- - uid: 393
+ - uid: 128
components:
- type: Transform
- pos: -17.5,-18.5
+ pos: -6.5,-28.5
parent: 1
- - uid: 394
+ - uid: 131
components:
- type: Transform
- pos: -18.5,-18.5
+ pos: -6.5,-27.5
parent: 1
-- proto: CableApcStack
- entities:
- - uid: 395
+ - uid: 995
components:
- type: Transform
- pos: -6.6621842,-3.3624609
+ pos: -7.5,-27.5
parent: 1
- - uid: 396
+ - uid: 1901
components:
- type: Transform
- pos: -6.3809342,-3.5499609
+ pos: -7.5,-26.5
parent: 1
-- proto: CableHV
+- proto: CableMV
entities:
- - uid: 397
+ - uid: 101
components:
- type: Transform
- pos: 5.5,-7.5
+ pos: -1.5,-6.5
parent: 1
- - uid: 398
+ - uid: 103
components:
- type: Transform
- pos: 6.5,-7.5
+ pos: -1.5,-2.5
parent: 1
- - uid: 399
+ - uid: 105
components:
- type: Transform
- pos: 6.5,-6.5
+ pos: -1.5,-7.5
parent: 1
- - uid: 400
+ - uid: 106
components:
- type: Transform
- pos: 6.5,-5.5
+ pos: -1.5,-3.5
parent: 1
- - uid: 401
+ - uid: 107
components:
- type: Transform
- pos: 6.5,-4.5
+ pos: -1.5,-5.5
parent: 1
- - uid: 402
+ - uid: 110
components:
- type: Transform
- pos: 6.5,-3.5
+ pos: -1.5,-1.5
parent: 1
- - uid: 403
+ - uid: 111
components:
- type: Transform
- pos: 6.5,-2.5
+ pos: -1.5,-4.5
parent: 1
- - uid: 404
+ - uid: 112
components:
- type: Transform
- pos: 6.5,-1.5
+ pos: -6.5,-20.5
parent: 1
- - uid: 405
+ - uid: 129
components:
- type: Transform
- pos: 6.5,-0.5
+ pos: -6.5,-27.5
parent: 1
- - uid: 406
+ - uid: 133
components:
- type: Transform
- pos: 6.5,0.5
+ pos: -7.5,-25.5
parent: 1
- - uid: 407
+ - uid: 134
components:
- type: Transform
- pos: 6.5,1.5
+ pos: -7.5,-24.5
parent: 1
- - uid: 408
+ - uid: 135
components:
- type: Transform
- pos: 6.5,2.5
+ pos: -7.5,-23.5
parent: 1
- - uid: 409
+ - uid: 136
components:
- type: Transform
- pos: 6.5,3.5
+ pos: -7.5,-22.5
parent: 1
- - uid: 410
+ - uid: 137
components:
- type: Transform
- pos: 6.5,4.5
+ pos: -7.5,-21.5
parent: 1
- - uid: 411
+ - uid: 138
components:
- type: Transform
- pos: 5.5,4.5
+ pos: -7.5,-20.5
parent: 1
- - uid: 412
+ - uid: 139
components:
- type: Transform
- pos: 4.5,4.5
+ pos: -8.5,-20.5
parent: 1
- - uid: 413
+ - uid: 140
components:
- type: Transform
- pos: 4.5,5.5
+ pos: -9.5,-20.5
parent: 1
- - uid: 414
+ - uid: 141
components:
- type: Transform
- pos: 3.5,5.5
+ pos: -10.5,-20.5
parent: 1
- - uid: 415
+ - uid: 142
components:
- type: Transform
- pos: 3.5,6.5
+ pos: -11.5,-20.5
parent: 1
- - uid: 416
+ - uid: 143
components:
- type: Transform
- pos: 3.5,7.5
+ pos: -12.5,-20.5
parent: 1
- - uid: 417
+ - uid: 144
components:
- type: Transform
- pos: 2.5,7.5
+ pos: -13.5,-20.5
parent: 1
- - uid: 418
+ - uid: 145
components:
- type: Transform
- pos: 2.5,8.5
+ pos: -14.5,-20.5
parent: 1
- - uid: 419
+ - uid: 146
components:
- type: Transform
- pos: 1.5,8.5
+ pos: -14.5,-19.5
parent: 1
- - uid: 420
+ - uid: 147
components:
- type: Transform
- pos: 0.5,8.5
+ pos: -14.5,-18.5
parent: 1
- - uid: 421
+ - uid: 148
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -14.5,-17.5
parent: 1
- - uid: 422
+ - uid: 149
components:
- type: Transform
- pos: -1.5,8.5
+ pos: -14.5,-16.5
parent: 1
- - uid: 423
+ - uid: 150
components:
- type: Transform
- pos: -2.5,8.5
+ pos: -14.5,-15.5
parent: 1
- - uid: 424
+ - uid: 151
components:
- type: Transform
- pos: -3.5,8.5
+ pos: -14.5,-14.5
parent: 1
- - uid: 425
+ - uid: 152
components:
- type: Transform
- pos: -3.5,7.5
+ pos: -15.5,-14.5
parent: 1
- - uid: 426
+ - uid: 153
components:
- type: Transform
- pos: -4.5,7.5
+ pos: -16.5,-14.5
parent: 1
- - uid: 427
+ - uid: 154
components:
- type: Transform
- pos: -4.5,6.5
+ pos: -16.5,-13.5
parent: 1
- - uid: 428
+ - uid: 155
components:
- type: Transform
- pos: -4.5,5.5
+ pos: -6.5,-25.5
parent: 1
- - uid: 429
+ - uid: 156
components:
- type: Transform
- pos: -5.5,5.5
+ pos: -5.5,-25.5
parent: 1
- - uid: 430
+ - uid: 163
components:
- type: Transform
- pos: -5.5,4.5
+ pos: -6.5,-26.5
parent: 1
- - uid: 431
+ - uid: 201
components:
- type: Transform
- pos: -6.5,4.5
+ pos: -5.5,-20.5
parent: 1
- - uid: 432
+ - uid: 202
components:
- type: Transform
- pos: -7.5,4.5
+ pos: -4.5,-20.5
parent: 1
- - uid: 433
+ - uid: 203
components:
- type: Transform
- pos: -7.5,3.5
+ pos: -2.5,-20.5
parent: 1
- - uid: 434
+ - uid: 204
components:
- type: Transform
- pos: -7.5,2.5
+ pos: -3.5,-20.5
parent: 1
- - uid: 435
+ - uid: 205
components:
- type: Transform
- pos: -7.5,1.5
+ pos: -1.5,-20.5
parent: 1
- - uid: 436
+ - uid: 206
components:
- type: Transform
- pos: -7.5,0.5
+ pos: -0.5,-20.5
parent: 1
- - uid: 437
+ - uid: 207
components:
- type: Transform
- pos: -7.5,-0.5
+ pos: -0.5,-21.5
parent: 1
- - uid: 438
+ - uid: 208
components:
- type: Transform
- pos: -7.5,-1.5
+ pos: -0.5,-22.5
parent: 1
- - uid: 439
+ - uid: 209
components:
- type: Transform
- pos: -7.5,-2.5
+ pos: -0.5,-23.5
parent: 1
- - uid: 440
+ - uid: 210
components:
- type: Transform
- pos: -7.5,-3.5
+ pos: -0.5,-24.5
parent: 1
- - uid: 441
+ - uid: 211
components:
- type: Transform
- pos: -7.5,-4.5
+ pos: -0.5,-25.5
parent: 1
- - uid: 442
+ - uid: 212
components:
- type: Transform
- pos: -7.5,-5.5
+ pos: 0.5,-25.5
parent: 1
- - uid: 443
+ - uid: 213
components:
- type: Transform
- pos: -7.5,-6.5
+ pos: 1.5,-25.5
parent: 1
- - uid: 444
+ - uid: 244
components:
- type: Transform
- pos: -7.5,-7.5
+ pos: 0.5,-20.5
parent: 1
- - uid: 445
+ - uid: 245
components:
- type: Transform
- pos: -6.5,-7.5
+ pos: 1.5,-20.5
parent: 1
- - uid: 446
+ - uid: 246
components:
- type: Transform
- pos: -7.5,-22.5
+ pos: 2.5,-20.5
parent: 1
- - uid: 447
+ - uid: 247
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 3.5,-20.5
parent: 1
- - uid: 448
+ - uid: 248
components:
- type: Transform
- pos: -7.5,-23.5
+ pos: 4.5,-20.5
parent: 1
- - uid: 449
+ - uid: 249
components:
- type: Transform
- pos: -7.5,-24.5
+ pos: 5.5,-20.5
parent: 1
- - uid: 450
+ - uid: 250
components:
- type: Transform
- pos: -7.5,-25.5
+ pos: 6.5,-20.5
parent: 1
- - uid: 451
+ - uid: 251
components:
- type: Transform
- pos: -7.5,-26.5
+ pos: 7.5,-20.5
parent: 1
- - uid: 452
+ - uid: 253
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: 8.5,-20.5
parent: 1
- - uid: 453
+ - uid: 254
components:
- type: Transform
- pos: -7.5,-20.5
+ pos: 9.5,-20.5
parent: 1
- - uid: 454
+ - uid: 257
components:
- type: Transform
- pos: -7.5,-21.5
+ pos: -6.5,-28.5
parent: 1
- - uid: 455
+ - uid: 264
components:
- type: Transform
- pos: -6.5,-20.5
+ pos: 9.5,-21.5
parent: 1
- - uid: 456
+ - uid: 266
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: 10.5,-20.5
parent: 1
- - uid: 457
+ - uid: 267
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: 11.5,-20.5
parent: 1
- - uid: 458
+ - uid: 268
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: 12.5,-20.5
parent: 1
- - uid: 459
+ - uid: 269
components:
- type: Transform
- pos: -3.5,-20.5
+ pos: 12.5,-19.5
parent: 1
- - uid: 460
+ - uid: 270
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: 12.5,-18.5
parent: 1
- - uid: 461
+ - uid: 271
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: 12.5,-17.5
parent: 1
- - uid: 462
+ - uid: 272
components:
- type: Transform
- pos: -0.5,-19.5
+ pos: 12.5,-16.5
parent: 1
- - uid: 463
+ - uid: 273
components:
- type: Transform
- pos: -0.5,-18.5
+ pos: 12.5,-15.5
parent: 1
- - uid: 464
+ - uid: 276
components:
- type: Transform
- pos: -0.5,-17.5
+ pos: 12.5,-14.5
parent: 1
- - uid: 465
+ - uid: 277
components:
- type: Transform
- pos: -0.5,-16.5
+ pos: 11.5,-14.5
parent: 1
- - uid: 466
+ - uid: 306
components:
- type: Transform
- pos: -0.5,-15.5
+ pos: -3.5,-19.5
parent: 1
- - uid: 467
+ - uid: 307
components:
- type: Transform
- pos: -0.5,-14.5
+ pos: -3.5,-18.5
parent: 1
- - uid: 468
+ - uid: 308
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: -3.5,-17.5
parent: 1
- - uid: 469
+ - uid: 309
components:
- type: Transform
- pos: -0.5,-12.5
+ pos: -3.5,-16.5
parent: 1
- - uid: 470
+ - uid: 310
components:
- type: Transform
- pos: -0.5,-11.5
+ pos: -3.5,-15.5
parent: 1
- - uid: 471
+ - uid: 311
components:
- type: Transform
- pos: -0.5,-10.5
+ pos: -2.5,-15.5
parent: 1
- - uid: 472
+ - uid: 312
components:
- type: Transform
- pos: -0.5,-9.5
+ pos: -1.5,-15.5
parent: 1
- - uid: 473
+ - uid: 313
components:
- type: Transform
- pos: -0.5,-8.5
+ pos: -0.5,-15.5
parent: 1
- - uid: 474
+ - uid: 314
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: -0.5,-14.5
parent: 1
- - uid: 475
+ - uid: 315
components:
- type: Transform
- pos: -0.5,-6.5
+ pos: -0.5,-13.5
parent: 1
- - uid: 476
+ - uid: 316
components:
- type: Transform
- pos: -0.5,-5.5
+ pos: -0.5,-12.5
parent: 1
- - uid: 477
+ - uid: 317
components:
- type: Transform
- pos: -0.5,-4.5
+ pos: -0.5,-11.5
parent: 1
- - uid: 478
+ - uid: 318
components:
- type: Transform
- pos: -0.5,-3.5
+ pos: -0.5,-10.5
parent: 1
- - uid: 479
+ - uid: 319
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -0.5,-9.5
parent: 1
- - uid: 480
+ - uid: 320
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: -0.5,-8.5
parent: 1
- - uid: 481
+ - uid: 321
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: -1.5,-8.5
parent: 1
- - uid: 482
+ - uid: 322
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -2.5,-8.5
parent: 1
- - uid: 483
+ - uid: 323
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -3.5,-8.5
parent: 1
- - uid: 484
+ - uid: 324
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -4.5,-8.5
parent: 1
- - uid: 485
+ - uid: 325
components:
- type: Transform
- pos: -0.5,-21.5
+ pos: -5.5,-8.5
parent: 1
- - uid: 486
+ - uid: 326
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: 0.5,-8.5
parent: 1
- - uid: 487
+ - uid: 327
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: 1.5,-8.5
parent: 1
- - uid: 488
+ - uid: 328
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: 2.5,-8.5
parent: 1
- - uid: 489
+ - uid: 329
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: 3.5,-8.5
parent: 1
- - uid: 490
+ - uid: 330
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 491
+ - uid: 331
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: 5.5,-8.5
parent: 1
- - uid: 492
+ - uid: 332
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: -6.5,-8.5
parent: 1
- - uid: 493
+ - uid: 372
components:
- type: Transform
- pos: -8.5,-20.5
+ pos: -1.5,-0.5
parent: 1
- - uid: 494
+ - uid: 373
components:
- type: Transform
- pos: -9.5,-20.5
+ pos: -1.5,0.5
parent: 1
- - uid: 495
+ - uid: 374
components:
- type: Transform
- pos: -10.5,-20.5
+ pos: -2.5,0.5
parent: 1
- - uid: 496
+ - uid: 375
components:
- type: Transform
- pos: -11.5,-20.5
+ pos: -0.5,0.5
parent: 1
- - uid: 497
+ - uid: 376
components:
- type: Transform
- pos: -12.5,-20.5
+ pos: -0.5,1.5
parent: 1
- - uid: 498
+ - uid: 377
components:
- type: Transform
- pos: -13.5,-20.5
+ pos: -0.5,2.5
parent: 1
- - uid: 499
+ - uid: 378
components:
- type: Transform
- pos: -14.5,-20.5
+ pos: -0.5,3.5
parent: 1
- - uid: 500
+ - uid: 379
components:
- type: Transform
- pos: 0.5,-20.5
+ pos: 0.5,3.5
parent: 1
- - uid: 501
+- proto: CableTerminal
+ entities:
+ - uid: 40
components:
- type: Transform
- pos: 1.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-27.5
parent: 1
- - uid: 502
+ - uid: 51
components:
- type: Transform
- pos: 2.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-26.5
parent: 1
- - uid: 503
+- proto: CargoPallet
+ entities:
+ - uid: 1759
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: 12.5,-8.5
parent: 1
- - uid: 504
+ - uid: 1773
components:
- type: Transform
- pos: 4.5,-20.5
+ pos: 12.5,-9.5
parent: 1
- - uid: 505
+ - uid: 1803
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: 13.5,-9.5
parent: 1
- - uid: 506
+ - uid: 1804
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: 13.5,-8.5
parent: 1
- - uid: 507
+- proto: Carpet
+ entities:
+ - uid: 70
components:
- type: Transform
- pos: 7.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-26.5
parent: 1
- - uid: 508
+ - uid: 447
components:
- type: Transform
- pos: 8.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-26.5
parent: 1
- - uid: 509
+ - uid: 592
components:
- type: Transform
- pos: 9.5,-20.5
+ pos: -4.5,-22.5
parent: 1
- - uid: 510
+ - uid: 593
components:
- type: Transform
- pos: 10.5,-20.5
+ pos: -4.5,-23.5
parent: 1
- - uid: 511
+ - uid: 594
components:
- type: Transform
- pos: 11.5,-20.5
+ pos: -3.5,-22.5
parent: 1
- - uid: 512
+ - uid: 595
components:
- type: Transform
- pos: 12.5,-20.5
+ pos: -3.5,-23.5
parent: 1
- - uid: 513
+- proto: CarpetBlue
+ entities:
+ - uid: 604
components:
- type: Transform
- pos: 13.5,-20.5
+ pos: -4.5,0.5
parent: 1
- - uid: 514
+ - uid: 605
components:
- type: Transform
- pos: 14.5,-20.5
+ pos: -3.5,0.5
parent: 1
- - uid: 515
+ - uid: 1822
components:
- type: Transform
- pos: -15.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,0.5
parent: 1
- - uid: 516
+- proto: Catwalk
+ entities:
+ - uid: 126
components:
- type: Transform
- pos: -0.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-26.5
parent: 1
- - uid: 517
+ - uid: 132
components:
- type: Transform
- pos: -0.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-27.5
parent: 1
- - uid: 518
+ - uid: 450
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 8.5,-22.5
parent: 1
- - uid: 519
+ - uid: 489
components:
- type: Transform
- pos: 1.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-23.5
parent: 1
- - uid: 520
+ - uid: 490
components:
- type: Transform
- pos: 2.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-23.5
parent: 1
- - uid: 521
+ - uid: 491
components:
- type: Transform
- pos: -8.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-23.5
parent: 1
- - uid: 522
+ - uid: 492
components:
- type: Transform
- pos: -7.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-22.5
parent: 1
- - uid: 523
+ - uid: 493
components:
- type: Transform
- pos: -6.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-22.5
parent: 1
- - uid: 524
+ - uid: 494
components:
- type: Transform
- pos: -6.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-23.5
parent: 1
- - uid: 525
+ - uid: 495
components:
- type: Transform
- pos: -1.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-23.5
parent: 1
- - uid: 526
+ - uid: 496
components:
- type: Transform
- pos: -2.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-24.5
parent: 1
- - uid: 527
+ - uid: 497
components:
- type: Transform
- pos: -2.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-25.5
parent: 1
- - uid: 528
+ - uid: 498
components:
- type: Transform
- pos: -3.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-26.5
parent: 1
- - uid: 529
+ - uid: 502
components:
- type: Transform
- pos: -3.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-22.5
parent: 1
- - uid: 530
+- proto: Chair
+ entities:
+ - uid: 608
components:
- type: Transform
- pos: -7.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-15.5
parent: 1
- - uid: 531
+ - uid: 609
components:
- type: Transform
- pos: -8.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-14.5
parent: 1
- - uid: 532
+ - uid: 803
components:
- type: Transform
- pos: -6.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-23.5
parent: 1
- - uid: 533
+- proto: ChairFolding
+ entities:
+ - uid: 583
components:
- type: Transform
- pos: -8.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-6.5
parent: 1
- - uid: 534
+ - uid: 590
components:
- type: Transform
- pos: -8.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-6.5
parent: 1
- - uid: 535
+ - uid: 598
components:
- type: Transform
- pos: -9.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-6.5
parent: 1
- - uid: 536
+ - uid: 610
components:
- type: Transform
- pos: -10.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,0.5
parent: 1
- - uid: 537
+ - uid: 611
components:
- type: Transform
- pos: -11.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
parent: 1
-- proto: CableMV
- entities:
- - uid: 538
+ - uid: 612
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 3.5,2.5
parent: 1
- - uid: 539
+ - uid: 613
components:
- type: Transform
- pos: 2.5,4.5
+ pos: 2.5,2.5
parent: 1
- - uid: 540
+ - uid: 724
components:
- type: Transform
- pos: 1.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-5.5
parent: 1
- - uid: 541
+ - uid: 804
components:
- type: Transform
- pos: 0.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
parent: 1
- - uid: 542
+- proto: ChairOfficeDark
+ entities:
+ - uid: 866
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 3.5,-13.5
parent: 1
- - uid: 543
+- proto: ChairOfficeLight
+ entities:
+ - uid: 453
components:
- type: Transform
- pos: 0.5,2.5
+ pos: 16.5,-18.5
parent: 1
- - uid: 544
+- proto: ChairPilotSeat
+ entities:
+ - uid: 615
components:
- type: Transform
- pos: 0.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,6.5
parent: 1
- - uid: 545
+ - uid: 616
components:
- type: Transform
- pos: 0.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 1
- - uid: 546
+ - uid: 617
components:
- type: Transform
- pos: 0.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,5.5
parent: 1
- - uid: 547
+- proto: ChairWood
+ entities:
+ - uid: 37
components:
- type: Transform
- pos: 0.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-16.5
parent: 1
- - uid: 548
+ - uid: 99
components:
- type: Transform
- pos: 0.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-14.5
parent: 1
- - uid: 549
+ - uid: 174
components:
- type: Transform
- pos: 0.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-16.5
parent: 1
- - uid: 550
+ - uid: 683
components:
- type: Transform
- pos: 0.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-13.5
parent: 1
- - uid: 551
+ - uid: 685
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: 1.5,-12.5
parent: 1
- - uid: 552
+ - uid: 686
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: 1.5,-14.5
parent: 1
- - uid: 553
+- proto: ChurchOrganInstrument
+ entities:
+ - uid: 622
components:
- type: Transform
- pos: 0.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-14.5
parent: 1
- - uid: 554
+- proto: CigarGold
+ entities:
+ - uid: 1808
components:
- type: Transform
- pos: 0.5,-8.5
+ pos: 3.5,-14.5
parent: 1
- - uid: 555
+- proto: CigarGoldCase
+ entities:
+ - uid: 623
components:
- type: Transform
- pos: 0.5,-9.5
+ pos: -6.5097156,0.9530835
parent: 1
- - uid: 556
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 780
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: -2.5,-30.5
parent: 1
- - uid: 557
+- proto: ClosetEmergencyN2FilledRandom
+ entities:
+ - uid: 779
components:
- type: Transform
- pos: 0.5,-11.5
+ pos: 1.5,-30.5
parent: 1
- - uid: 558
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 343
components:
- type: Transform
- pos: 0.5,-10.5
+ pos: -16.5,-20.5
parent: 1
- - uid: 559
+- proto: ClosetToolFilled
+ entities:
+ - uid: 431
components:
- type: Transform
- pos: 0.5,-12.5
+ pos: -8.5,-24.5
parent: 1
- - uid: 560
+- proto: ClosetWall
+ entities:
+ - uid: 1802
components:
- type: Transform
- pos: 0.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-25.5
parent: 1
- - uid: 561
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 501
components:
- type: Transform
- pos: 0.5,-14.5
+ pos: -7.5,-18.5
parent: 1
- - uid: 562
+ - uid: 977
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: 10.5,-18.5
parent: 1
- - uid: 563
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 624
components:
- type: Transform
- pos: 0.5,-16.5
+ pos: -11.5,-18.5
parent: 1
- - uid: 564
+ - uid: 975
components:
- type: Transform
- pos: 0.5,-17.5
+ pos: 6.5,-18.5
parent: 1
- - uid: 565
+- proto: ClothingBeltChaplainSashFilled
+ entities:
+ - uid: 1902
components:
- type: Transform
- pos: 0.5,-18.5
+ pos: -18.5,-16.5
parent: 1
- - uid: 566
+- proto: ClothingBeltMercenaryWebbing
+ entities:
+ - uid: 98
components:
- type: Transform
- pos: 0.5,-19.5
+ pos: -5.7035966,-3.4349852
parent: 1
- - uid: 567
+- proto: ClothingEyesGlassesMercenary
+ entities:
+ - uid: 1780
components:
- type: Transform
- pos: 0.5,-20.5
+ pos: -5.0521164,-3.5206459
parent: 1
- - uid: 568
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 591
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: 5.5,-1.5
parent: 1
- - uid: 569
+- proto: ClothingHandsGlovesBoxingGreen
+ entities:
+ - uid: 722
components:
- type: Transform
- pos: -1.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
parent: 1
- - uid: 570
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 597
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: 2.5,-4.5
parent: 1
- - uid: 571
+- proto: ClothingHandsGlovesBoxingYellow
+ entities:
+ - uid: 1184
components:
- type: Transform
- pos: -3.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-4.5
parent: 1
- - uid: 572
+- proto: ClothingHeadBandMercenary
+ entities:
+ - uid: 1778
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: -4.5833664,-3.5675209
parent: 1
- - uid: 573
+- proto: ClothingHeadBandSkull
+ entities:
+ - uid: 541
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: 2.5,-5.5
parent: 1
- - uid: 574
+- proto: ClothingHeadHatBeretMercenary
+ entities:
+ - uid: 1457
components:
- type: Transform
- pos: -6.5,-20.5
+ pos: -5.0052414,-3.2706459
parent: 1
- - uid: 575
+- proto: ClothingHeadHatCasa
+ entities:
+ - uid: 717
components:
- type: Transform
- pos: -6.5,-21.5
+ pos: -0.8169179,-17.190418
parent: 1
- - uid: 576
+- proto: ClothingHeadHelmetMercenary
+ entities:
+ - uid: 1779
components:
- type: Transform
- pos: -6.5,-22.5
+ pos: -4.1771164,-3.3643959
parent: 1
- - uid: 577
+- proto: ClothingMaskBat
+ entities:
+ - uid: 644
components:
- type: Transform
- pos: -6.5,-23.5
+ pos: -1.5246618,-17.593832
parent: 1
- - uid: 578
+- proto: ClothingMaskBear
+ entities:
+ - uid: 645
components:
- type: Transform
- pos: -6.5,-24.5
+ pos: -1.0090368,-18.320395
parent: 1
- - uid: 579
+- proto: ClothingMaskBee
+ entities:
+ - uid: 646
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: -0.02466178,-18.437582
parent: 1
- - uid: 580
+- proto: ClothingMaskGasAtmos
+ entities:
+ - uid: 1789
components:
- type: Transform
- pos: -7.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-26.5
parent: 1
- - uid: 581
+- proto: ClothingMaskRat
+ entities:
+ - uid: 647
components:
- type: Transform
- pos: -8.5,-25.5
+ pos: 0.6550257,-18.109457
parent: 1
- - uid: 582
+- proto: ClothingMaskRaven
+ entities:
+ - uid: 648
components:
- type: Transform
- pos: -9.5,-25.5
+ pos: 0.04565072,-17.453207
parent: 1
- - uid: 583
+- proto: ClothingNeckBling
+ entities:
+ - uid: 589
components:
- type: Transform
- pos: -10.5,-25.5
+ pos: -6.6606865,1.6361201
parent: 1
- - uid: 584
+- proto: ClothingOuterWinterMiner
+ entities:
+ - uid: 1775
components:
- type: Transform
- pos: -11.5,-25.5
+ pos: 2.5,-28.3
parent: 1
- - uid: 585
+- proto: ClothingShoesBootsWinterMiner
+ entities:
+ - uid: 1776
components:
- type: Transform
- pos: -5.5,-25.5
+ pos: 2.5,-28.5
parent: 1
-- proto: CableTerminal
+- proto: ClothingUniformJumpsuitKimono
entities:
- - uid: 586
+ - uid: 526
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: -0.3637929,-17.362293
parent: 1
- - uid: 587
+- proto: ComfyChair
+ entities:
+ - uid: 659
components:
- type: Transform
- pos: -7.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
parent: 1
-- proto: CargoPallet
- entities:
- - uid: 588
+ - uid: 660
components:
- type: Transform
- pos: -5.5,-2.5
+ pos: 4.5,-16.5
parent: 1
- - uid: 589
+ - uid: 661
components:
- type: Transform
- pos: -5.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-18.5
parent: 1
- - uid: 590
+ - uid: 662
components:
- type: Transform
- pos: -6.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-18.5
parent: 1
- - uid: 591
+ - uid: 663
components:
- type: Transform
- pos: -6.5,-1.5
+ pos: -5.5,-16.5
parent: 1
-- proto: Carpet
- entities:
- - uid: 592
+ - uid: 664
components:
- type: Transform
- pos: -4.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-9.5
parent: 1
- - uid: 593
+ - uid: 665
components:
- type: Transform
- pos: -4.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-9.5
parent: 1
- - uid: 594
+ - uid: 790
components:
- type: Transform
- pos: -3.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-9.5
parent: 1
- - uid: 595
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 666
components:
- type: Transform
- pos: -3.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
parent: 1
- - uid: 596
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 667
components:
- type: Transform
- pos: 2.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
parent: 1
- - uid: 597
+- proto: ComputerTabletopAlert
+ entities:
+ - uid: 670
components:
- type: Transform
- pos: 2.5,-23.5
+ pos: -1.5,7.5
parent: 1
- - uid: 598
+- proto: ComputerTabletopBodyScanner
+ entities:
+ - uid: 535
components:
- type: Transform
- pos: 3.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-20.5
parent: 1
- - uid: 599
+- proto: ComputerTabletopRadar
+ entities:
+ - uid: 632
components:
- type: Transform
- pos: 3.5,-23.5
+ pos: -2.5,7.5
parent: 1
- - uid: 600
+- proto: ComputerTabletopSalvageExpedition
+ entities:
+ - uid: 668
components:
- type: Transform
- pos: 2.5,-26.5
+ pos: -0.5,7.5
parent: 1
- - uid: 601
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 669
components:
- type: Transform
- pos: 2.5,-27.5
+ pos: 1.5,7.5
parent: 1
- - uid: 602
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 671
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: 0.5,7.5
parent: 1
- - uid: 603
+- proto: ComputerTelevision
+ entities:
+ - uid: 962
components:
- type: Transform
- pos: 3.5,-27.5
+ pos: 4.5,-15.5
parent: 1
-- proto: CarpetBlue
+- proto: ConveyorBelt
entities:
- - uid: 604
+ - uid: 466
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -18.5,-19.5
parent: 1
- - uid: 605
+ - uid: 640
components:
- type: Transform
- pos: -3.5,0.5
+ pos: -18.5,-20.5
parent: 1
-- proto: Catwalk
- entities:
- - uid: 606
+ - uid: 875
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: -18.5,-18.5
parent: 1
- - uid: 607
+ - uid: 879
components:
- type: Transform
- pos: -7.5,-26.5
+ pos: -17.5,-21.5
parent: 1
-- proto: Chair
- entities:
- - uid: 608
+ - uid: 880
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-15.5
+ pos: -17.5,-22.5
parent: 1
- - uid: 609
+ - uid: 881
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-14.5
+ pos: -17.5,-20.5
parent: 1
-- proto: ChairFolding
+- proto: CurtainsBlackOpen
entities:
- - uid: 610
+ - uid: 711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-10.5
parent: 1
- - uid: 611
+ - uid: 822
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-10.5
parent: 1
- - uid: 612
+- proto: CurtainsBlue
+ entities:
+ - uid: 679
components:
- type: Transform
- pos: 3.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-21.5
parent: 1
- - uid: 613
+- proto: CurtainsWhiteOpen
+ entities:
+ - uid: 345
components:
- type: Transform
- pos: 2.5,2.5
+ pos: -3.5,-28.5
parent: 1
-- proto: ChairOfficeLight
- entities:
- - uid: 614
+ - uid: 402
components:
- type: Transform
- pos: 16.5,-20.5
+ pos: -4.5,-28.5
parent: 1
-- proto: ChairPilotSeat
+- proto: DefibrillatorCabinetFilled
entities:
- - uid: 615
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,6.5
- parent: 1
- - uid: 616
+ - uid: 294
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-17.5
parent: 1
- - uid: 617
+ - uid: 812
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-6.5
parent: 1
-- proto: ChairRitual
+- proto: DeskBell
entities:
- - uid: 618
+ - uid: 818
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-20.5
+ pos: 2.5,-12.5
parent: 1
-- proto: ChairWood
+- proto: DiceBag
entities:
- - uid: 619
+ - uid: 680
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-20.5
+ pos: -0.988676,-17.83214
parent: 1
-- proto: MachineFrame
- entities:
- - uid: 620
+ - uid: 681
components:
- type: Transform
- pos: 17.5,-19.5
+ pos: -0.566801,-17.819157
parent: 1
-- proto: ChemistryHotplate
- entities:
- - uid: 621
+ - uid: 682
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: -0.19180101,-17.850407
parent: 1
- - type: ItemPlacer
- placedEntities:
- - 678
- - type: PlaceableSurface
- isPlaceable: False
-- proto: ChurchOrganInstrument
+- proto: DisposalBend
entities:
- - uid: 622
+ - uid: 200
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,-14.5
+ pos: -1.5,-26.5
parent: 1
-- proto: CigarGoldCase
- entities:
- - uid: 623
+ - uid: 449
components:
- type: Transform
- pos: -6.5097156,0.9530835
+ rot: 1.5707963267948966 rad
+ pos: 0.5,2.5
parent: 1
-- proto: ClosetChefFilled
- entities:
- - uid: 630
+ - uid: 814
components:
- type: Transform
- pos: 3.5,-3.5
+ pos: -14.5,-12.5
parent: 1
-- proto: ClosetWallFireFilledRandom
- entities:
- - uid: 624
+ - uid: 890
components:
- type: Transform
- pos: -11.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-19.5
parent: 1
- - uid: 625
+ - uid: 891
components:
- type: Transform
- pos: 10.5,-18.5
+ pos: -16.5,-18.5
parent: 1
-- proto: ClothingHandsGlovesMercFingerless
- entities:
- - uid: 634
+ - uid: 906
components:
- type: Transform
- pos: -4.510536,-3.39052
+ pos: -1.5,-19.5
parent: 1
-- proto: ClothingHeadBandMercenary
- entities:
- - uid: 635
+ - uid: 907
components:
- type: Transform
- pos: -5.0522027,-3.2863533
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
parent: 1
-- proto: ClothingHeadHelmetMercenary
- entities:
- - uid: 637
+ - uid: 912
components:
- type: Transform
- pos: -4.031369,-3.26552
+ pos: 4.5,4.5
parent: 1
-- proto: ClothingHeadHelmetWizardHelm
- entities:
- - uid: 642
+ - uid: 927
components:
- type: Transform
- pos: -0.8449743,-17.265707
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-16.5
parent: 1
-- proto: ClothingHeadNurseHat
- entities:
- - uid: 643
+ - uid: 928
components:
- type: Transform
- pos: 17.674637,-18.253355
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-16.5
parent: 1
-- proto: ClothingMaskBat
- entities:
- - uid: 644
+ - uid: 948
components:
- type: Transform
- pos: -1.5246618,-17.593832
+ rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
parent: 1
-- proto: ClothingMaskBear
- entities:
- - uid: 645
+ - uid: 965
components:
- type: Transform
- pos: -1.0090368,-18.320395
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-20.5
parent: 1
-- proto: ClothingMaskBee
- entities:
- - uid: 646
+ - uid: 966
components:
- type: Transform
- pos: -0.02466178,-18.437582
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-19.5
parent: 1
-- proto: ClothingMaskRat
+- proto: DisposalJunction
entities:
- - uid: 647
+ - uid: 769
components:
- type: Transform
- pos: 0.6550257,-18.109457
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-19.5
parent: 1
-- proto: ClothingMaskRaven
- entities:
- - uid: 648
+ - uid: 904
components:
- type: Transform
- pos: 0.04565072,-17.453207
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-19.5
parent: 1
-- proto: ClothingNeckBling
- entities:
- - uid: 649
+ - uid: 940
components:
- type: Transform
- pos: -6.5570135,1.3828969
+ pos: -0.5,-5.5
parent: 1
-- proto: ClothingOuterWinterChef
- entities:
- - uid: 651
+ - uid: 949
components:
- type: Transform
- pos: 3.8123903,-5.313849
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
parent: 1
-- proto: ClothingOuterWizard
- entities:
- - uid: 652
+ - uid: 969
components:
- type: Transform
- pos: -0.21216178,-17.289145
+ rot: 3.141592653589793 rad
+ pos: -1.5,-20.5
parent: 1
-- proto: ClothingUnderSocksCoder
- entities:
- - uid: 653
+ - uid: 973
components:
- type: Transform
- pos: 4.226733,4.8322687
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-20.5
parent: 1
-- proto: ClothingUniformJumpskirtNurse
+- proto: DisposalJunctionFlipped
entities:
- - uid: 654
+ - uid: 937
components:
- type: Transform
- pos: 17.747555,-18.409605
+ pos: -0.5,-8.5
parent: 1
-- proto: ClothingUniformJumpskirtOfLife
+- proto: DisposalPipe
entities:
- - uid: 655
+ - uid: 635
components:
- type: Transform
- pos: 17.786142,-18.370012
+ rot: 3.141592653589793 rad
+ pos: -1.5,-25.5
parent: 1
-- proto: ComfyChair
- entities:
- - uid: 659
+ - uid: 688
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,1.5
+ pos: -15.5,-19.5
parent: 1
- - uid: 660
+ - uid: 704
components:
- type: Transform
- pos: 4.5,-16.5
+ pos: -14.5,-13.5
parent: 1
- - uid: 661
+ - uid: 758
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-18.5
+ pos: -14.5,-16.5
parent: 1
- - uid: 662
+ - uid: 760
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-18.5
+ pos: -14.5,-17.5
parent: 1
- - uid: 663
+ - uid: 772
components:
- type: Transform
- pos: -5.5,-16.5
+ pos: -14.5,-18.5
parent: 1
- - uid: 664
+ - uid: 887
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-9.5
+ pos: -14.5,-15.5
parent: 1
- - uid: 665
+ - uid: 888
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-9.5
+ pos: -14.5,-14.5
parent: 1
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 666
+ - uid: 892
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,6.5
+ pos: -17.5,-18.5
parent: 1
-- proto: ComputerPowerMonitoring
- entities:
- - uid: 667
+ - uid: 893
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-19.5
parent: 1
-- proto: ComputerRadar
- entities:
- - uid: 668
+ - uid: 894
components:
- type: Transform
- pos: -2.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-19.5
parent: 1
-- proto: ComputerSalvageExpedition
- entities:
- - uid: 669
+ - uid: 895
components:
- type: Transform
- pos: -0.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-19.5
parent: 1
-- proto: ComputerShuttle
- entities:
- - uid: 670
+ - uid: 896
components:
- type: Transform
- pos: 1.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-19.5
parent: 1
-- proto: ComputerSolarControl
- entities:
- - uid: 671
+ - uid: 897
components:
- type: Transform
- pos: -1.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-19.5
parent: 1
-- proto: ComputerStationRecords
- entities:
- - uid: 672
+ - uid: 898
components:
- type: Transform
- pos: 0.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-19.5
parent: 1
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 674
+ - uid: 899
components:
- type: Transform
- pos: 2.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-19.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateHydroponicsTools
- entities:
- - uid: 675
+ - uid: 900
components:
- type: Transform
- pos: 5.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-19.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CryoPod
- entities:
- - uid: 676
+ - uid: 901
components:
- type: Transform
- pos: 16.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: CryoxadoneBeakerSmall
- entities:
- - uid: 677
+ - uid: 902
components:
- type: Transform
- pos: 17.275366,-18.143486
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-19.5
parent: 1
- - type: CollisionWake
- enabled: False
- - type: Physics
- sleepingAllowed: False
- - uid: 678
+ - uid: 903
components:
- type: Transform
- pos: 17.598927,-18.155516
+ rot: 3.141592653589793 rad
+ pos: -1.5,-24.5
parent: 1
- - type: CollisionWake
- enabled: False
- - type: Physics
- sleepingAllowed: False
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 679
+ - uid: 905
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-19.5
parent: 1
-- proto: DiceBag
- entities:
- - uid: 680
+ - uid: 908
components:
- type: Transform
- pos: -0.988676,-17.83214
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-26.5
parent: 1
- - uid: 681
+ - uid: 909
components:
- type: Transform
- pos: -0.566801,-17.819157
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-26.5
parent: 1
- - uid: 682
+ - uid: 913
components:
- type: Transform
- pos: -0.19180101,-17.850407
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-19.5
parent: 1
-- proto: DisposalBend
- entities:
- - uid: 683
+ - uid: 914
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-19.5
parent: 1
- - uid: 684
+ - uid: 915
components:
- type: Transform
- pos: 15.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-19.5
parent: 1
-- proto: DisposalPipe
- entities:
- - uid: 685
+ - uid: 916
components:
- type: Transform
- pos: 4.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-19.5
parent: 1
- - uid: 686
+ - uid: 917
components:
- type: Transform
- pos: 4.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-19.5
parent: 1
- - uid: 687
+ - uid: 918
components:
- type: Transform
- pos: 4.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-19.5
parent: 1
- - uid: 688
+ - uid: 919
components:
- type: Transform
- pos: 4.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-19.5
parent: 1
- - uid: 689
+ - uid: 920
components:
- type: Transform
- pos: 4.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-19.5
parent: 1
- - uid: 690
+ - uid: 921
components:
- type: Transform
- pos: 4.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-19.5
parent: 1
- - uid: 691
+ - uid: 922
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-19.5
parent: 1
- - uid: 692
+ - uid: 923
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-19.5
parent: 1
- - uid: 693
+ - uid: 925
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-18.5
parent: 1
- - uid: 694
+ - uid: 926
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
parent: 1
- - uid: 695
+ - uid: 929
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-16.5
parent: 1
- - uid: 696
+ - uid: 930
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-15.5
parent: 1
- - uid: 697
+ - uid: 931
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-14.5
parent: 1
- - uid: 698
+ - uid: 932
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-13.5
parent: 1
- - uid: 699
+ - uid: 933
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-12.5
parent: 1
- - uid: 700
+ - uid: 934
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-11.5
parent: 1
- - uid: 701
+ - uid: 935
components:
- type: Transform
- pos: 15.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
parent: 1
- - uid: 702
+ - uid: 936
components:
- type: Transform
- pos: 15.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
parent: 1
- - uid: 703
+ - uid: 938
components:
- type: Transform
- pos: 15.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
parent: 1
-- proto: DisposalTrunk
- entities:
- - uid: 704
+ - uid: 939
components:
- type: Transform
- pos: 4.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
parent: 1
-- proto: DisposalUnit
- entities:
- - uid: 705
+ - uid: 941
components:
- type: Transform
- pos: 4.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
parent: 1
-- proto: DogBed
- entities:
- - uid: 706
+ - uid: 942
components:
- type: Transform
- pos: -4.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
parent: 1
-- proto: DrinkMugOne
- entities:
- - uid: 707
+ - uid: 943
components:
- type: Transform
- pos: -0.21170354,6.7031326
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
parent: 1
-- proto: DrinkWineBottleFull
- entities:
- - uid: 708
+ - uid: 944
components:
- type: Transform
- pos: -6.6023116,2.597079
+ rot: 3.141592653589793 rad
+ pos: -0.5,-1.5
parent: 1
-- proto: DrinkWineGlass
- entities:
- - uid: 709
+ - uid: 945
components:
- type: Transform
- pos: -6.2273116,2.081454
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
parent: 1
- - uid: 710
+ - uid: 946
components:
- type: Transform
- pos: -6.6491866,1.847079
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
parent: 1
-- proto: ExtinguisherCabinet
- entities:
- - uid: 713
+ - uid: 950
components:
- type: Transform
- pos: 5.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-8.5
parent: 1
- - uid: 714
+ - uid: 951
components:
- type: Transform
- pos: -6.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-8.5
parent: 1
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 715
+ - uid: 952
components:
- type: Transform
- pos: 11.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
parent: 1
- - uid: 716
+ - uid: 953
components:
- type: Transform
- pos: -12.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
parent: 1
- - uid: 717
+ - uid: 954
components:
- type: Transform
- pos: -0.5,-0.5
- parent: 1
-- proto: FaxMachineShip
- entities:
- - uid: 718
- components:
- - type: Transform
- pos: 3.5,1.5
- parent: 1
-- proto: filingCabinetDrawerRandom
- entities:
- - uid: 719
- components:
- - type: Transform
- pos: 5.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 1
-- proto: Firelock
- entities:
- - uid: 720
+ - uid: 955
components:
- type: Transform
- pos: -7.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-5.5
parent: 1
- - uid: 721
+ - uid: 956
components:
- type: Transform
- pos: -1.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-5.5
parent: 1
- - uid: 722
+ - uid: 957
components:
- type: Transform
- pos: 0.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-5.5
parent: 1
- - uid: 723
+ - uid: 967
components:
- type: Transform
- pos: -2.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-19.5
parent: 1
- - uid: 724
+ - uid: 970
components:
- type: Transform
- pos: -0.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-21.5
parent: 1
- - uid: 725
+ - uid: 971
components:
- type: Transform
- pos: -6.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-22.5
parent: 1
- - uid: 726
+ - uid: 972
components:
- type: Transform
- pos: 5.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-23.5
parent: 1
- - uid: 727
+ - uid: 974
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
+ pos: 2.5,-19.5
parent: 1
- - uid: 728
+ - uid: 980
components:
- type: Transform
- pos: 6.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 1
-- proto: FirelockEdge
- entities:
- - uid: 729
+ - uid: 981
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,2.5
parent: 1
- - uid: 730
+ - uid: 982
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- - uid: 731
+ - uid: 983
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-5.5
+ pos: 4.5,3.5
parent: 1
- - uid: 732
+- proto: DisposalTrunk
+ entities:
+ - uid: 10
components:
- type: Transform
- pos: -2.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
parent: 1
- - uid: 733
+ - uid: 810
components:
- type: Transform
- pos: -1.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-12.5
parent: 1
- - uid: 734
+ - uid: 910
components:
- type: Transform
- pos: -0.5,-14.5
+ pos: -0.5,-19.5
parent: 1
- - uid: 735
+ - uid: 911
components:
- type: Transform
- pos: 0.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-26.5
parent: 1
- - uid: 736
+ - uid: 924
components:
- type: Transform
- pos: 1.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-19.5
parent: 1
- - uid: 737
+ - uid: 947
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
parent: 1
- - uid: 738
+ - uid: 958
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,-20.5
+ pos: -5.5,-5.5
parent: 1
- - uid: 739
+ - uid: 959
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,-19.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 740
+- proto: DisposalUnit
+ entities:
+ - uid: 96
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-20.5
+ pos: -15.5,-12.5
parent: 1
- - uid: 741
+ - uid: 602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-22.5
+ pos: 4.5,-8.5
parent: 1
- - uid: 742
+ - uid: 695
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-22.5
+ pos: 1.5,1.5
parent: 1
- - uid: 743
+ - uid: 696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-22.5
+ pos: 14.5,-19.5
parent: 1
-- proto: FirelockGlass
- entities:
- - uid: 744
+ - uid: 785
components:
- type: Transform
- pos: -3.5,-13.5
+ pos: -5.5,-5.5
parent: 1
- - uid: 745
+ - uid: 817
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: -0.5,-19.5
parent: 1
- - uid: 746
+- proto: DogBed
+ entities:
+ - uid: 706
components:
- type: Transform
- pos: -3.5,-14.5
+ pos: -4.5,3.5
parent: 1
- - uid: 747
+- proto: DresserFilled
+ entities:
+ - uid: 470
components:
- type: Transform
- pos: 2.5,-12.5
+ pos: -4.5,-24.5
parent: 1
- - uid: 748
+- proto: DrinkGlass
+ entities:
+ - uid: 568
components:
- type: Transform
- pos: 4.5,-14.5
+ pos: -4.7032313,-5.4821234
parent: 1
- - uid: 749
+ - uid: 1770
components:
- type: Transform
- pos: 2.5,-13.5
+ pos: -4.3751063,-5.48545
parent: 1
- - uid: 750
+ - uid: 1771
components:
- type: Transform
- pos: 2.5,-11.5
+ pos: -4.1094813,-5.3292
parent: 1
- - uid: 751
+- proto: DrinkMugOne
+ entities:
+ - uid: 701
components:
- type: Transform
- pos: -5.5,-14.5
+ pos: -0.25845867,6.7074924
parent: 1
- - uid: 752
+- proto: DrinkShotGlass
+ entities:
+ - uid: 569
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: -6.297799,2.5893223
parent: 1
- - uid: 753
+ - uid: 1769
components:
- type: Transform
- pos: 3.5,-14.5
+ pos: -6.308756,2.0965161
parent: 1
- - uid: 754
+- proto: DrinkWineBottleFull
+ entities:
+ - uid: 708
components:
- type: Transform
- pos: 11.5,-19.5
+ pos: -6.6023116,2.597079
parent: 1
- - uid: 755
+- proto: ExtinguisherCabinet
+ entities:
+ - uid: 547
components:
- type: Transform
- pos: 11.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-5.5
parent: 1
- - uid: 756
+ - uid: 714
components:
- type: Transform
- pos: -12.5,-19.5
+ pos: -6.5,-7.5
parent: 1
- - uid: 757
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 689
components:
- type: Transform
- pos: -12.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-16.5
parent: 1
- - uid: 758
+ - uid: 889
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-8.5
+ pos: -12.5,-16.5
parent: 1
- - uid: 759
+- proto: FaxMachineShip
+ entities:
+ - uid: 718
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-8.5
+ pos: 3.5,1.5
parent: 1
- - uid: 760
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 719
components:
- type: Transform
- pos: -3.5,-11.5
+ pos: 5.5,1.5
parent: 1
- - uid: 761
+- proto: filingCabinetRandom
+ entities:
+ - uid: 634
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: 4.5,-12.5
parent: 1
- - uid: 762
+- proto: FirelockGlass
+ entities:
+ - uid: 573
components:
- type: Transform
- pos: 15.5,-13.5
+ pos: 6.5,-21.5
parent: 1
- - uid: 763
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 16
+ - uid: 574
components:
- type: Transform
- pos: 14.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 764
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - uid: 575
components:
- type: Transform
- pos: 13.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
parent: 1
- - uid: 765
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - uid: 576
components:
- type: Transform
- pos: 12.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
parent: 1
- - uid: 766
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - 730
+ - uid: 577
components:
- type: Transform
- pos: -14.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
parent: 1
- - uid: 767
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - 730
+ - uid: 578
components:
- type: Transform
- pos: -13.5,-13.5
+ pos: 5.5,-21.5
parent: 1
-- proto: Fireplace
- entities:
- - uid: 768
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 16
+ - uid: 579
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -7.5,-21.5
parent: 1
-- proto: FloorDrain
- entities:
- - uid: 769
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 1758
+ - uid: 581
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-2.5
+ pos: -6.5,-21.5
parent: 1
- - type: Fixtures
- fixtures: {}
- - uid: 770
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 1758
+ - uid: 628
components:
- type: Transform
- pos: -3.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-2.5
parent: 1
- - type: Fixtures
- fixtures: {}
- - uid: 771
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - uid: 754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-6.5
+ pos: 11.5,-19.5
parent: 1
- - type: Fixtures
- fixtures: {}
- - uid: 772
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 571
+ - uid: 755
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-6.5
+ pos: 11.5,-20.5
parent: 1
- - type: Fixtures
- fixtures: {}
-- proto: FloorWaterEntity
- entities:
- - uid: 773
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 571
+ - uid: 756
components:
- type: Transform
- pos: -14.5,-22.5
+ pos: -12.5,-19.5
parent: 1
- - uid: 774
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 698
+ - uid: 757
components:
- type: Transform
- pos: -14.5,-23.5
+ pos: -12.5,-20.5
parent: 1
- - uid: 775
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 698
+ - uid: 762
components:
- type: Transform
- pos: -13.5,-22.5
+ pos: 15.5,-13.5
parent: 1
- - uid: 776
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - uid: 763
components:
- type: Transform
- pos: -13.5,-23.5
+ pos: 14.5,-13.5
parent: 1
- - uid: 777
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - uid: 764
components:
- type: Transform
- pos: -13.5,-24.5
+ pos: 13.5,-13.5
parent: 1
-- proto: GasAnalyzer
- entities:
- - uid: 780
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - uid: 765
components:
- type: Transform
- pos: 8.679014,-24.362837
+ pos: 12.5,-13.5
parent: 1
-- proto: GasFilter
- entities:
- - uid: 781
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - uid: 766
components:
- type: Transform
- pos: 6.5,-25.5
+ pos: -14.5,-13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 782
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - uid: 767
components:
- type: Transform
- pos: 6.5,-24.5
+ pos: -13.5,-13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 783
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - uid: 968
components:
- type: Transform
- pos: 6.5,-26.5
+ pos: 0.5,-9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 784
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 730
+ - uid: 987
components:
- type: Transform
- pos: 15.5,-16.5
+ pos: -0.5,-9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasMixer
- entities:
- - uid: 785
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 730
+ - uid: 988
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-23.5
+ pos: -1.5,-9.5
parent: 1
- - type: GasMixer
- inletTwoConcentration: 0.56
- inletOneConcentration: 0.44
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 786
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 730
+ - uid: 991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-23.5
+ pos: -1.5,-22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasPassiveVent
- entities:
- - uid: 787
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 1747
+ - uid: 992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-28.5
+ pos: -0.5,-22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasPipeBend
- entities:
- - uid: 788
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 1747
+ - uid: 993
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-18.5
+ pos: 0.5,-22.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 789
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - 1747
+ - uid: 1229
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-8.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 790
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - 871
+ - uid: 1231
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-19.5
+ pos: 1.5,-8.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 791
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - uid: 1234
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-11.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 792
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - uid: 1236
components:
- type: Transform
- pos: 3.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-7.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 793
+ - uid: 1647
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-20.5
+ pos: -15.5,-19.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 794
+ - uid: 1756
components:
- type: Transform
- pos: 4.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-21.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 795
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+- proto: Fireplace
+ entities:
+ - uid: 768
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-19.5
+ pos: -5.5,3.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 796
+- proto: FlippoLighter
+ entities:
+ - uid: 691
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-19.5
+ pos: -6.250924,1.3861973
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 797
+- proto: FloorDrain
+ entities:
+ - uid: 567
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-19.5
+ pos: -17.5,-18.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 798
+ - type: Fixtures
+ fixtures: {}
+ - uid: 720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-20.5
+ pos: -4.5,-28.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 799
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorTileItemBoxing
+ entities:
+ - uid: 342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-23.5
+ pos: 4.5,-2.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 800
+ - uid: 784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-27.5
+ pos: 3.5,-3.5
parent: 1
- - uid: 801
+ - uid: 792
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-26.5
+ pos: 3.5,-1.5
parent: 1
- - uid: 802
+ - uid: 848
components:
- type: Transform
- pos: 10.5,-26.5
+ pos: 4.5,-3.5
parent: 1
- - uid: 803
+- proto: FloorWaterEntity
+ entities:
+ - uid: 123
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-23.5
+ pos: -13.5,-22.5
parent: 1
- - uid: 804
+ - uid: 777
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-17.5
+ pos: -13.5,-24.5
parent: 1
- - uid: 805
+ - uid: 1402
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-15.5
+ pos: -14.5,-22.5
parent: 1
- - uid: 806
+ - uid: 1437
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-15.5
+ pos: -13.5,-23.5
parent: 1
- - uid: 807
+ - uid: 1439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-17.5
+ pos: -14.5,-23.5
parent: 1
- - uid: 808
+- proto: GasAnalyzer
+ entities:
+ - uid: 748
components:
- type: Transform
- pos: 13.5,-20.5
+ pos: 10.5,-24.5
parent: 1
-- proto: GasPipeFourway
+- proto: GasFilterNitrogenOn
entities:
- - uid: 809
+ - uid: 606
components:
- type: Transform
- pos: 16.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-24.5
parent: 1
- - uid: 810
+- proto: GasFilterOxygenOn
+ entities:
+ - uid: 1394
components:
- type: Transform
- pos: -1.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-24.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 811
+- proto: GasMixerOnFlipped
+ entities:
+ - uid: 463
components:
- type: Transform
- pos: 0.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-22.5
parent: 1
+ - type: GasMixer
+ inletTwoConcentration: 0.20999998
+ inletOneConcentration: 0.79
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 812
+- proto: GasOutletInjector
+ entities:
+ - uid: 427
components:
- type: Transform
- pos: -1.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-26.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 813
+ - uid: 436
components:
- type: Transform
- pos: 0.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-26.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 814
+- proto: GasPassiveVent
+ entities:
+ - uid: 421
components:
- type: Transform
- pos: 0.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-27.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 815
+ - uid: 430
components:
- type: Transform
- pos: -1.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-27.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 816
+ - uid: 469
components:
- type: Transform
- pos: -1.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-26.5
parent: 1
- - uid: 817
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 633
components:
- type: Transform
- pos: -1.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-22.5
parent: 1
-- proto: GasPipeStraight
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+- proto: GasPipeBend
entities:
- - uid: 818
+ - uid: 66
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-2.5
+ pos: -13.5,-21.5
parent: 1
- - uid: 819
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 424
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,-16.5
+ pos: 4.5,-24.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 820
+ color: '#990000FF'
+ - uid: 448
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-18.5
+ pos: 6.5,-27.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 821
+ - uid: 454
components:
- type: Transform
- pos: -1.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-27.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 822
+ - uid: 459
components:
- type: Transform
- pos: -1.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-23.5
parent: 1
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 823
+ - uid: 476
components:
- type: Transform
- pos: -1.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,-26.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 824
+ - uid: 678
components:
- type: Transform
- pos: -1.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-22.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 825
+ - uid: 716
components:
- type: Transform
- pos: -1.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-22.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 826
+ - uid: 1076
components:
- type: Transform
- pos: -1.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 827
+ color: '#0055CCFF'
+ - uid: 1077
components:
- type: Transform
- pos: -1.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-9.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 828
+ - uid: 1111
components:
- type: Transform
- pos: -1.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-8.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 829
+ - uid: 1176
components:
- type: Transform
- pos: -1.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-6.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 830
+ - uid: 1295
components:
- type: Transform
- pos: -1.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 831
+ color: '#0055CCFF'
+ - uid: 1311
components:
- type: Transform
- pos: -1.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-8.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 832
+ color: '#0055CCFF'
+ - uid: 1323
components:
- type: Transform
- pos: -1.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 833
+ color: '#0055CCFF'
+ - uid: 1429
components:
- type: Transform
- pos: -1.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 834
+ color: '#0055CCFF'
+ - uid: 1436
components:
- type: Transform
- pos: -1.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-21.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 835
+ color: '#03FCD3FF'
+ - uid: 1544
components:
- type: Transform
- pos: -1.5,-4.5
+ pos: -13.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 836
+ color: '#0055CCFF'
+ - uid: 1633
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: -14.5,-9.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 837
+- proto: GasPipeFourway
+ entities:
+ - uid: 1008
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: 12.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 838
+ - uid: 1098
components:
- type: Transform
- pos: 0.5,-4.5
+ pos: -1.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 839
+ color: '#990000FF'
+ - uid: 1127
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: 0.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 840
+ - uid: 1727
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: 0.5,-27.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 841
+- proto: GasPipeStraight
+ entities:
+ - uid: 41
components:
- type: Transform
- pos: 0.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 842
+ color: '#990000FF'
+ - uid: 258
components:
- type: Transform
- pos: 0.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-24.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 843
+ - uid: 261
components:
- type: Transform
- pos: 0.5,-9.5
+ pos: 6.5,-25.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 844
+ - uid: 262
components:
- type: Transform
- pos: 0.5,-10.5
+ pos: 8.5,-25.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 845
+ - uid: 423
components:
- type: Transform
- pos: 0.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-23.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 846
+ - uid: 437
components:
- type: Transform
- pos: 0.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-24.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 847
+ color: '#990000FF'
+ - uid: 438
components:
- type: Transform
- pos: 0.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-25.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 848
+ - uid: 439
components:
- type: Transform
- pos: 0.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-22.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 849
+ - uid: 442
components:
- type: Transform
- pos: 0.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-26.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 850
+ - uid: 444
components:
- type: Transform
- pos: 0.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-26.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 851
+ - uid: 455
components:
- type: Transform
- pos: 0.5,-17.5
+ pos: 8.5,-23.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 852
+ - uid: 456
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-18.5
+ pos: 9.5,-23.5
parent: 1
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 853
+ - uid: 467
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-26.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 854
+ color: '#990000FF'
+ - uid: 468
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-26.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 855
+ - uid: 472
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-25.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 856
+ - uid: 998
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-20.5
+ pos: 5.5,-21.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 857
+ - uid: 999
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-20.5
+ pos: 6.5,-21.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 858
+ color: '#0055CCFF'
+ - uid: 1000
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-20.5
+ pos: 5.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 859
+ color: '#0055CCFF'
+ - uid: 1001
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-20.5
+ pos: 7.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 860
+ color: '#0055CCFF'
+ - uid: 1002
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-20.5
+ pos: 4.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 861
+ color: '#0055CCFF'
+ - uid: 1003
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,-20.5
+ pos: 6.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 862
+ - uid: 1004
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,-19.5
+ pos: 8.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 863
+ - uid: 1005
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-19.5
+ pos: 9.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 864
+ - uid: 1006
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-19.5
+ pos: 10.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 865
+ - uid: 1007
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-19.5
+ pos: 11.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 866
+ - uid: 1009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-21.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 867
+ - uid: 1010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 868
+ color: '#990000FF'
+ - uid: 1011
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 869
+ color: '#990000FF'
+ - uid: 1012
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 870
+ color: '#990000FF'
+ - uid: 1013
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 871
+ color: '#990000FF'
+ - uid: 1014
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 872
+ color: '#990000FF'
+ - uid: 1015
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 873
+ - uid: 1017
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-19.5
+ pos: 13.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 874
+ color: '#0055CCFF'
+ - uid: 1018
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-19.5
+ pos: 14.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 875
+ color: '#0055CCFF'
+ - uid: 1019
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-19.5
+ pos: 15.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 876
+ color: '#0055CCFF'
+ - uid: 1020
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 877
+ - uid: 1021
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-21.5
+ pos: 13.5,-20.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 878
+ color: '#990000FF'
+ - uid: 1022
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-21.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 879
+ - uid: 1027
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-20.5
+ pos: 14.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 880
+ - uid: 1028
components:
- type: Transform
- pos: 6.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 881
+ - uid: 1029
components:
- type: Transform
- pos: 6.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 882
+ - uid: 1031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 883
+ - uid: 1032
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-18.5
parent: 1
- - uid: 884
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-17.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 885
+ - uid: 1047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-16.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 886
+ - uid: 1048
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-15.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 887
+ - uid: 1056
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-14.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 888
+ - uid: 1058
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-13.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 889
+ - uid: 1062
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-19.5
+ pos: 12.5,-12.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 890
+ color: '#0055CCFF'
+ - uid: 1066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 891
+ color: '#0055CCFF'
+ - uid: 1070
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 892
+ color: '#0055CCFF'
+ - uid: 1071
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 893
+ color: '#0055CCFF'
+ - uid: 1074
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 894
+ color: '#0055CCFF'
+ - uid: 1075
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 895
+ color: '#0055CCFF'
+ - uid: 1078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-19.5
+ pos: 13.5,-17.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 896
+ color: '#990000FF'
+ - uid: 1079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-20.5
+ pos: 13.5,-16.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 897
+ - uid: 1080
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-20.5
+ pos: 13.5,-15.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 898
+ - uid: 1081
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-18.5
+ pos: 13.5,-14.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 899
+ - uid: 1082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-17.5
+ pos: 13.5,-13.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 900
+ - uid: 1083
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-18.5
+ pos: 13.5,-12.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 901
+ color: '#990000FF'
+ - uid: 1085
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-17.5
+ pos: 13.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 902
+ color: '#990000FF'
+ - uid: 1086
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-15.5
+ pos: 13.5,-10.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 903
+ color: '#990000FF'
+ - uid: 1087
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 904
+ color: '#990000FF'
+ - uid: 1088
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 905
+ color: '#990000FF'
+ - uid: 1089
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 906
+ color: '#990000FF'
+ - uid: 1091
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 907
+ color: '#990000FF'
+ - uid: 1099
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 908
+ color: '#990000FF'
+ - uid: 1100
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 909
+ color: '#990000FF'
+ - uid: 1101
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 910
+ - uid: 1102
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 911
+ - uid: 1103
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 912
+ - uid: 1104
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
+ pos: -2.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 913
+ color: '#990000FF'
+ - uid: 1105
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-2.5
+ pos: -3.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 914
+ color: '#990000FF'
+ - uid: 1107
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-19.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 915
+ color: '#990000FF'
+ - uid: 1108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-3.5
+ pos: -5.5,-18.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 916
+ - uid: 1112
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-18.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 917
+ color: '#990000FF'
+ - uid: 1115
components:
- type: Transform
- pos: 6.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-8.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 918
+ - uid: 1116
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-2.5
+ pos: -1.5,-18.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 919
+ color: '#990000FF'
+ - uid: 1117
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-21.5
+ pos: -1.5,-17.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 920
+ - uid: 1118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-19.5
+ pos: -1.5,-16.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 921
+ color: '#990000FF'
+ - uid: 1119
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-22.5
+ pos: -1.5,-15.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 922
+ - uid: 1123
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-20.5
+ pos: -1.5,-14.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 923
+ - uid: 1124
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-26.5
- parent: 1
- - uid: 924
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-27.5
- parent: 1
- - uid: 925
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-21.5
+ pos: 3.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 926
+ - uid: 1125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 927
+ - uid: 1126
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-2.5
+ pos: 2.5,-20.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 928
+ - uid: 1131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
+ pos: 0.5,-19.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 929
+ - uid: 1133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-2.5
+ pos: 0.5,-17.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 930
+ - uid: 1134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-3.5
+ pos: 0.5,-16.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 931
+ color: '#0055CCFF'
+ - uid: 1135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
+ pos: 0.5,-15.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 932
+ color: '#0055CCFF'
+ - uid: 1138
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-14.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 933
+ color: '#0055CCFF'
+ - uid: 1139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-13.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 934
+ color: '#0055CCFF'
+ - uid: 1148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-12.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 935
+ color: '#0055CCFF'
+ - uid: 1149
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-12.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 936
+ - uid: 1150
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-12.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 937
+ - uid: 1151
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-1.5
+ pos: 3.5,-17.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 938
+ - uid: 1154
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-0.5
+ pos: 3.5,-16.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 939
+ - uid: 1159
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,0.5
+ pos: 3.5,-15.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 940
+ - uid: 1165
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: 3.5,-13.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 941
+ - uid: 1168
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,1.5
+ pos: 3.5,-12.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 942
+ - uid: 1170
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,0.5
+ pos: 3.5,-11.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 943
+ color: '#990000FF'
+ - uid: 1179
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,0.5
+ pos: 3.5,-7.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 944
+ color: '#990000FF'
+ - uid: 1181
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ pos: 3.5,-8.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 945
+ color: '#990000FF'
+ - uid: 1182
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,0.5
+ pos: 3.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 946
+ color: '#990000FF'
+ - uid: 1183
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,0.5
+ pos: 0.5,-11.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 947
+ - uid: 1185
components:
- type: Transform
- pos: -1.5,2.5
+ pos: -1.5,-13.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 948
+ - uid: 1186
components:
- type: Transform
- pos: -1.5,3.5
+ pos: -1.5,-12.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 949
+ - uid: 1187
components:
- type: Transform
- pos: -1.5,4.5
+ pos: -1.5,-11.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 950
+ - uid: 1188
components:
- type: Transform
- pos: 0.5,1.5
+ pos: 0.5,-10.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 951
+ - uid: 1189
components:
- type: Transform
- pos: 0.5,2.5
+ pos: -1.5,-10.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 952
+ color: '#990000FF'
+ - uid: 1193
components:
- type: Transform
- pos: 0.5,3.5
+ pos: -1.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 953
+ color: '#990000FF'
+ - uid: 1198
components:
- type: Transform
- pos: 0.5,4.5
+ pos: 0.5,-9.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 954
+ - uid: 1205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-8.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 955
+ color: '#0055CCFF'
+ - uid: 1207
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-9.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 956
+ color: '#0055CCFF'
+ - uid: 1213
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: 2.5,-7.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 957
+ color: '#0055CCFF'
+ - uid: 1246
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 958
+ - uid: 1253
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,0.5
+ pos: -1.5,-6.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 959
+ color: '#990000FF'
+ - uid: 1256
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,0.5
+ pos: -1.5,-5.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 960
+ color: '#990000FF'
+ - uid: 1260
components:
- type: Transform
- pos: -6.5,-21.5
+ pos: -1.5,-4.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 961
+ - uid: 1262
components:
- type: Transform
- pos: -7.5,-20.5
+ pos: -1.5,-3.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 962
+ color: '#990000FF'
+ - uid: 1263
components:
- type: Transform
- pos: -7.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-4.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 963
+ - uid: 1264
components:
- type: Transform
- pos: -6.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-5.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 964
+ color: '#0055CCFF'
+ - uid: 1268
components:
- type: Transform
- pos: -7.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 965
+ color: '#990000FF'
+ - uid: 1269
components:
- type: Transform
- pos: -7.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 966
+ - uid: 1270
components:
- type: Transform
- pos: -6.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 967
+ color: '#0055CCFF'
+ - uid: 1271
components:
- type: Transform
- pos: -6.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-1.5
parent: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 968
+ color: '#0055CCFF'
+ - uid: 1272
components:
- type: Transform
- pos: -7.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 969
+ - uid: 1273
components:
- type: Transform
- pos: -6.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 970
+ - uid: 1274
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
parent: 1
- - uid: 971
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-24.5
+ pos: -1.5,-0.5
parent: 1
- - uid: 972
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1278
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-25.5
+ pos: 0.5,-0.5
parent: 1
- - uid: 973
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1280
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-26.5
+ pos: -0.5,1.5
parent: 1
- - uid: 974
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1285
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-27.5
+ pos: -2.5,0.5
parent: 1
- - uid: 975
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1287
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,-27.5
+ pos: -0.5,1.5
parent: 1
- - uid: 976
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1289
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,1.5
parent: 1
- - uid: 977
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1290
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
parent: 1
- - uid: 978
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1308
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,0.5
parent: 1
- - uid: 979
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1309
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
parent: 1
- - uid: 980
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1312
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
parent: 1
- - uid: 981
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1313
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,2.5
parent: 1
- - uid: 982
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1314
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-16.5
+ pos: -3.5,2.5
parent: 1
- - uid: 983
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1315
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-16.5
- parent: 1
- - uid: 984
- components:
- - type: Transform
- pos: 13.5,-21.5
- parent: 1
- - uid: 985
- components:
- - type: Transform
- pos: 13.5,-22.5
+ pos: -4.5,2.5
parent: 1
-- proto: GasPipeTJunction
- entities:
- - uid: 986
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1316
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
parent: 1
- - uid: 987
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1318
components:
- type: Transform
- pos: -6.5,-20.5
+ pos: -1.5,2.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 988
+ - uid: 1319
components:
- type: Transform
- pos: -7.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 989
+ - uid: 1320
components:
- type: Transform
- pos: 5.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
parent: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 990
+ color: '#990000FF'
+ - uid: 1321
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,4.5
parent: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 991
+ - uid: 1322
components:
- type: Transform
- pos: 6.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,4.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 992
+ - uid: 1327
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-27.5
+ pos: 0.5,-21.5
parent: 1
- - uid: 993
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1328
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-20.5
parent: 1
- - uid: 994
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1329
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-20.5
parent: 1
-- proto: GasPort
- entities:
- - uid: 995
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1330
components:
- type: Transform
- pos: 9.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 996
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1331
components:
- type: Transform
- pos: 8.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 997
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1332
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 998
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1333
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 999
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-26.5
+ pos: -6.5,-21.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1000
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1339
components:
- type: Transform
- pos: 10.5,-22.5
+ pos: -6.5,-22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1001
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1342
components:
- type: Transform
- pos: 17.5,-16.5
+ pos: -6.5,-23.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasPressurePump
- entities:
- - uid: 1002
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1343
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-23.5
+ pos: -6.5,-24.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1003
+ - uid: 1346
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-16.5
+ pos: -7.5,-24.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasThermoMachineFreezer
- entities:
- - uid: 1004
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1348
components:
- type: Transform
- pos: 17.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-23.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasThermoMachineHeater
- entities:
- - uid: 1005
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1374
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -13.5,-24.5
+ pos: -7.5,-22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1006
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1375
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-25.5
+ pos: -7.5,-21.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasValve
- entities:
- - uid: 1007
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1377
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-20.5
parent: 1
- - type: GasValve
- open: False
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GasVentPump
- entities:
- - uid: 1008
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1379
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: -6.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1009
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1380
components:
- type: Transform
- pos: -13.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1010
+ color: '#990000FF'
+ - uid: 1381
components:
- type: Transform
- pos: 13.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1011
+ color: '#990000FF'
+ - uid: 1382
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1012
+ color: '#990000FF'
+ - uid: 1383
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1013
+ color: '#990000FF'
+ - uid: 1384
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,0.5
+ pos: -7.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1014
+ - uid: 1385
components:
- type: Transform
- pos: 0.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1015
+ - uid: 1386
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1016
+ - uid: 1389
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1017
+ - uid: 1390
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-22.5
+ pos: -11.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
-- proto: GasVentScrubber
- entities:
- - uid: 1018
+ - uid: 1391
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-23.5
+ pos: -12.5,-20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1019
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1408
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,-3.5
+ pos: -12.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1020
+ - uid: 1421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,1.5
+ pos: -13.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1021
+ - uid: 1422
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1022
- components:
+ color: '#0055CCFF'
+ - uid: 1449
+ components:
- type: Transform
- pos: -1.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-18.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1023
+ color: '#0055CCFF'
+ - uid: 1450
components:
- type: Transform
- pos: -14.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-18.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1024
+ color: '#0055CCFF'
+ - uid: 1472
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-3.5
+ pos: -14.5,-18.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1025
+ - uid: 1473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-26.5
+ pos: -14.5,-17.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-27.5
- parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1027
+ - uid: 1475
components:
- type: Transform
- pos: 12.5,-15.5
+ pos: -13.5,-17.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1028
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1515
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1029
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1525
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1030
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1526
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1031
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1529
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-28.5
+ pos: -13.5,-15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1032
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1541
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,-23.5
+ pos: -13.5,-14.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
-- proto: GravityGeneratorMini
- entities:
- - uid: 1033
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1549
components:
- type: Transform
- pos: -11.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-11.5
parent: 1
-- proto: Grille
- entities:
- - uid: 1034
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1554
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-11.5
parent: 1
- - uid: 1035
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1556
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-11.5
parent: 1
- - uid: 1036
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1573
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-11.5
parent: 1
- - uid: 1037
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1582
components:
- type: Transform
- pos: -2.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-11.5
parent: 1
- - uid: 1038
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1584
components:
- type: Transform
- pos: -1.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-12.5
parent: 1
- - uid: 1039
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1589
components:
- type: Transform
- pos: -0.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
parent: 1
- - uid: 1040
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1590
components:
- type: Transform
- pos: 0.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,0.5
parent: 1
- - uid: 1041
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1606
components:
- type: Transform
- pos: 1.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-13.5
parent: 1
- - uid: 1042
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1622
components:
- type: Transform
- pos: -7.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-9.5
parent: 1
- - uid: 1043
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1623
components:
- type: Transform
- pos: -7.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-9.5
parent: 1
- - uid: 1044
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1627
components:
- type: Transform
- pos: -19.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-9.5
parent: 1
- - uid: 1045
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1632
components:
- type: Transform
- pos: -19.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-9.5
parent: 1
- - uid: 1046
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1635
components:
- type: Transform
- pos: -19.5,-16.5
+ pos: -14.5,-10.5
parent: 1
- - uid: 1047
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1636
components:
- type: Transform
- pos: -19.5,-17.5
+ pos: -14.5,-11.5
parent: 1
- - uid: 1048
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1637
components:
- type: Transform
- pos: -19.5,-18.5
+ pos: -14.5,-12.5
parent: 1
- - uid: 1049
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1638
components:
- type: Transform
- pos: -10.5,-18.5
+ pos: -14.5,-13.5
parent: 1
- - uid: 1050
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1651
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: -1.5,-20.5
parent: 1
- - uid: 1051
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1661
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -1.5,-21.5
parent: 1
- - uid: 1052
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1662
components:
- type: Transform
- pos: 9.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-24.5
parent: 1
- - uid: 1053
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1664
components:
- type: Transform
- pos: -9.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-24.5
parent: 1
- - uid: 1054
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1674
components:
- type: Transform
- pos: -8.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-23.5
parent: 1
- - uid: 1055
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1676
components:
- type: Transform
- pos: -6.5,-16.5
+ pos: 0.5,-24.5
parent: 1
- - uid: 1056
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1683
components:
- type: Transform
- pos: 5.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
parent: 1
- - uid: 1057
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1692
components:
- type: Transform
- pos: -6.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-22.5
parent: 1
- - uid: 1058
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1711
components:
- type: Transform
- pos: 5.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-22.5
parent: 1
- - uid: 1059
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1714
components:
- type: Transform
- pos: -12.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-23.5
parent: 1
- - uid: 1060
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1716
components:
- type: Transform
- pos: -12.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-24.5
parent: 1
- - uid: 1061
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1717
components:
- type: Transform
- pos: -12.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-23.5
parent: 1
- - uid: 1062
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1724
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-1.5
+ pos: 0.5,-25.5
parent: 1
- - uid: 1063
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1725
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,-7.5
+ pos: 0.5,-26.5
parent: 1
- - uid: 1064
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1728
components:
- type: Transform
- pos: 19.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-27.5
parent: 1
- - uid: 1065
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1731
components:
- type: Transform
- pos: 13.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-27.5
parent: 1
- - uid: 1066
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1732
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-27.5
parent: 1
- - uid: 1067
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1733
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,-13.5
+ pos: -2.5,-27.5
parent: 1
- - uid: 1068
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1740
components:
- type: Transform
- pos: 12.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-28.5
parent: 1
- - uid: 1069
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1741
components:
- type: Transform
- pos: -20.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-28.5
parent: 1
- - uid: 1070
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1743
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-2.5
+ pos: 0.5,-28.5
parent: 1
- - uid: 1071
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1745
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-23.5
parent: 1
-- proto: GunSafeShuttleCaptain
- entities:
- - uid: 639
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1746
components:
- type: Transform
- pos: -3.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-25.5
parent: 1
-- proto: Gyroscope
- entities:
- - uid: 1072
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1750
components:
- type: Transform
- pos: -10.5,-26.5
+ pos: -1.5,-27.5
parent: 1
- - uid: 1073
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1751
components:
- type: Transform
- pos: -9.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-26.5
parent: 1
-- proto: HospitalCurtains
- entities:
- - uid: 1074
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1752
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -17.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-29.5
parent: 1
- - uid: 1075
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1753
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-29.5
parent: 1
- - uid: 1076
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1761
components:
- type: Transform
- pos: -3.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-7.5
parent: 1
- - type: Occluder
- enabled: False
- - type: Door
- state: Open
- - type: Physics
- canCollide: False
-- proto: HospitalCurtainsOpen
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeTJunction
entities:
- - uid: 640
+ - uid: 69
components:
- type: Transform
- pos: -14.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-18.5
parent: 1
-- proto: hydroponicsTrayAnchored
- entities:
- - uid: 1078
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 457
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-1.5
+ pos: 7.5,-23.5
parent: 1
- - uid: 1079
+ - uid: 458
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-1.5
+ pos: 8.5,-22.5
parent: 1
- - uid: 1080
+ - uid: 479
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,-1.5
+ pos: 9.5,-25.5
parent: 1
- - uid: 1081
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 510
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-1.5
+ pos: 9.5,-24.5
parent: 1
-- proto: IntercomCommon
- entities:
- - uid: 1083
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 641
components:
- type: Transform
- pos: -7.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-22.5
parent: 1
- - uid: 1084
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 677
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -12.5,-25.5
+ pos: 4.5,-23.5
parent: 1
- - uid: 1085
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 996
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: 5.5,-19.5
parent: 1
-- proto: IntercomMedical
- entities:
- - uid: 1087
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 997
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-15.5
+ pos: 6.5,-20.5
parent: 1
-- proto: LampGold
- entities:
- - uid: 1090
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1016
components:
- type: Transform
- pos: -14.404601,-8.26588
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-19.5
parent: 1
-- proto: Lighter
- entities:
- - uid: 1091
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1026
components:
- type: Transform
- pos: -6.293895,1.3893847
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-18.5
parent: 1
-- proto: LockerBoozeFilled
- entities:
- - uid: 1092
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1095
components:
- type: Transform
- pos: -6.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-19.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerCaptainFilledHardsuit
- entities:
- - uid: 626
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1096
components:
- type: Transform
- pos: -5.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-19.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.14908
- moles:
- - 1.606311
- - 6.042789
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerChiefEngineerFilledHardsuit
- entities:
- - uid: 1093
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1109
components:
- type: Transform
- pos: -8.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: -6.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: -7.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-23.5
+ parent: 1
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-23.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-22.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-23.5
+ parent: 1
+- proto: GasPressurePump
+ entities:
+ - uid: 1084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+- proto: GasPressurePumpOn
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-24.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-24.5
+ parent: 1
+- proto: GasPressurePumpOnMax
+ entities:
+ - uid: 460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-24.5
+ parent: 1
+- proto: GasVentPump
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1758
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-16.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-9.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 571
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 871
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1326
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1758
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-9.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 698
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-26.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-28.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1747
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 730
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GlowstickBase
+ entities:
+ - uid: 1777
+ components:
+ - type: Transform
+ pos: 2.6357017,-27.660505
+ parent: 1
+- proto: GlowstickBlue
+ entities:
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 2.5,-27.5
+ parent: 1
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: -11.5,-26.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-25.5
+ parent: 1
+ - uid: 432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-25.5
+ parent: 1
+ - uid: 525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-10.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-10.5
+ parent: 1
+ - uid: 533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-10.5
+ parent: 1
+ - uid: 534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-12.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-12.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-11.5
+ parent: 1
+ - uid: 558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-9.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 2.5,-30.5
+ parent: 1
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 11.5,-26.5
+ parent: 1
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 11.5,-27.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 10.5,-27.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 1
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 1
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -3.5,-30.5
+ parent: 1
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 9.5,-27.5
+ parent: 1
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 1
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 2.5,-7.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: -7.5,-2.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ pos: -7.5,-1.5
+ parent: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 1
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-7.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 1
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: -7.5,1.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: -19.5,-14.5
+ parent: 1
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: -19.5,-15.5
+ parent: 1
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 1
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: -10.5,-18.5
+ parent: 1
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 7.5,-18.5
+ parent: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 8.5,-18.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: -9.5,-18.5
+ parent: 1
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: -8.5,-18.5
+ parent: 1
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: -12.5,-11.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: -12.5,-10.5
+ parent: 1
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: -12.5,-9.5
+ parent: 1
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-7.5
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 19.5,-8.5
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 13.5,-7.5
+ parent: 1
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-13.5
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: -20.5,-8.5
+ parent: 1
+- proto: GunSafeShuttleCaptain
+ entities:
+ - uid: 672
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: -10.5,-26.5
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: -9.5,-26.5
+ parent: 1
+- proto: IntercomEngineering
+ entities:
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-22.5
+ parent: 1
+- proto: IntercomMedical
+ entities:
+ - uid: 676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-15.5
+ parent: 1
+- proto: IntercomService
+ entities:
+ - uid: 1792
+ components:
+ - type: Transform
+ pos: -4.5,-4.5
+ parent: 1
+- proto: LampGold
+ entities:
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 2.5,-10.2
+ parent: 1
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: -14.45,-8.25
+ parent: 1
+- proto: LockerBoozeFilled
+ entities:
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: -6.5,-5.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: LockerCaptainFilledHardsuit
+ entities:
+ - uid: 626
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14908
+ moles:
+ - 1.606311
+ - 6.042789
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 422
+ components:
+ - type: Transform
+ pos: -6.5,-27.5
+ parent: 1
+- proto: LockerJanitorFilled
+ entities:
+ - uid: 885
+ components:
+ - type: Transform
+ pos: -16.5,-18.5
+ parent: 1
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 15.5,-21.5
+ parent: 1
+- proto: LockerWallEVAColorChaplainFilled
+ entities:
+ - uid: 1790
+ components:
+ - type: Transform
+ pos: -17.5,-13.5
+ parent: 1
+- proto: LockerWallMaterialsFuelAmeJarFilled
+ entities:
+ - uid: 1762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-26.5
+ parent: 1
+- proto: MachineCryoSleepPod
+ entities:
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 12.5,-24.5
+ parent: 1
+- proto: MaterialReclaimer
+ entities:
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: -18.5,-20.5
+ parent: 1
+- proto: Mirror
+ entities:
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-27.5
+ parent: 1
+- proto: MopBucketFull
+ entities:
+ - uid: 811
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 1
+- proto: Morgue
+ entities:
+ - uid: 563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-23.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-22.5
+ parent: 1
+- proto: NFPosterLegitMagnusWatching
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 1
+ - uid: 488
+ components:
+ - type: Transform
+ anchored: True
+ pos: 10.5,-22.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: NoticeBoardNF
+ entities:
+ - uid: 452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+- proto: OperatingTable
+ entities:
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 16.5,-21.5
+ parent: 1
+- proto: OxygenCanister
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ anchored: True
+ pos: 10.5,-23.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: PaintingAmogusTriptych
+ entities:
+ - uid: 870
+ components:
+ - type: Transform
+ pos: -17.5,-17.5
+ parent: 1
+- proto: PaperBin10
+ entities:
+ - uid: 694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 1114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+- proto: PaperBin5
+ entities:
+ - uid: 684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 1
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 883
+ components:
+ - type: Transform
+ pos: -17.5,-21.5
+ parent: 1
+- proto: PlushieMoffRandom
+ entities:
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 1
+- proto: PortableScrubber
+ entities:
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 10.5,-25.5
+ parent: 1
+- proto: PosterContrabandBeachStarYamamoto
+ entities:
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+- proto: PosterContrabandBountyHunters
+ entities:
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: -4.5,6.5
+ parent: 1
+- proto: PosterLegitSafetyMothHardhat
+ entities:
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 18.5,-16.5
+ parent: 1
+- proto: PosterLegitSMEpi
+ entities:
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 18.5,-19.5
+ parent: 1
+- proto: PosterLegitSMPills
+ entities:
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 18.5,-18.5
+ parent: 1
+- proto: PosterLegitSMPoisoning
+ entities:
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 18.5,-14.5
+ parent: 1
+- proto: PottedPlantRandom
+ entities:
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 14.5,-20.5
+ parent: 1
+ - uid: 1097
+ components:
+ - type: Transform
+ pos: -15.5,-14.5
+ parent: 1
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 1
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-19.5
+ parent: 1
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-17.5
+ parent: 1
+ - uid: 1203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-22.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-10.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 1
+ - uid: 705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-14.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-15.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-31.5
+ parent: 1
+ - uid: 840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,-12.5
+ parent: 1
+ - uid: 984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 1136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,1.5
+ parent: 1
+ - uid: 1137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 1140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-20.5
+ parent: 1
+ - uid: 1142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-20.5
+ parent: 1
+ - uid: 1145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-25.5
+ parent: 1
+ - uid: 1147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-15.5
+ parent: 1
+ - uid: 1152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-18.5
+ parent: 1
+ - uid: 1155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-8.5
+ parent: 1
+ - uid: 1156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-20.5
+ parent: 1
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-20.5
+ parent: 1
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-20.5
+ parent: 1
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-20.5
+ parent: 1
+ - uid: 1899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 1
+- proto: PoweredlightExterior
+ entities:
+ - uid: 1143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-23.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerMedicineFilled
+ - uid: 1153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 1161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 1813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-23.5
+ parent: 1
+ - uid: 1818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,4.5
+ parent: 1
+- proto: PoweredlightOrange
entities:
- - uid: 1094
+ - uid: 100
components:
- type: Transform
- pos: 15.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-24.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerParamedicFilled
+ - uid: 440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-24.5
+ parent: 1
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-26.5
+ parent: 1
+- proto: PoweredLightPostSmall
entities:
- - uid: 1095
+ - uid: 619
components:
- type: Transform
- pos: 15.5,-19.5
+ pos: 12.5,-5.5
parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: LockerWallMedical
+ - uid: 775
+ components:
+ - type: Transform
+ pos: -13.5,-5.5
+ parent: 1
+- proto: PoweredSmallLight
entities:
- - uid: 1096
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -18.5,-18.5
+ parent: 1
+ - uid: 709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-24.5
+ parent: 1
+ - uid: 1163
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-16.5
+ pos: 12.5,-22.5
parent: 1
-- proto: Bed
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-22.5
+ parent: 1
+ - uid: 1166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-22.5
+ parent: 1
+ - uid: 1169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-27.5
+ parent: 1
+ - uid: 1730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-26.5
+ parent: 1
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: -18.5,-14.5
+ parent: 1
+ - uid: 1815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-26.5
+ parent: 1
+ - uid: 1816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-26.5
+ parent: 1
+- proto: Rack
entities:
- - uid: 1097
+ - uid: 596
components:
- type: Transform
- pos: 17.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
parent: 1
- - uid: 1098
+- proto: RagItem
+ entities:
+ - uid: 979
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: -4.5,-14.2
parent: 1
-- proto: Mirror
+- proto: Railing
entities:
- - uid: 1106
+ - uid: 181
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-27.5
+ pos: 15.5,-19.5
parent: 1
-- proto: Morgue
+ - uid: 182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-20.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 1174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-14.5
+ parent: 1
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-15.5
+ parent: 1
+ - uid: 1892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-20.5
+ parent: 1
+- proto: RailingCorner
entities:
- - uid: 1107
+ - uid: 1177
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-14.5
parent: 1
- - uid: 1108
+ - uid: 1178
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-16.5
parent: 1
-- proto: Multitool
+- proto: RailingCornerSmall
entities:
- - uid: 1109
+ - uid: 284
components:
- type: Transform
- pos: 4.76107,4.8082094
+ pos: 15.5,-21.5
parent: 1
-- proto: NitrogenCanister
- entities:
- - uid: 1110
+ - uid: 511
components:
- type: Transform
- anchored: True
- pos: 8.5,-22.5
+ pos: 16.5,-14.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1111
+ - uid: 546
components:
- type: Transform
- anchored: True
- pos: 9.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-16.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
-- proto: OxygenCanister
- entities:
- - uid: 1112
+ - uid: 1405
components:
- type: Transform
- anchored: True
- pos: 10.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-17.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
-- proto: PaperBin10
- entities:
- - uid: 1113
+ - uid: 1895
components:
- type: Transform
- pos: 2.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-18.5
parent: 1
- - uid: 1114
+ - uid: 1896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-18.5
parent: 1
- - uid: 1115
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: 15.5,-17.5
+ parent: 1
+ - uid: 1898
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-17.5
+ pos: 14.5,-19.5
parent: 1
-- proto: PlushieAtmosian
+- proto: RandomDrinkGlass
entities:
- - uid: 1116
+ - uid: 961
components:
- type: Transform
- pos: 10.573052,-23.745752
+ pos: -3.5,-11.5
parent: 1
-- proto: PlushieSharkBlue
- entities:
- - uid: 1117
+ - uid: 1796
components:
- type: Transform
- pos: 4.507983,4.3010187
+ pos: -3.5,-13.5
parent: 1
-- proto: PortableScrubber
+- proto: RandomInstruments
entities:
- - uid: 1118
+ - uid: 522
components:
- type: Transform
- pos: 9.5,-24.5
+ pos: -3.5,-24.5
parent: 1
- - uid: 1119
+- proto: RandomPainting
+ entities:
+ - uid: 990
components:
- type: Transform
- pos: 10.5,-24.5
+ pos: 16.5,-13.5
parent: 1
-- proto: PosterContrabandBeachStarYamamoto
- entities:
- - uid: 1120
+ - uid: 994
components:
- type: Transform
- pos: 3.5,6.5
+ pos: 3.5,-25.5
parent: 1
-- proto: PosterContrabandBountyHunters
- entities:
- - uid: 1121
+ - uid: 1190
components:
- type: Transform
- pos: -4.5,6.5
+ pos: -4.5,4.5
parent: 1
-- proto: PottedPlantRandom
- entities:
- - uid: 1122
+ - uid: 1238
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: -18.5,-13.5
parent: 1
- - uid: 1123
+ - uid: 1782
components:
- type: Transform
- pos: -4.5,-17.5
+ pos: 2.5,3.5
parent: 1
- - uid: 1124
+- proto: RandomPosterContraband
+ entities:
+ - uid: 120
components:
- type: Transform
- pos: 3.5,-17.5
+ pos: -12.5,-26.5
parent: 1
- - uid: 1126
+ - uid: 124
components:
- type: Transform
- pos: 14.5,-19.5
+ pos: -7.5,-3.5
parent: 1
- - uid: 1127
+ - uid: 1799
components:
- type: Transform
- pos: 14.5,-20.5
+ pos: -19.5,-18.5
parent: 1
- - uid: 1128
+- proto: RandomPosterLegit
+ entities:
+ - uid: 119
components:
- type: Transform
- pos: -2.5,-16.5
+ pos: -2.5,-7.5
parent: 1
- - uid: 1129
+ - uid: 130
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: -5.5,-24.5
parent: 1
-- proto: PowerCellRecharger
- entities:
- - uid: 1130
+ - uid: 509
components:
- type: Transform
- pos: -7.5,-26.5
+ pos: -12.5,-18.5
parent: 1
-- proto: Poweredlight
- entities:
- - uid: 1131
+ - uid: 582
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-16.5
+ pos: 2.5,-0.5
parent: 1
- - uid: 1132
+ - uid: 809
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-16.5
+ pos: -6.5,-18.5
parent: 1
- - uid: 1133
+ - uid: 884
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-9.5
+ pos: -2.5,-5.5
parent: 1
- - uid: 1134
+ - uid: 1192
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-2.5
+ pos: 2.5,-21.5
parent: 1
- - uid: 1135
+ - uid: 1196
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,0.5
+ pos: -3.5,-21.5
parent: 1
- - uid: 1136
+ - uid: 1200
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,1.5
+ pos: 1.5,-6.5
parent: 1
- - uid: 1137
+ - uid: 1202
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,4.5
+ pos: 3.5,-0.5
parent: 1
- - uid: 1138
+ - uid: 1204
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-10.5
+ pos: -5.5,-4.5
parent: 1
- - uid: 1139
+ - uid: 1672
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-10.5
+ pos: 4.5,-11.5
parent: 1
- - uid: 1140
+ - uid: 1807
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-20.5
+ pos: 11.5,-13.5
parent: 1
- - uid: 1141
+ - uid: 1809
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-18.5
+ pos: 5.5,-17.5
parent: 1
- - uid: 1142
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 445
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-20.5
+ pos: 5.5,-25.5
parent: 1
- - uid: 1143
+ - uid: 478
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-24.5
+ pos: 7.5,-25.5
parent: 1
- - uid: 1144
+- proto: ReinforcedWindow
+ entities:
+ - uid: 528
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-10.5
parent: 1
- - uid: 1145
+ - uid: 537
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-10.5
parent: 1
- - uid: 1146
+ - uid: 703
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,-30.5
+ pos: -0.5,-0.5
parent: 1
- - uid: 1147
+ - uid: 752
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-15.5
+ pos: -0.5,-29.5
parent: 1
- - uid: 1148
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 84
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-10.5
+ pos: -0.5,8.5
parent: 1
- - uid: 1149
+ - uid: 85
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-10.5
+ pos: 0.5,8.5
parent: 1
- - uid: 1150
+ - uid: 86
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-11.5
+ pos: -1.5,8.5
parent: 1
- - uid: 1151
+ - uid: 87
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-11.5
+ pos: -2.5,8.5
parent: 1
- - uid: 1152
+ - uid: 964
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-18.5
+ pos: 1.5,8.5
parent: 1
- - uid: 1153
+- proto: ShuttleWindow
+ entities:
+ - uid: 239
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-8.5
+ pos: 2.5,-7.5
parent: 1
- - uid: 1154
+ - uid: 287
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -0.5,-1.5
+ pos: 4.5,-7.5
parent: 1
- - uid: 1155
+ - uid: 514
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,-8.5
+ pos: 12.5,-7.5
parent: 1
- - uid: 1156
+ - uid: 524
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-10.5
parent: 1
- - uid: 1157
+ - uid: 529
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,-20.5
+ pos: -12.5,-11.5
parent: 1
- - uid: 1158
+ - uid: 530
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-20.5
+ pos: -12.5,-12.5
parent: 1
- - uid: 1159
+ - uid: 548
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-11.5
parent: 1
- - uid: 1160
+ - uid: 550
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 8.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-12.5
parent: 1
-- proto: PoweredlightLED
- entities:
- - uid: 1161
+ - uid: 551
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,9.5
+ pos: 11.5,-9.5
parent: 1
- - uid: 1162
+ - uid: 586
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,9.5
+ pos: 1.5,-4.5
parent: 1
-- proto: PoweredSmallLight
- entities:
- - uid: 1163
+ - uid: 588
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-22.5
+ pos: 6.5,-3.5
parent: 1
- - uid: 1164
+ - uid: 649
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-22.5
+ pos: -3.5,-30.5
parent: 1
- - uid: 1165
+ - uid: 650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-22.5
+ pos: 11.5,-26.5
parent: 1
- - uid: 1166
+ - uid: 700
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-22.5
+ pos: 5.5,-15.5
parent: 1
- - uid: 1167
+ - uid: 707
components:
- type: Transform
- pos: -5.5,-5.5
+ pos: 5.5,-16.5
parent: 1
- - uid: 1168
+ - uid: 733
components:
- type: Transform
- pos: 3.5,-5.5
+ pos: 2.5,-30.5
parent: 1
- - uid: 1169
+ - uid: 735
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-3.5
+ pos: 11.5,-27.5
parent: 1
- - uid: 1170
+ - uid: 738
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-3.5
+ pos: 10.5,-27.5
parent: 1
- - uid: 1171
+ - uid: 740
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,1.5
+ pos: -0.5,8.5
parent: 1
- - uid: 1729
+ - uid: 743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-27.5
+ pos: 5.5,-9.5
parent: 1
- - uid: 1730
+ - uid: 745
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-26.5
+ pos: 5.5,-10.5
parent: 1
-- proto: Rack
- entities:
- - uid: 1172
+ - uid: 747
components:
- type: Transform
- pos: -6.5,-27.5
+ pos: 1.5,-1.5
parent: 1
-- proto: RagItem
- entities:
- - uid: 1173
+ - uid: 773
components:
- type: Transform
- pos: -3.5151198,-12.430893
+ pos: -7.5,-1.5
parent: 1
-- proto: Railing
- entities:
- - uid: 1174
+ - uid: 774
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-14.5
+ pos: -7.5,-2.5
parent: 1
- - uid: 1175
+ - uid: 828
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-15.5
+ pos: 5.5,-12.5
parent: 1
- - uid: 1176
+ - uid: 829
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-20.5
+ pos: 5.5,-13.5
parent: 1
-- proto: RailingCorner
- entities:
- - uid: 1177
+ - uid: 830
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-14.5
+ pos: 1.5,-3.5
parent: 1
- - uid: 1178
+ - uid: 839
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-16.5
+ pos: 1.5,-2.5
parent: 1
- - uid: 1179
+ - uid: 849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-19.5
+ pos: 6.5,-2.5
parent: 1
-- proto: RandomArcade
- entities:
- - uid: 1180
+ - uid: 869
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 9.5,-27.5
parent: 1
-- proto: RandomDrinkBottle
- entities:
- - uid: 1181
+ - uid: 1194
components:
- type: Transform
- pos: -3.5,-11.5
+ pos: 4.5,-0.5
parent: 1
-- proto: RandomDrinkGlass
- entities:
- - uid: 1182
+ - uid: 1209
components:
- type: Transform
- pos: -4.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-7.5
parent: 1
- - uid: 1183
+ - uid: 1210
components:
- type: Transform
- pos: -3.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-7.5
parent: 1
-- proto: RandomInstruments
- entities:
- - uid: 1186
+ - uid: 1211
components:
- type: Transform
- pos: -5.5,-17.5
+ pos: -19.5,-15.5
parent: 1
- - type: RandomSpawner
- chance: 1
-- proto: RandomItem
- entities:
- - uid: 1187
+ - uid: 1214
components:
- type: Transform
- pos: 2.5,-24.5
+ pos: -2.5,8.5
parent: 1
- - type: RandomSpawner
- chance: 1
- - uid: 1188
+ - uid: 1215
components:
- type: Transform
- pos: -3.5,-24.5
+ pos: -1.5,8.5
parent: 1
- - type: RandomSpawner
- chance: 1
- - uid: 1189
+ - uid: 1217
components:
- type: Transform
- pos: 2.5,-28.5
+ pos: 0.5,8.5
parent: 1
- - type: RandomSpawner
- chance: 1
-- proto: RandomPainting
- entities:
- - uid: 1190
+ - uid: 1218
components:
- type: Transform
- pos: -4.5,4.5
+ pos: 1.5,8.5
parent: 1
- - uid: 1191
+ - uid: 1219
components:
- type: Transform
- pos: -17.5,-13.5
+ pos: -7.5,1.5
parent: 1
-- proto: RandomPosterLegit
- entities:
- - uid: 1192
+ - uid: 1220
components:
- type: Transform
- pos: 2.5,-21.5
+ pos: -7.5,2.5
parent: 1
- - uid: 1193
+ - uid: 1221
components:
- type: Transform
- pos: -6.5,-18.5
+ pos: 7.5,-18.5
parent: 1
- - uid: 1194
+ - uid: 1222
components:
- type: Transform
- pos: 2.5,3.5
+ pos: 8.5,-18.5
parent: 1
- - uid: 1195
+ - uid: 1223
components:
- type: Transform
- pos: -2.5,-9.5
+ pos: -8.5,-18.5
parent: 1
- - uid: 1196
+ - uid: 1224
components:
- type: Transform
- pos: -3.5,-21.5
+ pos: 9.5,-18.5
parent: 1
- - uid: 1197
+ - uid: 1225
components:
- type: Transform
- pos: 5.5,-18.5
+ pos: -10.5,-18.5
parent: 1
- - uid: 1198
+ - uid: 1226
components:
- type: Transform
- pos: -2.5,-6.5
+ pos: -9.5,-18.5
parent: 1
- - uid: 1199
+ - uid: 1227
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: -19.5,-14.5
parent: 1
- - uid: 1200
+ - uid: 1228
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: -19.5,-16.5
parent: 1
- - uid: 1201
+ - uid: 1230
components:
- type: Transform
- pos: 1.5,-7.5
+ pos: -12.5,-10.5
parent: 1
- - uid: 1202
+ - uid: 1232
components:
- type: Transform
- pos: 3.5,-0.5
+ pos: -12.5,-9.5
parent: 1
- - uid: 1203
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 1
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: -6.5,-16.5
+ parent: 1
+ - uid: 1239
components:
- type: Transform
- pos: -3.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-13.5
parent: 1
- - uid: 1204
+ - uid: 1240
components:
- type: Transform
- pos: -5.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-12.5
parent: 1
-- proto: Screwdriver
- entities:
- - uid: 1207
+ - uid: 1243
components:
- type: Transform
- pos: 4.5673113,4.772986
+ pos: 19.5,-8.5
parent: 1
-- proto: ShuttleWindow
- entities:
- - uid: 1208
+ - uid: 1244
components:
- type: Transform
- pos: 12.5,-7.5
+ pos: 13.5,-7.5
parent: 1
- - uid: 1209
+ - uid: 1245
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-7.5
+ pos: -20.5,-8.5
parent: 1
- - uid: 1210
+ - uid: 1781
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-7.5
+ pos: 6.5,-1.5
parent: 1
- - uid: 1211
+- proto: SignalButton
+ entities:
+ - uid: 88
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: -0.5,6.5
parent: 1
- - uid: 1212
+ - type: DeviceLinkSource
+ linkedPorts:
+ 87:
+ - Pressed: Toggle
+ 86:
+ - Pressed: Toggle
+ 84:
+ - Pressed: Toggle
+ 85:
+ - Pressed: Toggle
+ 964:
+ - Pressed: Toggle
+ - uid: 97
components:
- type: Transform
- pos: -19.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-20.5
parent: 1
- - uid: 1213
+ - type: DeviceLinkSource
+ linkedPorts:
+ 872:
+ - Pressed: Toggle
+- proto: SignArcade
+ entities:
+ - uid: 1600
components:
- type: Transform
- pos: -19.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-7.5
parent: 1
- - uid: 1214
+- proto: SignAtmos
+ entities:
+ - uid: 1195
components:
- type: Transform
- pos: -2.5,8.5
+ pos: 4.5,-21.5
parent: 1
- - uid: 1215
+- proto: SignAtmosMinsky
+ entities:
+ - uid: 555
components:
- type: Transform
- pos: -1.5,8.5
+ pos: 7.5,-21.5
parent: 1
- - uid: 1216
+- proto: SignBar
+ entities:
+ - uid: 1248
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -3.5,-10.5
parent: 1
- - uid: 1217
+- proto: SignBarbershop
+ entities:
+ - uid: 65
components:
- type: Transform
- pos: 0.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-22.5
parent: 1
- - uid: 1218
+- proto: SignBridge
+ entities:
+ - uid: 1249
components:
- type: Transform
- pos: 1.5,8.5
+ pos: -1.5,3.5
parent: 1
- - uid: 1219
+- proto: SignChapel
+ entities:
+ - uid: 771
components:
- type: Transform
- pos: -7.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-17.5
parent: 1
- - uid: 1220
+- proto: SignDirectionalBridge
+ entities:
+ - uid: 1130
components:
- type: Transform
- pos: -7.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-9.5
parent: 1
- - uid: 1221
+ - uid: 1893
components:
- type: Transform
- pos: 7.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-18.3
parent: 1
- - uid: 1222
+- proto: SignDirectionalDorms
+ entities:
+ - uid: 1252
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -2.5,-22.5
parent: 1
- - uid: 1223
+- proto: SignDirectionalEng
+ entities:
+ - uid: 1894
components:
- type: Transform
- pos: -8.5,-18.5
+ pos: -2.5,-9.7
parent: 1
- - uid: 1224
+- proto: SignDirectionalMed
+ entities:
+ - uid: 1497
components:
- type: Transform
- pos: 9.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-18.5
parent: 1
- - uid: 1225
+- proto: SignElectricalMed
+ entities:
+ - uid: 38
components:
- type: Transform
- pos: -10.5,-18.5
+ pos: -9.5,-21.5
parent: 1
- - uid: 1226
+- proto: SignEngine
+ entities:
+ - uid: 1254
components:
- type: Transform
- pos: -9.5,-18.5
+ pos: -8.5,-21.5
parent: 1
- - uid: 1227
+- proto: SignEngineering
+ entities:
+ - uid: 697
components:
- type: Transform
- pos: -19.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-21.5
parent: 1
- - uid: 1228
+- proto: SignFire
+ entities:
+ - uid: 1162
components:
- type: Transform
- pos: -19.5,-16.5
+ pos: -7.5,-28.5
parent: 1
- - uid: 1229
+- proto: SignFlammableMed
+ entities:
+ - uid: 1805
components:
- type: Transform
- pos: -12.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-21.5
parent: 1
- - uid: 1230
+- proto: SignHead
+ entities:
+ - uid: 1255
components:
- type: Transform
- pos: -12.5,-10.5
+ pos: -2.5,1.5
parent: 1
- - uid: 1231
+- proto: SignJanitor
+ entities:
+ - uid: 802
components:
- type: Transform
- pos: 5.5,-16.5
+ pos: -15.5,-18.5
parent: 1
- - uid: 1232
+- proto: SignLastIdiot
+ entities:
+ - uid: 1257
components:
- type: Transform
- pos: -12.5,-9.5
+ pos: 17.5,-8.5
parent: 1
- - uid: 1233
+ - uid: 1258
components:
- type: Transform
- pos: -6.5,-15.5
+ pos: -19.5,-8.5
parent: 1
- - uid: 1234
+- proto: SignLibrary
+ entities:
+ - uid: 1259
components:
- type: Transform
- pos: 5.5,-15.5
+ pos: -15.5,-13.5
parent: 1
- - uid: 1235
+- proto: SignMedical
+ entities:
+ - uid: 417
components:
- type: Transform
- pos: -6.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-18.5
parent: 1
- - uid: 1236
+ - uid: 1806
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-12.5
parent: 1
- - uid: 1237
+- proto: SignMorgue
+ entities:
+ - uid: 536
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-1.5
+ pos: 13.5,-21.5
parent: 1
- - uid: 1238
+- proto: SignReception
+ entities:
+ - uid: 556
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-12.5
+ pos: 2.5,-11.5
parent: 1
- - uid: 1239
+- proto: SignShield
+ entities:
+ - uid: 1261
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-13.5
+ pos: -2.5,-3.5
parent: 1
- - uid: 1240
+- proto: SignShipDock
+ entities:
+ - uid: 74
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-10.5
parent: 1
- - uid: 1241
+ - uid: 554
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-10.5
parent: 1
- - uid: 1242
+ - uid: 770
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-2.5
+ pos: -0.5,-32.5
parent: 1
- - uid: 1243
+- proto: SignSurgery
+ entities:
+ - uid: 3
components:
- type: Transform
- pos: 19.5,-8.5
+ pos: 17.5,-21.5
parent: 1
- - uid: 1244
+- proto: SignTelecomms
+ entities:
+ - uid: 1831
components:
- type: Transform
- pos: 13.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-0.5
parent: 1
- - uid: 1245
+- proto: Sink
+ entities:
+ - uid: 344
components:
- type: Transform
- pos: -20.5,-8.5
+ pos: -17.5,-18.5
parent: 1
-- proto: SignalButton
+- proto: SinkWide
entities:
- - uid: 1246
+ - uid: 1265
components:
- type: Transform
- pos: -0.23381275,6.3443847
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-27.5
parent: 1
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 88:
- - Pressed: Toggle
- 87:
- - Pressed: Toggle
- 86:
- - Pressed: Toggle
- 85:
- - Pressed: Toggle
- 84:
- - Pressed: Toggle
-- proto: SignAtmosMinsky
+- proto: SMESBasic
entities:
- - uid: 1247
+ - uid: 198
components:
- type: Transform
- pos: 4.5,-21.5
+ pos: -8.5,-27.5
parent: 1
-- proto: SignBar
- entities:
- - uid: 1248
+ - uid: 1900
components:
- type: Transform
- pos: -3.5,-10.5
+ pos: -8.5,-26.5
parent: 1
-- proto: SignBridge
+- proto: SoapDeluxe
entities:
- - uid: 1249
+ - uid: 1783
components:
- type: Transform
- pos: -1.5,3.5
+ pos: -4.5,-28.5
parent: 1
-- proto: SignChapel
+- proto: SoapNT
entities:
- - uid: 1250
+ - uid: 1788
components:
- type: Transform
- pos: -17.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,4.5
parent: 1
-- proto: SignCryogenicsMed
+- proto: SpaceVillainArcadeFilled
entities:
- - uid: 1251
+ - uid: 1774
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 17.5,-13.5
+ pos: 4.5,-9.5
parent: 1
-- proto: SignDirectionalDorms
+- proto: SpawnPointLatejoin
entities:
- - uid: 1252
+ - uid: 580
components:
- type: Transform
- pos: -2.5,-22.5
+ pos: -0.5,-16.5
parent: 1
-- proto: SignDirectionalFood
+- proto: SprayBottleWater
entities:
- - uid: 1253
+ - uid: 507
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: 2.5,-22.5
parent: 1
-- proto: SignEngine
+- proto: StairWhite
entities:
- - uid: 1254
+ - uid: 505
components:
- type: Transform
- pos: -8.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-18.5
parent: 1
-- proto: SignHead
- entities:
- - uid: 1255
+ - uid: 516
components:
- type: Transform
- pos: -2.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-17.5
parent: 1
-- proto: SignHydro1
+- proto: StationMap
entities:
- - uid: 1256
+ - uid: 1784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-15.5
parent: 1
-- proto: SignLastIdiot
- entities:
- - uid: 1257
+ - uid: 1800
components:
- type: Transform
- pos: 17.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-15.5
parent: 1
- - uid: 1258
+ - uid: 1801
components:
- type: Transform
- pos: -19.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-4.5
parent: 1
-- proto: SignLibrary
+- proto: SteelBench
entities:
- - uid: 1259
+ - uid: 882
components:
- type: Transform
- pos: -15.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-22.5
parent: 1
-- proto: SignMorgue
- entities:
- - uid: 1260
+ - uid: 1609
components:
- type: Transform
- pos: 12.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-23.5
parent: 1
-- proto: SignShield
+- proto: StoolBar
entities:
- - uid: 1261
+ - uid: 778
components:
- type: Transform
- pos: -2.5,-3.5
+ pos: -2.5,-13.5
parent: 1
-- proto: SignShipDock
- entities:
- - uid: 1262
+ - uid: 1281
components:
- type: Transform
- pos: -17.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-12.5
parent: 1
- - uid: 1263
+ - uid: 1283
components:
- type: Transform
- pos: -0.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-11.5
parent: 1
- - uid: 1264
+ - uid: 1286
components:
- type: Transform
- pos: 16.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
parent: 1
-- proto: SinkWide
+- proto: SubstationBasic
entities:
- - uid: 1265
+ - uid: 1106
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-27.5
+ pos: -6.5,-28.5
parent: 1
-- proto: SMESBasic
+- proto: SuitStorageEVA
entities:
- - uid: 1266
+ - uid: 118
components:
- type: Transform
- pos: -8.5,-27.5
+ pos: 17.5,-12.5
parent: 1
- - uid: 1267
+ - uid: 1296
components:
- type: Transform
- pos: -7.5,-27.5
+ pos: -18.5,-12.5
parent: 1
-- proto: SoapDeluxe
+- proto: Table
entities:
- - uid: 1268
+ - uid: 403
components:
- type: Transform
- pos: -4.1038713,-28.441486
+ pos: 2.5,-22.5
parent: 1
-- proto: soda_dispenser
- entities:
- - uid: 1269
+ - uid: 446
components:
- type: Transform
- pos: -5.5,-5.5
+ pos: 3.5,-22.5
parent: 1
-- proto: SpawnPointLatejoin
- entities:
- - uid: 1273
+ - uid: 786
components:
- type: Transform
- pos: -4.5,-23.5
+ pos: -3.5,-7.5
parent: 1
- - uid: 1274
+ - uid: 788
components:
- type: Transform
- pos: 3.5,-23.5
+ pos: -4.5,-5.5
parent: 1
- - uid: 1275
+ - uid: 789
components:
- type: Transform
- pos: 3.5,-27.5
+ pos: -3.5,-5.5
parent: 1
-- proto: SteelBench
- entities:
- - uid: 632
+ - uid: 795
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 876
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,-22.5
+ pos: -8.5,-22.5
parent: 1
-- proto: StoolBar
- entities:
- - uid: 1279
+ - uid: 1297
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-11.5
+ pos: -6.5,-3.5
parent: 1
- - uid: 1280
+ - uid: 1298
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-12.5
+ pos: -5.5,-3.5
parent: 1
- - uid: 1281
+ - uid: 1299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-12.5
+ pos: -4.5,-3.5
parent: 1
- - uid: 1282
+ - uid: 1300
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-14.5
+ pos: -3.5,-3.5
parent: 1
- - uid: 1283
+- proto: TableCarpet
+ entities:
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 1
+ - uid: 1303
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-11.5
+ pos: -0.5,-17.5
parent: 1
- - uid: 1284
+ - uid: 1304
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-18.5
parent: 1
- - uid: 1285
+ - uid: 1305
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-18.5
parent: 1
- - uid: 1286
+ - uid: 1306
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-14.5
+ pos: -1.5,-18.5
+ parent: 1
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
parent: 1
-- proto: StorageCanister
+- proto: TableReinforced
entities:
- - uid: 1287
+ - uid: 874
components:
- type: Transform
- anchored: True
- pos: 5.5,-24.5
+ pos: -0.5,7.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1288
+ - uid: 963
components:
- type: Transform
- anchored: True
- pos: 5.5,-25.5
+ pos: -2.5,7.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
- - uid: 1289
+ - uid: 1335
components:
- type: Transform
- anchored: True
- pos: 5.5,-26.5
+ pos: 1.5,7.5
parent: 1
- - type: Physics
- bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
-- proto: SubstationBasic
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 1
+ - uid: 1793
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 1821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
+ parent: 1
+- proto: TableReinforcedGlass
entities:
- - uid: 1291
+ - uid: 286
components:
- type: Transform
- pos: 3.5,4.5
+ pos: 17.5,-19.5
parent: 1
- - uid: 1292
+ - uid: 540
components:
- type: Transform
- pos: -11.5,-25.5
+ pos: 17.5,-20.5
parent: 1
-- proto: SuitStorageEVA
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 17.5,-18.5
+ parent: 1
+- proto: TableWood
entities:
- - uid: 1293
+ - uid: 76
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-27.5
+ parent: 1
+ - uid: 544
components:
- type: Transform
- pos: 17.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-17.5
parent: 1
- - uid: 1294
+ - uid: 545
components:
- type: Transform
- pos: 1.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-17.5
parent: 1
- - uid: 1295
+ - uid: 566
components:
- type: Transform
- pos: -2.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
parent: 1
- - uid: 1296
+ - uid: 759
components:
- type: Transform
- pos: -18.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-16.5
parent: 1
-- proto: Table
- entities:
- - uid: 1297
+ - uid: 781
components:
- type: Transform
- pos: -6.5,-3.5
+ pos: 2.5,1.5
parent: 1
- - uid: 1298
+ - uid: 782
components:
- type: Transform
- pos: -5.5,-3.5
+ pos: 3.5,1.5
parent: 1
- - uid: 1299
+ - uid: 798
components:
- type: Transform
- pos: -4.5,-3.5
+ pos: -6.5,1.5
parent: 1
- - uid: 1300
+ - uid: 799
components:
- type: Transform
- pos: -3.5,-3.5
+ pos: -6.5,0.5
parent: 1
- - uid: 1301
+ - uid: 800
components:
- type: Transform
- pos: -7.5,-26.5
+ pos: -6.5,2.5
parent: 1
-- proto: TableCarpet
- entities:
- - uid: 1302
+ - uid: 1336
components:
- type: Transform
- pos: -1.5,-17.5
+ pos: -13.5,-8.5
parent: 1
- - uid: 1303
+ - uid: 1337
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-17.5
+ pos: -14.5,-8.5
parent: 1
- - uid: 1304
+ - uid: 1340
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-18.5
+ pos: -3.5,-24.5
parent: 1
- - uid: 1305
+ - uid: 1341
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-18.5
+ pos: 2.5,-28.5
parent: 1
- - uid: 1306
+- proto: TableWoodReinforced
+ entities:
+ - uid: 565
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-18.5
+ pos: 4.5,-14.5
parent: 1
- - uid: 1307
+ - uid: 601
components:
- type: Transform
- pos: 0.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-13.5
parent: 1
-- proto: TableCounterWood
- entities:
- - uid: 1308
+ - uid: 603
components:
- type: Transform
- pos: -17.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-12.5
parent: 1
-- proto: TableGlass
- entities:
- - uid: 1309
+ - uid: 618
components:
- type: Transform
- pos: 3.5,1.5
+ pos: 2.5,-14.5
parent: 1
- - uid: 1310
+ - uid: 627
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 2.5,-12.5
parent: 1
- - uid: 1311
+ - uid: 631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-14.5
parent: 1
- - uid: 1312
+ - uid: 721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-11.5
parent: 1
- - uid: 1313
+ - uid: 723
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-14.5
parent: 1
- - uid: 1314
+ - uid: 783
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-18.5
+ pos: 2.5,-13.5
parent: 1
- - uid: 1315
+ - uid: 787
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-17.5
+ pos: 3.5,-14.5
parent: 1
- - uid: 1316
+ - uid: 1347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-17.5
+ pos: -4.5,-14.5
parent: 1
-- proto: TableReinforced
+- proto: TelecomServerFilledShuttle
entities:
- - uid: 1317
+ - uid: 1794
components:
- type: Transform
- pos: 3.5,-14.5
+ pos: -6.5,-1.5
parent: 1
- - uid: 1318
+- proto: Thruster
+ entities:
+ - uid: 1180
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,-5.5
+ pos: -16.5,-23.5
parent: 1
- - uid: 1319
+ - uid: 1349
components:
- type: Transform
- pos: 2.5,-14.5
+ pos: -8.5,4.5
parent: 1
- - uid: 1320
+ - uid: 1350
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-7.5
+ pos: 7.5,4.5
parent: 1
- - uid: 1321
+ - type: Thruster
+ enabled: False
+ - type: ApcPowerReceiver
+ powerLoad: 1
+ - uid: 1351
components:
- type: Transform
- pos: 4.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,1.5
parent: 1
- - uid: 1322
+ - uid: 1352
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,2.5
parent: 1
- - uid: 1323
+ - uid: 1353
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
+ pos: -8.5,2.5
parent: 1
- - uid: 1324
+ - uid: 1354
components:
- type: Transform
- pos: 2.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 1
- - uid: 1325
+ - uid: 1355
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-8.5
parent: 1
- - uid: 1326
+ - uid: 1356
components:
- type: Transform
- pos: 2.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-7.5
parent: 1
- - uid: 1327
+ - uid: 1357
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-8.5
parent: 1
- - uid: 1328
+ - uid: 1358
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-7.5
parent: 1
- - uid: 1329
+ - uid: 1359
components:
- type: Transform
- pos: 2.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-26.5
parent: 1
- - uid: 1330
+ - uid: 1360
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,-6.5
+ pos: -13.5,-26.5
parent: 1
- - uid: 1331
+ - uid: 1361
components:
- type: Transform
- pos: -5.5,-5.5
+ pos: 10.5,-16.5
parent: 1
-- proto: TableReinforcedGlass
- entities:
- - uid: 1332
+ - uid: 1362
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,1.5
+ pos: -5.5,-30.5
parent: 1
- - uid: 1333
+ - uid: 1363
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,0.5
+ pos: -4.5,-30.5
parent: 1
- - uid: 1334
+ - uid: 1364
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,2.5
+ pos: 3.5,-30.5
parent: 1
-- proto: TableStone
- entities:
- - uid: 1335
+ - uid: 1365
components:
- type: Transform
- pos: -0.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-30.5
parent: 1
-- proto: TableWood
- entities:
- - uid: 1336
+ - uid: 1367
components:
- type: Transform
- pos: -13.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-23.5
parent: 1
- - uid: 1337
+ - uid: 1368
components:
- type: Transform
- pos: -14.5,-8.5
+ pos: -8.5,-4.5
parent: 1
- - uid: 1338
+ - uid: 1369
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-15.5
+ pos: 7.5,-4.5
parent: 1
- - uid: 1339
+ - uid: 1370
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-15.5
+ pos: -6.5,-30.5
parent: 1
- - uid: 1340
+ - uid: 1371
components:
- type: Transform
- pos: -3.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-30.5
parent: 1
- - uid: 1341
+ - uid: 1372
components:
- type: Transform
- pos: 2.5,-28.5
+ pos: -11.5,-16.5
parent: 1
- - uid: 1342
+- proto: ToiletEmpty
+ entities:
+ - uid: 9
components:
- type: Transform
- pos: 2.5,-24.5
- parent: 1
-- proto: TableWoodReinforced
- entities:
- - uid: 1343
+ rot: 1.5707963267948966 rad
+ pos: 3.5,4.5
+ parent: 1
+ - uid: 1373
components:
- type: Transform
- pos: -3.5,-13.5
+ pos: -4.5,-26.5
parent: 1
- - uid: 1344
+- proto: ToyFigurineBartender
+ entities:
+ - uid: 1772
components:
- type: Transform
- pos: -3.5,-14.5
+ pos: -3.3282313,-5.3727484
parent: 1
- - uid: 1345
+- proto: ToyFigurineBoxer
+ entities:
+ - uid: 587
components:
- type: Transform
- pos: -5.5,-14.5
+ pos: 2.752349,-5.3944893
parent: 1
- - uid: 1346
+- proto: TwoWayLever
+ entities:
+ - uid: 862
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: -17.5,-19.5
parent: 1
- - uid: 1347
+ - type: DeviceLinkSource
+ linkedPorts:
+ 875:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 466:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 640:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 881:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 879:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 880:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: UniformShortsRedWithTop
+ entities:
+ - uid: 805
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: 2.5,-5.5
parent: 1
- - uid: 1348
+- proto: VendingMachineBooze
+ entities:
+ - uid: 1167
components:
- type: Transform
- pos: -3.5,-11.5
+ pos: -3.5,-9.5
parent: 1
-- proto: Thruster
+- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 1349
+ - uid: 1387
components:
- type: Transform
- pos: -8.5,4.5
+ pos: -19.5,-12.5
parent: 1
- - uid: 1350
+ - uid: 1388
components:
- type: Transform
- pos: 7.5,4.5
+ pos: 18.5,-12.5
parent: 1
- - uid: 1351
+- proto: WallShuttle
+ entities:
+ - uid: 176
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-17.5
parent: 1
- - uid: 1352
+ - uid: 425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-26.5
parent: 1
- - uid: 1353
+ - uid: 426
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-27.5
parent: 1
- - uid: 1354
+ - uid: 433
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-25.5
parent: 1
- - uid: 1355
+ - uid: 434
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,-8.5
+ pos: 8.5,-26.5
parent: 1
- - uid: 1356
+ - uid: 441
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-27.5
parent: 1
- - uid: 1357
+ - uid: 451
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-8.5
+ pos: 8.5,-25.5
parent: 1
- - uid: 1358
+ - uid: 512
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-18.5
parent: 1
- - uid: 1359
+ - uid: 532
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-18.5
parent: 1
- - uid: 1360
+ - uid: 553
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-26.5
+ pos: 13.5,-21.5
parent: 1
- - uid: 1361
+ - uid: 614
components:
- type: Transform
- pos: 10.5,-16.5
+ pos: 1.5,-10.5
parent: 1
- - uid: 1362
+ - uid: 620
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-11.5
parent: 1
- - uid: 1363
+ - uid: 621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-30.5
+ pos: 2.5,-11.5
parent: 1
- - uid: 1364
+ - uid: 655
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-17.5
parent: 1
- - uid: 1365
+ - uid: 732
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-9.5
parent: 1
- - uid: 1366
+ - uid: 739
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-17.5
parent: 1
- - uid: 1367
+ - uid: 821
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,-23.5
+ pos: -16.5,-17.5
parent: 1
- - uid: 1368
+ - uid: 823
components:
- type: Transform
- pos: -8.5,-4.5
+ pos: -2.5,-29.5
parent: 1
- - uid: 1369
+ - uid: 826
components:
- type: Transform
- pos: 7.5,-4.5
+ pos: -4.5,-25.5
parent: 1
- - uid: 1370
+ - uid: 827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-30.5
+ pos: 1.5,-28.5
parent: 1
- - uid: 1371
+ - uid: 833
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-30.5
+ pos: 1.5,-27.5
parent: 1
- - uid: 1372
+ - uid: 835
components:
- type: Transform
- pos: -11.5,-16.5
+ pos: -5.5,-25.5
parent: 1
-- proto: ToiletEmpty
- entities:
- - uid: 1373
+ - uid: 836
components:
- type: Transform
- pos: -4.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-21.5
parent: 1
-- proto: VendingBarDrobe
- entities:
- - uid: 1374
+ - uid: 837
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -6.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-22.5
parent: 1
-- proto: VendingMachineAtmosDrobe
- entities:
- - uid: 1375
+ - uid: 842
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 10.5,-26.5
+ pos: -4.5,-21.5
parent: 1
-- proto: VendingMachineBooze
- entities:
- - uid: 1376
+ - uid: 844
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -3.5,-9.5
+ pos: -3.5,-25.5
parent: 1
-- proto: VendingMachineChapel
- entities:
- - uid: 629
+ - uid: 846
components:
- type: Transform
- pos: 3.5,-24.5
+ pos: -5.5,-22.5
parent: 1
-- proto: VendingMachineChefDrobe
- entities:
- - uid: 1378
+ - uid: 847
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 5.5,-6.5
+ pos: -2.5,-28.5
parent: 1
-- proto: VendingMachineChefvend
- entities:
- - uid: 1379
+ - uid: 850
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 5.5,-5.5
+ pos: -2.5,-27.5
parent: 1
-- proto: VendingMachineCigs
- entities:
- - uid: 1380
+ - uid: 851
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -5.5,-15.5
+ pos: -5.5,-24.5
parent: 1
-- proto: VendingMachineClothing
- entities:
- - uid: 1381
+ - uid: 852
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -0.5,-28.5
+ pos: 1.5,-29.5
parent: 1
-- proto: VendingMachineCondiments
- entities:
- - uid: 1382
+ - uid: 854
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 2.5,-7.5
+ pos: 2.5,-29.5
parent: 1
-- proto: VendingMachineDinnerware
- entities:
- - uid: 1383
+ - uid: 855
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 2.5,-9.5
+ pos: -2.5,-25.5
parent: 1
-- proto: VendingMachineEngiDrobe
- entities:
- - uid: 628
+ - uid: 856
components:
- type: Transform
- pos: -4.5,-24.5
+ pos: -5.5,-23.5
parent: 1
-- proto: VendingMachineEngivend
- entities:
- - uid: 1384
+ - uid: 857
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -7.5,-24.5
+ pos: 3.5,-29.5
parent: 1
-- proto: VendingMachineHydrobe
- entities:
- - uid: 627
+ - uid: 858
components:
- type: Transform
- pos: 2.5,-3.5
+ pos: -5.5,-21.5
parent: 1
-- proto: VendingMachineMediDrobe
- entities:
- - uid: 1385
+ - uid: 859
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 3.5,-28.5
+ pos: -2.5,-24.5
parent: 1
-- proto: VendingMachineSalvage
- entities:
- - uid: 1386
+ - uid: 860
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 9.5,-26.5
+ pos: 4.5,-28.5
parent: 1
-- proto: VendingMachineTankDispenserEVA
- entities:
- - uid: 1387
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 1
+ - uid: 873
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: -19.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-19.5
parent: 1
- - uid: 1388
+ - uid: 886
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- pos: 18.5,-12.5
+ pos: -17.5,-17.5
parent: 1
-- proto: LockerWallMedical
- entities:
- - uid: 1390
+ - uid: 1292
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-15.5
+ pos: -3.5,-0.5
parent: 1
-- proto: WallShuttle
- entities:
- - uid: 636
+ - uid: 1293
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -13.5,-21.5
+ pos: -2.5,0.5
parent: 1
- - uid: 1391
+ - uid: 1301
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-27.5
+ pos: -4.5,-0.5
parent: 1
- uid: 1392
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -6.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-21.5
parent: 1
- uid: 1393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-28.5
parent: 1
- - uid: 1394
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -16.5,-21.5
- parent: 1
- uid: 1395
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,-10.5
parent: 1
- uid: 1396
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,-12.5
parent: 1
- uid: 1397
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,-8.5
parent: 1
- uid: 1398
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,-10.5
parent: 1
- uid: 1399
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,-8.5
parent: 1
- - uid: 1400
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -7.5,-2.5
- parent: 1
- uid: 1401
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-0.5
parent: 1
- - uid: 1402
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -12.5,-12.5
- parent: 1
- uid: 1403
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-6.5
parent: 1
- uid: 1404
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-24.5
parent: 1
- - uid: 1405
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,-25.5
- parent: 1
- uid: 1406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,3.5
parent: 1
- uid: 1407
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-22.5
parent: 1
- - uid: 1408
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,-28.5
- parent: 1
- uid: 1409
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-29.5
parent: 1
- uid: 1410
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-11.5
parent: 1
- uid: 1411
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-7.5
parent: 1
- uid: 1412
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-8.5
parent: 1
- uid: 1413
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-14.5
parent: 1
- uid: 1414
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-16.5
parent: 1
- uid: 1415
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-18.5
parent: 1
- uid: 1416
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,-7.5
parent: 1
- uid: 1417
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-7.5
parent: 1
- uid: 1418
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,-1.5
+ pos: -2.5,1.5
parent: 1
- uid: 1419
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,-0.5
+ pos: -2.5,-1.5
parent: 1
- uid: 1420
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,-21.5
parent: 1
- - uid: 1421
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 5.5,-9.5
- parent: 1
- - uid: 1422
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-10.5
- parent: 1
- - uid: 1423
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-12.5
- parent: 1
- uid: 1424
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-4.5
parent: 1
- uid: 1425
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,-7.5
parent: 1
- uid: 1426
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-7.5
parent: 1
- uid: 1427
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,-7.5
parent: 1
- - uid: 1428
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-11.5
- parent: 1
- - uid: 1429
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-9.5
- parent: 1
- uid: 1430
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-8.5
parent: 1
- uid: 1431
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-7.5
parent: 1
- uid: 1432
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-29.5
parent: 1
- uid: 1433
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-29.5
parent: 1
- uid: 1434
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,-28.5
parent: 1
- uid: 1435
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-3.5
parent: 1
- - uid: 1436
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 10.5,-27.5
- parent: 1
- - uid: 1437
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 5.5,-10.5
- parent: 1
- uid: 1438
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,-28.5
parent: 1
- - uid: 1439
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 1.5,-4.5
- parent: 1
- uid: 1440
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-28.5
parent: 1
- uid: 1441
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,-8.5
parent: 1
- uid: 1442
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -4.5,-0.5
+ pos: 1.5,-0.5
parent: 1
- uid: 1443
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,-8.5
parent: 1
- uid: 1444
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,-28.5
parent: 1
- uid: 1445
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-11.5
parent: 1
- - uid: 1446
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -15.5,-19.5
- parent: 1
- uid: 1447
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,-4.5
parent: 1
- uid: 1448
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,-27.5
parent: 1
- - uid: 1449
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 8.5,-27.5
- parent: 1
- - uid: 1450
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 9.5,-27.5
- parent: 1
- uid: 1451
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-4.5
parent: 1
- uid: 1452
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 1.5,-0.5
+ pos: -2.5,-0.5
parent: 1
- uid: 1453
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,3.5
parent: 1
- uid: 1454
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,-0.5
parent: 1
- uid: 1455
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-0.5
parent: 1
- uid: 1456
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-8.5
parent: 1
- - uid: 1457
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,-0.5
- parent: 1
- uid: 1458
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-8.5
parent: 1
- uid: 1459
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,4.5
parent: 1
- uid: 1460
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-0.5
parent: 1
- uid: 1461
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,-25.5
parent: 1
- uid: 1462
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,-25.5
parent: 1
- - uid: 1463
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -7.5,-1.5
- parent: 1
- uid: 1464
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,5.5
parent: 1
- uid: 1465
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-5.5
parent: 1
- uid: 1466
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-6.5
parent: 1
- uid: 1467
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,1.5
parent: 1
- uid: 1468
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,2.5
parent: 1
- uid: 1469
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,-12.5
parent: 1
- uid: 1470
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,3.5
parent: 1
- uid: 1471
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-13.5
parent: 1
- - uid: 1472
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -17.5,-21.5
- parent: 1
- - uid: 1473
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,-29.5
- parent: 1
- uid: 1474
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-4.5
parent: 1
- - uid: 1475
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,-10.5
- parent: 1
- uid: 1476
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-14.5
parent: 1
- uid: 1477
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-32.5
parent: 1
- uid: 1478
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-22.5
parent: 1
- uid: 1479
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,-21.5
parent: 1
- - uid: 1480
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -4.5,-21.5
- parent: 1
- uid: 1481
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,-18.5
parent: 1
- uid: 1482
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-26.5
parent: 1
- uid: 1483
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-17.5
parent: 1
- uid: 1484
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-16.5
parent: 1
- uid: 1485
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-14.5
parent: 1
- uid: 1486
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-23.5
parent: 1
- uid: 1487
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-24.5
parent: 1
- uid: 1488
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-23.5
parent: 1
- uid: 1489
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-22.5
parent: 1
- uid: 1490
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,1.5
+ pos: -5.5,-0.5
parent: 1
- uid: 1491
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-18.5
parent: 1
- uid: 1492
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,-22.5
parent: 1
- uid: 1493
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -3.5,-0.5
+ pos: -6.5,-0.5
parent: 1
- uid: 1494
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-32.5
parent: 1
- uid: 1495
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-18.5
parent: 1
- uid: 1496
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-23.5
parent: 1
- - uid: 1497
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,0.5
- parent: 1
- uid: 1498
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,-22.5
parent: 1
- - uid: 1499
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -17.5,-22.5
- parent: 1
- - uid: 1500
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -16.5,-22.5
- parent: 1
- uid: 1501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-23.5
parent: 1
- uid: 1502
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,-18.5
parent: 1
- - uid: 1503
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -0.5,-29.5
- parent: 1
- uid: 1504
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-5.5
parent: 1
- uid: 1505
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-21.5
parent: 1
- uid: 1506
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-22.5
parent: 1
- uid: 1507
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,-25.5
parent: 1
- uid: 1508
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,-22.5
parent: 1
- uid: 1509
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-10.5
parent: 1
- uid: 1510
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-13.5
parent: 1
- uid: 1511
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-21.5
parent: 1
- uid: 1512
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,-25.5
parent: 1
- uid: 1513
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-17.5
parent: 1
- uid: 1514
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-10.5
parent: 1
- - uid: 1515
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 6.5,-3.5
- parent: 1
- uid: 1516
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-16.5
parent: 1
- uid: 1517
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,-22.5
parent: 1
- uid: 1518
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-14.5
parent: 1
- uid: 1519
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-27.5
parent: 1
- uid: 1520
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-25.5
parent: 1
- uid: 1521
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-9.5
parent: 1
- uid: 1522
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,-21.5
parent: 1
- uid: 1523
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-21.5
parent: 1
- uid: 1524
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,6.5
parent: 1
- - uid: 1525
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 6.5,-1.5
- parent: 1
- - uid: 1526
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-26.5
- parent: 1
- uid: 1527
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-17.5
parent: 1
- uid: 1528
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,5.5
parent: 1
- - uid: 1529
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 1.5,-9.5
- parent: 1
- uid: 1530
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-15.5
parent: 1
- uid: 1531
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,-27.5
parent: 1
- uid: 1532
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-18.5
parent: 1
- uid: 1533
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,-21.5
parent: 1
- uid: 1534
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-13.5
parent: 1
- uid: 1535
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,4.5
parent: 1
- uid: 1536
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,-15.5
parent: 1
- uid: 1537
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,3.5
parent: 1
- uid: 1538
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-8.5
parent: 1
- uid: 1539
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,-25.5
parent: 1
- uid: 1540
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-22.5
parent: 1
- - uid: 1541
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -2.5,-24.5
- parent: 1
- uid: 1542
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-25.5
parent: 1
- uid: 1543
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,-12.5
parent: 1
- - uid: 1544
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 11.5,-27.5
- parent: 1
- uid: 1545
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-24.5
parent: 1
- uid: 1546
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-15.5
parent: 1
- uid: 1547
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,-29.5
parent: 1
- uid: 1548
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-24.5
parent: 1
- - uid: 1549
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 3.5,-4.5
- parent: 1
- uid: 1550
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-23.5
parent: 1
- uid: 1551
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-31.5
parent: 1
- uid: 1552
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,-7.5
parent: 1
- uid: 1553
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-31.5
parent: 1
- - uid: 1554
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -3.5,-25.5
- parent: 1
- uid: 1555
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-21.5
parent: 1
- - uid: 1556
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -0.5,-0.5
- parent: 1
- uid: 1557
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-18.5
parent: 1
- uid: 1558
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-18.5
parent: 1
- uid: 1559
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,-21.5
parent: 1
- uid: 1560
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,-21.5
parent: 1
- uid: 1561
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,-12.5
parent: 1
- uid: 1562
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-4.5
parent: 1
- uid: 1563
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,3.5
parent: 1
- uid: 1564
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-28.5
parent: 1
- uid: 1565
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,-24.5
parent: 1
- uid: 1566
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-29.5
parent: 1
- uid: 1567
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,4.5
parent: 1
- uid: 1568
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -15.5,-24.5
parent: 1
- uid: 1569
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,4.5
parent: 1
- uid: 1570
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-9.5
parent: 1
- uid: 1571
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-18.5
parent: 1
- uid: 1572
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-7.5
parent: 1
- - uid: 1573
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-23.5
- parent: 1
- uid: 1574
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-20.5
parent: 1
- uid: 1575
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,-8.5
parent: 1
- uid: 1576
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,-8.5
parent: 1
- uid: 1577
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,-13.5
parent: 1
- uid: 1578
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-19.5
parent: 1
- uid: 1579
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,-21.5
parent: 1
- uid: 1580
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,6.5
parent: 1
- uid: 1581
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,-21.5
parent: 1
- - uid: 1582
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 1.5,-28.5
- parent: 1
- uid: 1583
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,-24.5
parent: 1
- - uid: 1584
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 5.5,-4.5
- parent: 1
- uid: 1585
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-6.5
parent: 1
- uid: 1586
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,8.5
parent: 1
- uid: 1587
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,-21.5
parent: 1
- uid: 1588
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,7.5
parent: 1
- - uid: 1589
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,8.5
- parent: 1
- - uid: 1590
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 3.5,7.5
- parent: 1
- uid: 1591
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,5.5
parent: 1
- uid: 1592
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,-21.5
parent: 1
- uid: 1593
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,5.5
parent: 1
- uid: 1594
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,4.5
parent: 1
- uid: 1595
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,4.5
parent: 1
- uid: 1596
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,4.5
parent: 1
- uid: 1597
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,4.5
parent: 1
- uid: 1598
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,-8.5
parent: 1
- uid: 1599
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,-21.5
parent: 1
- - uid: 1600
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -6.5,-0.5
- parent: 1
- uid: 1601
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,0.5
parent: 1
- uid: 1602
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-4.5
parent: 1
- uid: 1603
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-7.5
parent: 1
- uid: 1604
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-7.5
parent: 1
- uid: 1605
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-3.5
parent: 1
- - uid: 1606
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,-4.5
- parent: 1
- uid: 1607
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-5.5
parent: 1
- uid: 1608
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-7.5
parent: 1
- - uid: 1609
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-0.5
- parent: 1
- uid: 1610
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,3.5
parent: 1
- uid: 1611
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,-0.5
parent: 1
- uid: 1612
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,-7.5
parent: 1
- uid: 1613
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,0.5
parent: 1
- - uid: 1614
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 1.5,-29.5
- parent: 1
- - uid: 1615
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-21.5
- parent: 1
- uid: 1616
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,-12.5
parent: 1
- uid: 1617
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,-32.5
parent: 1
- uid: 1618
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -20.5,-13.5
parent: 1
- uid: 1619
components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 18.5,-17.5
- parent: 1
- - uid: 1620
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -7.5,3.5
- parent: 1
- - uid: 1621
- components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: 6.5,3.5
+ pos: 18.5,-17.5
parent: 1
- - uid: 1622
+ - uid: 1620
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -2.5,-27.5
+ pos: -7.5,3.5
parent: 1
- - uid: 1623
+ - uid: 1621
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
- pos: -17.5,-19.5
+ pos: 6.5,3.5
parent: 1
- uid: 1624
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-6.5
parent: 1
- uid: 1625
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-29.5
parent: 1
- uid: 1626
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,-27.5
parent: 1
- - uid: 1627
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 6.5,-2.5
- parent: 1
- uid: 1628
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,-25.5
parent: 1
- uid: 1629
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,-21.5
parent: 1
- uid: 1630
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-25.5
parent: 1
- uid: 1631
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,-28.5
parent: 1
- - uid: 1632
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,-29.5
- parent: 1
- - uid: 1633
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -4.5,-25.5
- parent: 1
- uid: 1634
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-22.5
parent: 1
- - uid: 1635
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-22.5
- parent: 1
- - uid: 1636
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 3.5,-29.5
- parent: 1
- - uid: 1637
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-24.5
- parent: 1
- - uid: 1638
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -5.5,-25.5
- parent: 1
- uid: 1639
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-26.5
parent: 1
- uid: 1640
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-27.5
parent: 1
- uid: 1641
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-28.5
parent: 1
- uid: 1642
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-29.5
parent: 1
- uid: 1643
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-24.5
parent: 1
- uid: 1644
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-25.5
parent: 1
- uid: 1645
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-26.5
parent: 1
- uid: 1646
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-27.5
parent: 1
- - uid: 1647
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,-28.5
- parent: 1
- - uid: 1648
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 4.5,-29.5
- parent: 1
- uid: 1649
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,3.5
parent: 1
- uid: 1650
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-21.5
parent: 1
- - uid: 1651
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,-21.5
- parent: 1
- uid: 1652
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-22.5
parent: 1
- uid: 1653
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,-21.5
parent: 1
- uid: 1654
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,-21.5
parent: 1
- uid: 1655
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-21.5
parent: 1
- uid: 1656
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-17.5
parent: 1
- uid: 1657
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-14.5
parent: 1
- uid: 1658
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-4.5
parent: 1
- uid: 1659
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-5.5
parent: 1
- uid: 1660
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,-7.5
parent: 1
- - uid: 1661
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 16.5,-10.5
- parent: 1
- - uid: 1662
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -17.5,-10.5
- parent: 1
- uid: 1663
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,-13.5
parent: 1
- - uid: 1664
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -19.5,-19.5
- parent: 1
- uid: 1665
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,-20.5
parent: 1
- uid: 1666
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,-13.5
parent: 1
- uid: 1667
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,-13.5
parent: 1
- uid: 1668
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,-13.5
parent: 1
- uid: 1669
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-20.5
parent: 1
- uid: 1670
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,-13.5
parent: 1
- uid: 1671
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,-13.5
parent: 1
- - uid: 1672
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: -3.5,-30.5
- parent: 1
- uid: 1673
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-31.5
parent: 1
- - uid: 1674
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 2.5,-30.5
- parent: 1
- uid: 1675
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,-31.5
parent: 1
- - uid: 1676
- components:
- - type: MetaData
- flags: PvsPriority
- - type: Transform
- pos: 12.5,-24.5
- parent: 1
- uid: 1677
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,-12.5
parent: 1
- uid: 1678
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 19.5,-13.5
parent: 1
+ - uid: 1795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 1798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,7.5
+ parent: 1
- proto: WallShuttleDiagonal
entities:
+ - uid: 625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-11.5
+ parent: 1
- uid: 1679
components:
- type: Transform
@@ -11421,12 +12707,6 @@ entities:
- type: Transform
pos: 2.5,5.5
parent: 1
- - uid: 1683
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,7.5
- parent: 1
- uid: 1684
components:
- type: Transform
@@ -11474,12 +12754,6 @@ entities:
- type: Transform
pos: 5.5,0.5
parent: 1
- - uid: 1692
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-10.5
- parent: 1
- uid: 1693
components:
- type: Transform
@@ -11506,12 +12780,6 @@ entities:
- type: Transform
pos: -4.5,8.5
parent: 1
- - uid: 1698
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,8.5
- parent: 1
- uid: 1699
components:
- type: Transform
@@ -11582,60 +12850,59 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-30.5
parent: 1
-- proto: WarningCO2
- entities:
- - uid: 1711
+ - uid: 1791
components:
- type: Transform
- pos: 4.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,8.5
parent: 1
-- proto: WarningN2
- entities:
- - uid: 1712
+ - uid: 1797
components:
- type: Transform
- pos: 8.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
parent: 1
-- proto: WarningO2
+- proto: WarningN2
entities:
- - uid: 1713
+ - uid: 428
components:
- type: Transform
- pos: 10.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-25.5
parent: 1
- - uid: 1714
+- proto: WarningO2
+ entities:
+ - uid: 265
components:
- type: Transform
- pos: 18.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-25.5
parent: 1
- proto: WarningWaste
entities:
- - uid: 1715
+ - uid: 471
components:
- type: Transform
- pos: 10.5,-27.5
+ pos: 11.5,-25.5
parent: 1
- proto: WarpPointShip
entities:
- - uid: 1716
+ - uid: 1767
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-14.5
+ pos: -0.5,-13.5
parent: 1
- proto: WaterCooler
entities:
- - uid: 1717
+ - uid: 796
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: -6.5,-6.5
parent: 1
-- proto: WaterTankFull
- entities:
- - uid: 1718
+ - uid: 813
components:
- type: Transform
- pos: 5.5,-2.5
+ pos: -5.5,-15.5
parent: 1
- proto: WeaponCapacitorRecharger
entities:
@@ -11644,25 +12911,54 @@ entities:
- type: Transform
pos: -3.5,-3.5
parent: 1
-- proto: WindoorSecure
+- proto: WeaponRackBase
entities:
- - uid: 1721
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: -5.5,-1.5
+ parent: 1
+- proto: WeaponRackPistolBase
+ entities:
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: -4.5,-0.5
+ parent: 1
+- proto: Windoor
+ entities:
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 868
components:
- type: Transform
pos: -3.5,-27.5
parent: 1
-- proto: WindowFrostedDirectional
+- proto: WindoorSecure
entities:
- - uid: 1722
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 867
components:
- type: Transform
pos: -4.5,-27.5
parent: 1
-- proto: Wrench
+- proto: WindowReinforcedDirectional
entities:
- - uid: 1723
+ - uid: 1820
components:
- type: Transform
- pos: 10.451632,-23.93664
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-18.5
parent: 1
...
diff --git a/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml b/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml
index cdb4aeb5890..2634da54f0c 100644
--- a/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml
+++ b/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml
@@ -64,13 +64,13 @@ entities:
color: '#FFFFFFFF'
id: Arrows
decals:
- 93: -2.0344133,-9.415693
+ 92: -2.0344133,-9.415693
- node:
angle: 6.283185307179586 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 94: 1.9968367,-8.993818
+ 93: 1.9968367,-8.993818
- node:
color: '#FFFFFFFF'
id: Bot
@@ -79,8 +79,8 @@ entities:
19: -3,-10
20: 3,-10
21: 3,-9
- 64: 10,-8
- 95: 10,-7
+ 63: 10,-8
+ 94: 10,-7
- node:
color: '#FFFFFFFF'
id: Box
@@ -97,10 +97,10 @@ entities:
color: '#7D7D7D7F'
id: Damaged
decals:
- 65: -5,4
- 66: 5,4
- 67: 5,-8
- 68: -5,-8
+ 64: -5,4
+ 65: 5,4
+ 66: 5,-8
+ 67: -5,-8
- node:
color: '#FFFFFFFF'
id: Delivery
@@ -110,8 +110,8 @@ entities:
56: -1,9
57: 0,9
58: 1,9
- 91: -3,4
- 92: 3,4
+ 90: -3,4
+ 91: 3,4
- node:
color: '#7D7D7DFF'
id: FullTileOverlayGreyscale
@@ -198,72 +198,72 @@ entities:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
decals:
- 71: 1,4
- 76: -2,8
+ 70: 1,4
+ 75: -2,8
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
decals:
- 70: 3,4
- 75: 2,8
+ 69: 3,4
+ 74: 2,8
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 69: 2,4
- 72: -1,8
- 73: 0,8
- 74: 1,8
+ 68: 2,4
+ 71: -1,8
+ 72: 0,8
+ 73: 1,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
decals:
- 82: -7,8
+ 81: -7,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
- 77: -9,9
+ 76: -9,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
decals:
- 83: -7,4
+ 82: -7,4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSw
decals:
- 80: -9,6
- 81: -8,4
+ 79: -9,6
+ 80: -8,4
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNe
decals:
- 90: -8,8
+ 89: -8,8
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
decals:
- 89: -8,9
+ 88: -8,9
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
decals:
- 88: -8,6
+ 87: -8,6
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
decals:
- 84: -7,5
- 85: -7,6
- 86: -7,7
+ 83: -7,5
+ 84: -7,6
+ 85: -7,7
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
decals:
- 78: -9,8
- 79: -9,7
- 87: -8,5
+ 77: -9,8
+ 78: -9,7
+ 86: -8,5
- type: GridAtmosphere
version: 2
data:
@@ -526,48 +526,30 @@ entities:
- type: Transform
pos: 8.5,3.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 164
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 790
- - 640
- uid: 165
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 0.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 790
- - 640
- uid: 166
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 790
- - 640
- uid: 173
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,4.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 175
components:
- type: Transform
@@ -580,12 +562,6 @@ entities:
rot: 3.141592653589793 rad
pos: -5.5,-7.5
parent: 1
- - uid: 180
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-7.5
- parent: 1
- uid: 298
components:
- type: Transform
@@ -597,6 +573,11 @@ entities:
- type: Transform
pos: -7.5,3.5
parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 6.5,-7.5
+ parent: 1
- proto: AirlockGlassShuttle
entities:
- uid: 225
@@ -655,16 +636,6 @@ entities:
parent: 430
- type: Physics
canCollide: False
- - uid: 563
- components:
- - type: Transform
- pos: 7.656136,-8.300375
- parent: 1
- - uid: 577
- components:
- - type: Transform
- pos: 7.3332195,-8.300375
- parent: 1
- proto: AmeShielding
entities:
- uid: 88
@@ -1253,72 +1224,48 @@ entities:
rot: 3.141592653589793 rad
pos: -4.5,5.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 962
- uid: 160
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,3.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 962
- uid: 161
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,5.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 961
- uid: 162
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,3.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 961
- uid: 163
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-8.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 960
- uid: 174
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 960
- uid: 176
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-8.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 959
- uid: 178
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 959
- proto: BlastDoorOpen
entities:
- uid: 242
@@ -1326,17 +1273,11 @@ entities:
- type: Transform
pos: 2.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 640
- uid: 726
components:
- type: Transform
pos: -1.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 640
- proto: BodyBagFolded
entities:
- uid: 233
@@ -1384,6 +1325,39 @@ entities:
- type: Transform
pos: -8.522253,-5.4259543
parent: 1
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,9.5
+ parent: 1
+- proto: ButtonFrameExit
+ entities:
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 1
- proto: CableApcExtension
entities:
- uid: 142
@@ -2407,121 +2381,79 @@ entities:
- type: Transform
pos: 2.5,-14.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 205
components:
- type: Transform
pos: 2.5,-11.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 208
components:
- type: Transform
pos: 2.5,-10.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 220
components:
- type: Transform
pos: 2.5,-9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 221
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-10.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 222
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-11.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 223
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-13.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 448
components:
- type: Transform
pos: 2.5,-13.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 456
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 457
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 491
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,-14.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 201
- uid: 710
components:
- type: Transform
pos: 2.5,-12.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 442
- uid: 785
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 787
- uid: 786
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,5.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 787
- proto: ConveyorBeltAssembly
entities:
- uid: 422
@@ -2554,18 +2486,6 @@ entities:
- type: Transform
pos: -2.5,-6.5
parent: 1
-- proto: CrateEmptySpawner
- entities:
- - uid: 664
- components:
- - type: Transform
- pos: 0.5,-8.5
- parent: 1
- - uid: 679
- components:
- - type: Transform
- pos: 0.5,-10.5
- parent: 1
- proto: CrateFreezer
entities:
- uid: 662
@@ -4391,8 +4311,8 @@ entities:
- uid: 699
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,8.5
parent: 1
- proto: Lamp
entities:
@@ -4421,14 +4341,22 @@ entities:
- type: Transform
pos: -2.5,8.5
parent: 1
-- proto: LockerWallMedicalFilled
+- proto: LockerWallColorMedical
entities:
- - uid: 182
+ - uid: 365
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -10.5,-9.5
parent: 1
+- proto: LockerWallMaterialsFuelAmeJarFilled
+ entities:
+ - uid: 143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
- proto: MaterialReclaimer
entities:
- uid: 703
@@ -4613,14 +4541,6 @@ entities:
parent: 373
- type: Physics
canCollide: False
-- proto: PortableGeneratorPacmanMachineCircuitboard
- entities:
- - uid: 725
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.0339723,-6.412772
- parent: 1
- proto: PortableScrubber
entities:
- uid: 192
@@ -4645,11 +4565,10 @@ entities:
parent: 1
- proto: PosterContrabandMissingGloves
entities:
- - uid: 883
+ - uid: 180
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-8.5
+ pos: 6.5,-6.5
parent: 1
- proto: PosterContrabandUnreadableAnnouncement
entities:
@@ -4660,10 +4579,11 @@ entities:
parent: 1
- proto: PosterLegitBlessThisSpess
entities:
- - uid: 672
+ - uid: 182
components:
- type: Transform
- pos: 3.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
parent: 1
- proto: PosterLegitGetYourLEGS
entities:
@@ -4897,27 +4817,6 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5404289,-1.0226104
parent: 1
-- proto: SheetGlass
- entities:
- - uid: 689
- components:
- - type: Transform
- pos: -0.5,-4.5
- parent: 1
-- proto: SheetPlastic
- entities:
- - uid: 519
- components:
- - type: Transform
- pos: -0.2729739,-4.3693256
- parent: 1
-- proto: SheetSteel
- entities:
- - uid: 365
- components:
- - type: Transform
- pos: -0.8667239,-4.2702026
- parent: 1
- proto: ShuttersNormal
entities:
- uid: 336
@@ -4925,25 +4824,16 @@ entities:
- type: Transform
pos: -0.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 584
- uid: 337
components:
- type: Transform
pos: 0.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 584
- uid: 338
components:
- type: Transform
pos: 1.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 584
- proto: ShuttersNormalOpen
entities:
- uid: 383
@@ -4951,163 +4841,110 @@ entities:
- type: Transform
pos: 7.5,10.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 401
components:
- type: Transform
pos: 8.5,10.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 402
components:
- type: Transform
pos: 9.5,10.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- - uid: 404
- components:
- - type: Transform
- pos: 9.5,4.5
- parent: 1
- uid: 405
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,-2.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 406
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,-1.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 407
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,-0.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 408
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-0.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 409
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-1.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 410
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,-2.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 638
- uid: 412
components:
- type: Transform
pos: 3.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 179
- uid: 413
components:
- type: Transform
pos: -2.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 179
- uid: 626
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 4
- uid: 627
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,8.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 4
- uid: 628
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,7.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 4
- uid: 629
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,6.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 4
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,4.5
+ parent: 1
- uid: 633
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,9.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 634
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,8.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 635
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,7.5
parent: 1
- - type: DeviceLinkSink
- links:
- - 630
- uid: 688
components:
- type: Transform
@@ -5293,6 +5130,12 @@ entities:
- Pressed: Toggle
626:
- Pressed: Toggle
+ 688:
+ - Pressed: Toggle
+ 692:
+ - Pressed: Toggle
+ 694:
+ - Pressed: Toggle
- uid: 179
components:
- type: Transform
@@ -5305,62 +5148,38 @@ entities:
- Pressed: Toggle
413:
- Pressed: Toggle
- - uid: 584
- components:
- - type: Transform
- pos: 2.5,9.5
- parent: 1
- - type: DeviceLinkSource
- linkedPorts:
- 338:
- - Pressed: Toggle
- 337:
- - Pressed: Toggle
- 336:
- - Pressed: Toggle
- - uid: 630
+ - uid: 577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
parent: 1
- type: DeviceLinkSource
linkedPorts:
- 383:
+ 407:
- Pressed: Toggle
- 401:
+ 406:
- Pressed: Toggle
- 402:
+ 405:
- Pressed: Toggle
- 633:
+ 408:
- Pressed: Toggle
- 634:
+ 409:
- Pressed: Toggle
- 635:
+ 410:
- Pressed: Toggle
- 173:
- - Pressed: DoorBolt
- 132:
- - Pressed: DoorBolt
- - uid: 638
+ - uid: 584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ pos: 2.5,9.5
parent: 1
- type: DeviceLinkSource
linkedPorts:
- 408:
- - Pressed: Toggle
- 409:
- - Pressed: Toggle
- 410:
- - Pressed: Toggle
- 407:
+ 338:
- Pressed: Toggle
- 406:
+ 337:
- Pressed: Toggle
- 405:
+ 336:
- Pressed: Toggle
- uid: 640
components:
@@ -5380,6 +5199,28 @@ entities:
- Pressed: Toggle
726:
- Pressed: Toggle
+ - uid: 971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,5.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 383:
+ - Pressed: Toggle
+ 401:
+ - Pressed: Toggle
+ 402:
+ - Pressed: Toggle
+ 633:
+ - Pressed: Toggle
+ 634:
+ - Pressed: Toggle
+ 635:
+ - Pressed: Toggle
+ 630:
+ - Pressed: Toggle
- proto: SignLastIdiot
entities:
- uid: 475
@@ -5394,18 +5235,6 @@ entities:
- type: Transform
pos: 9.5,-8.5
parent: 1
-- proto: SpawnDungeonClutterMedical
- entities:
- - uid: 143
- components:
- - type: Transform
- pos: -9.619425,-8.479293
- parent: 1
- - uid: 828
- components:
- - type: Transform
- pos: -9.442342,-8.156377
- parent: 1
- proto: SpawnPointLatejoin
entities:
- uid: 154
@@ -5704,13 +5533,6 @@ entities:
- type: Transform
pos: -1.6004093,-2.49757
parent: 1
-- proto: ToyAmongPequeno
- entities:
- - uid: 667
- components:
- - type: Transform
- pos: 9.5,-13.5
- parent: 1
- proto: ToySpawner
entities:
- uid: 156
diff --git a/Resources/Maps/_NF/Shuttles/Sr/broom.yml b/Resources/Maps/_NF/Shuttles/Sr/broom.yml
new file mode 100644
index 00000000000..5be33edad6a
--- /dev/null
+++ b/Resources/Maps/_NF/Shuttles/Sr/broom.yml
@@ -0,0 +1,917 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 37: FloorDarkMini
+ 38: FloorDarkMono
+ 69: FloorMetalDiamond
+ 112: FloorTechMaint
+ 129: Lattice
+ 130: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Broom
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: JQAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAARQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJgAAAAAA
+ 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: BotGreyscale
+ decals:
+ 5: 1,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: BoxGreyscale
+ decals:
+ 21: 0,2
+ - node:
+ color: '#96DAFFFF'
+ id: DeliveryGreyscale
+ decals:
+ 4: 1,0
+ - node:
+ color: '#FF5C5CFF'
+ id: DeliveryGreyscale
+ decals:
+ 3: 1,1
+ - node:
+ color: '#FFFFFFFF'
+ id: DeliveryGreyscale
+ decals:
+ 0: -1,0
+ 1: -1,1
+ 2: -1,-1
+ 6: -1,-2
+ 7: 1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkCornerSw
+ decals:
+ 15: 0,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkEndE
+ decals:
+ 14: 1,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkEndN
+ decals:
+ 13: 0,1
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkInnerNe
+ decals:
+ 16: 0,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineE
+ decals:
+ 17: 0,-1
+ 18: 0,0
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileDarkLineW
+ decals:
+ 19: 0,-1
+ 20: 0,0
+ - node:
+ color: '#8C347F96'
+ id: MiniTileOverlay
+ decals:
+ 8: 1,-2
+ 9: 0,-2
+ 10: 0,-1
+ 11: 0,0
+ 12: 0,1
+ - node:
+ color: '#B3B3B3FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 22: 1,-2
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 4403
+ 1: 17408
+ 0,-1:
+ 0: 13090
+ -1,0:
+ 0: 34952
+ 0,1:
+ 1: 4
+ -1,-1:
+ 1: 76
+ 0: 34816
+ -1,1:
+ 1: 4
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 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
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: BecomesStation
+ id: Broom
+- proto: AirAlarm
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 57
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,2.5
+ parent: 1
+- proto: CleanerDispenser
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-2.5
+ parent: 1
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 84
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 1
+- proto: ComputerWallmountBankATM
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - type: Physics
+ canCollide: False
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 71
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 1
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+- proto: FaxMachineShip
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+- proto: FloorDrain
+ entities:
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: FolderSpawner
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -0.27797323,3.1280715
+ parent: 1
+- proto: GasMixerOn
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 1
+ - type: GasMixer
+ inletTwoConcentration: 0.78
+ inletOneConcentration: 0.22
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPassiveVent
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 40
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 42
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPressurePumpOnMax
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+ - type: DeviceNetwork
+ configurators:
+ - invalid
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+- proto: GrilleDiagonal
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+- proto: LockerWallEVAColorJanitorFilled
+ entities:
+ - uid: 30
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+- proto: LockerWallMaterialsBasic10Filled
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+- proto: MaterialReclaimer
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,1.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: OxygenCanister
+ entities:
+ - uid: 93
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,0.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+- proto: PortableGeneratorPacmanShuttle
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 1
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PoweredlightLED
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 72
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 1
+- proto: ReinforcedWindowDiagonal
+ entities:
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+- proto: ServiceTechFab
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 1
+- proto: SheetPlasma
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: -0.515625,-0.453125
+ parent: 1
+- proto: SignJanitor
+ entities:
+ - uid: 98
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+- proto: Sink
+ entities:
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+- proto: SmallGyroscope
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,0.5
+ parent: 1
+- proto: SmallThruster
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 1
+- proto: SubstationWallBasic
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 50
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-3.5
+ parent: 1
+- proto: WallReinforced
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 21
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 1
+- proto: WarningN2
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 1
+- proto: WarningO2
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 1
+- proto: WarpPointShip
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 1
+- proto: WindoorSecureJanitorLocked
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 1
+- proto: Wrench
+ entities:
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -0.69672847,-0.37076378
+ parent: 1
+...
diff --git a/Resources/Maps/_NF/Shuttles/mailpod.yml b/Resources/Maps/_NF/Shuttles/Sr/mailpod.yml
similarity index 99%
rename from Resources/Maps/_NF/Shuttles/mailpod.yml
rename to Resources/Maps/_NF/Shuttles/Sr/mailpod.yml
index a8f7153eb48..01585bb32ae 100644
--- a/Resources/Maps/_NF/Shuttles/mailpod.yml
+++ b/Resources/Maps/_NF/Shuttles/Sr/mailpod.yml
@@ -866,7 +866,7 @@ entities:
- type: Transform
pos: 2.5,1.5
parent: 1
-- proto: SuitStorageWallmountMailCarrier
+- proto: LockerWallEVAColorMailFilled
entities:
- uid: 95
components:
diff --git a/Resources/Maps/_NF/Shuttles/parcel.yml b/Resources/Maps/_NF/Shuttles/Sr/parcel.yml
similarity index 99%
rename from Resources/Maps/_NF/Shuttles/parcel.yml
rename to Resources/Maps/_NF/Shuttles/Sr/parcel.yml
index 46337f2932c..4f03fabd5ee 100644
--- a/Resources/Maps/_NF/Shuttles/parcel.yml
+++ b/Resources/Maps/_NF/Shuttles/Sr/parcel.yml
@@ -1504,7 +1504,7 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,1.5
parent: 1
-- proto: SuitStorageWallmountMailCarrier
+- proto: LockerWallEVAColorMailFilled
entities:
- uid: 73
components:
diff --git a/Resources/Maps/_NF/Shuttles/crescent.yml b/Resources/Maps/_NF/Shuttles/crescent.yml
index d4adb954d5b..0b06692f79f 100644
--- a/Resources/Maps/_NF/Shuttles/crescent.yml
+++ b/Resources/Maps/_NF/Shuttles/crescent.yml
@@ -668,332 +668,308 @@ entities:
data:
tiles:
0,0:
- 0: 65535
- 0,1:
- 0: 65535
+ 0: 61695
0,-1:
- 0: 65521
+ 0: 65280
+ -1,0:
+ 0: 65279
+ 0,1:
+ 0: 61695
+ -1,1:
+ 0: 62719
0,2:
- 0: 65535
+ 0: 14911
+ -1,2:
+ 0: 35743
0,3:
+ 0: 48123
+ -1,3:
0: 65535
+ 0,4:
+ 0: 43835
1,0:
- 0: 65535
+ 0: 63675
1,1:
- 0: 65535
+ 0: 61631
1,2:
- 0: 65535
+ 0: 2975
1,3:
0: 65535
+ 1,-1:
+ 0: 12288
+ 1,4:
+ 0: 47903
2,0:
- 0: 65535
+ 0: 64733
2,1:
- 0: 65535
+ 0: 62207
2,2:
- 0: 65535
+ 0: 3407
2,3:
- 0: 65535
- 3,0:
- 0: 65535
+ 0: 61166
+ 2,4:
+ 0: 65326
3,1:
- 0: 65535
+ 0: 30318
3,2:
- 0: 65535
+ 0: 26215
+ 3,0:
+ 0: 61152
3,3:
- 0: 65535
- 1,-1:
- 0: 63248
- 2,-1:
- 0: 61440
- 3,-1:
+ 0: 58982
+ 3,4:
+ 0: 30574
+ 4,0:
+ 0: 65392
+ 4,1:
+ 0: 62351
+ 4,2:
+ 0: 4095
+ 4,3:
+ 1: 17
0: 61440
+ 4: 68
+ -1,-1:
+ 0: 65024
-4,0:
- 0: 65535
+ 0: 46072
+ -5,0:
+ 0: 36736
-4,1:
- 0: 65535
+ 0: 61883
+ -5,1:
+ 0: 48059
-4,2:
- 0: 65535
+ 0: 56783
+ -5,2:
+ 0: 65327
-4,3:
- 0: 65535
+ 0: 64733
+ -5,3:
+ 0: 61663
+ 7: 32
+ -4,4:
+ 0: 52431
+ 1: 4096
+ -4,-1:
+ 2: 8192
+ 0: 32768
-3,0:
- 0: 65535
+ 0: 20667
-3,1:
- 0: 65535
+ 0: 62581
-3,2:
- 0: 65535
+ 0: 1615
-3,3:
- 0: 4369
- 1: 61166
+ 0: 256
+ 3: 61166
+ -3,-1:
+ 0: 8192
+ -3,4:
+ 3: 14
+ 0: 26112
-2,0:
- 0: 65535
+ 0: 62139
-2,1:
- 0: 65535
+ 0: 63743
-2,2:
- 0: 65535
+ 0: 2863
-2,3:
- 0: 65535
- -1,0:
- 0: 65535
- -1,1:
- 0: 65535
- -1,2:
- 0: 65535
- -1,3:
- 0: 65535
- -4,-1:
- 0: 49152
- 2: 8192
- -3,-1:
- 0: 61440
+ 0: 61166
+ -2,4:
+ 0: 47886
-2,-1:
- 0: 64512
- -1,-1:
- 0: 65520
- 4,0:
- 0: 65535
- 4,1:
- 0: 65535
- 4,2:
- 0: 65535
- 4,3:
- 2: 17
- 0: 65450
- 3: 68
+ 0: 32768
+ -1,4:
+ 0: 48015
+ 4,4:
+ 0: 15
+ 1: 4608
5,0:
- 0: 65392
+ 0: 29440
5,1:
- 0: 65535
+ 0: 61815
5,2:
- 0: 65535
+ 0: 4095
5,3:
- 4: 17
- 0: 65450
- 5: 68
- 6,1:
- 0: 63251
- 2: 32
+ 5: 17
+ 0: 61440
+ 6: 68
+ 5,4:
+ 0: 15
+ 1: 16896
+ 6,0:
+ 2: 4096
6,2:
- 0: 65535
+ 0: 26230
6,3:
- 0: 65535
+ 0: 63239
+ 6,1:
+ 2: 32
+ 0: 8192
+ 6,4:
+ 0: 65319
7,2:
- 2: 4096
+ 1: 4096
7,3:
- 0: 13105
- 2: 52418
+ 0: 12544
+ 1: 2
+ 2: 52416
+ 7,4:
+ 0: 4353
+ 2: 204
-8,3:
- 2: 26216
- 0: 34944
- -7,2:
- 2: 4096
- 0: 61166
+ 2: 26208
+ 0: 32768
+ 1: 8
+ -8,4:
+ 2: 102
-7,3:
- 0: 65535
+ 0: 61900
+ -7,2:
+ 1: 4096
+ 0: 49356
+ -7,4:
+ 0: 49037
-7,1:
- 0: 60544
- 2: 8
- -6,1:
- 0: 65535
+ 0: 32768
+ 1: 8
-6,2:
- 0: 65535
+ 0: 28286
-6,3:
- 0: 65535
+ 0: 62567
+ -6,1:
+ 0: 61166
+ -6,4:
+ 0: 4383
+ 1: 18432
-6,0:
- 0: 65216
- -5,0:
- 0: 65534
- -5,1:
- 0: 65535
- -5,2:
- 0: 65535
- -5,3:
- 0: 65535
- -8,4:
- 2: 102
- 0: 34952
+ 0: 34816
+ -5,4:
+ 0: 15
+ 1: 2048
-8,5:
- 0: 52428
+ 0: 34944
-8,6:
- 0: 52428
+ 0: 2184
-8,7:
- 0: 52428
- -7,4:
- 0: 65535
+ 0: 34952
-7,5:
- 0: 65535
+ 0: 65529
-7,6:
- 0: 65535
+ 0: 5471
-7,7:
- 0: 65535
- -6,4:
- 0: 14335
- 2: 18432
+ 0: 63965
+ -8,8:
+ 0: 136
+ -7,8:
+ 0: 55807
-6,5:
- 0: 13107
+ 0: 4369
-6,6:
- 0: 13107
+ 0: 273
-6,7:
- 0: 13107
- -5,4:
- 0: 255
- 2: 2048
- 4,4:
- 0: 511
- 2: 4608
- 5,4:
- 0: 36095
- 2: 16896
- 5,5:
- 0: 34952
- 5,6:
- 0: 34952
- 5,7:
- 0: 34952
- 6,4:
- 0: 65535
+ 0: 4113
+ -6,8:
+ 0: 12305
6,5:
- 0: 65535
+ 0: 30578
6,6:
- 0: 65535
+ 0: 32639
6,7:
- 0: 65535
- 7,4:
- 0: 13107
- 2: 204
+ 0: 28791
+ 6,8:
+ 0: 639
+ 1: 12288
7,5:
- 0: 30583
+ 0: 9008
7,6:
- 0: 30583
+ 0: 13090
7,7:
- 0: 30583
- -8,8:
- 0: 36044
- -8,9:
- 0: 8
- -7,8:
- 0: 65535
+ 0: 12595
+ 7,8:
+ 0: 4403
-7,9:
- 0: 3839
+ 0: 204
2: 32768
- -6,8:
- 0: 30515
-6,9:
- 0: 1911
+ 0: 51
2: 28672
-6,10:
2: 18039
-6,11:
2: 68
5,8:
- 0: 19592
- 2: 32768
+ 1: 32768
5,9:
- 0: 3140
- 2: 49288
+ 1: 136
+ 2: 49152
5,10:
2: 19660
5,11:
2: 68
- 6,8:
- 0: 53247
- 2: 12288
6,9:
- 2: 12595
- 0: 3788
+ 1: 51
+ 2: 12288
6,10:
2: 17
- 7,8:
- 0: 14199
- 7,9:
- 0: 19
- -4,4:
- 0: 61439
- 2: 4096
-4,5:
- 0: 61166
- -4,6:
- 0: 140
- -3,4:
- 0: 65521
- 1: 14
+ 0: 3276
-3,5:
- 0: 65535
+ 0: 4084
-3,6:
- 0: 61439
- -3,7:
- 0: 140
- -2,4:
- 0: 65535
+ 0: 36079
-2,5:
- 0: 65535
+ 0: 61426
-2,6:
- 0: 65535
+ 0: 61182
-2,7:
- 0: 65535
- -1,4:
- 0: 65535
+ 0: 61166
+ -2,8:
+ 0: 61166
-1,5:
- 0: 65535
+ 0: 65529
-1,6:
- 0: 65535
+ 0: 26191
-1,7:
- 0: 4607
+ 0: 6
2: 28160
- 0,4:
- 0: 65535
+ -1,8:
+ 2: 2
0,5:
- 0: 65535
+ 0: 16371
0,6:
- 0: 65535
+ 0: 48027
0,7:
- 0: 36095
- 1,4:
- 0: 65535
+ 0: 131
1,5:
- 0: 65535
+ 0: 8184
1,6:
- 0: 65535
+ 0: 43775
1,7:
- 0: 65535
- 2,4:
- 0: 65535
+ 0: 65528
2,5:
- 0: 65535
+ 0: 4095
2,6:
- 0: 65535
+ 0: 8895
2,7:
- 0: 4919
- 3,4:
- 0: 65535
+ 0: 16
3,5:
- 0: 65535
+ 0: 1911
3,6:
- 0: 311
+ 0: 1
-3,9:
- 0: 34944
- -3,10:
- 0: 136
- -2,8:
- 0: 65535
+ 0: 2048
-2,9:
- 0: 65535
+ 0: 65514
+ -3,10:
+ 0: 8
-2,10:
- 0: 4095
- -1,8:
- 0: 4369
- 2: 2
+ 0: 2799
-1,9:
- 0: 13105
+ 0: 4864
-1,10:
- 0: 307
- 0,8:
- 0: 8
- 1,8:
- 0: 15
- 2,8:
- 0: 1
- 6,0:
- 2: 4096
+ 0: 3
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -1011,14 +987,14 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 340
+ temperature: 293.15
moles:
- - 21.824879
- - 82.10312
- 0
- 0
- 0
- - 82.10312
+ - 0
+ - 0
+ - 0
- 0
- 0
- 0
@@ -1026,7 +1002,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -1040,6 +1016,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 340
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -1085,6 +1076,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
@@ -1094,8 +1100,6 @@ entities:
entities:
- uid: 1130
components:
- - type: MetaData
- flags: InContainer
- type: Transform
parent: 2230
- type: InstantAction
@@ -1104,79 +1108,57 @@ entities:
entities:
- uid: 2
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,25.5
parent: 1
- uid: 3
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,9.5
parent: 1
- uid: 4
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,9.5
parent: 1
- uid: 5
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,9.5
parent: 1
- uid: 6
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,9.5
parent: 1
- uid: 7
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,9.5
parent: 1
- uid: 8
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,20.5
parent: 1
- uid: 9
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,20.5
parent: 1
- uid: 10
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,20.5
parent: 1
- uid: 11
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 0.5,25.5
parent: 1
- uid: 13
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,6.5
parent: 1
@@ -1184,8 +1166,6 @@ entities:
entities:
- uid: 12
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,6.5
parent: 1
@@ -1193,23 +1173,18 @@ entities:
entities:
- uid: 14
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,17.5
parent: 1
- uid: 15
components:
- type: MetaData
- flags: PvsPriority
name: room of tranquility
- type: Transform
pos: 9.5,17.5
parent: 1
- uid: 31
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,13.5
@@ -1218,8 +1193,6 @@ entities:
entities:
- uid: 16
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -1.5,25.5
@@ -1228,8 +1201,6 @@ entities:
entities:
- uid: 17
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,10.5
parent: 1
@@ -1237,78 +1208,56 @@ entities:
entities:
- uid: 18
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,21.5
parent: 1
- uid: 19
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,22.5
parent: 1
- uid: 20
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,17.5
parent: 1
- uid: 21
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,17.5
parent: 1
- uid: 22
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,21.5
parent: 1
- uid: 23
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,22.5
parent: 1
- uid: 24
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,23.5
parent: 1
- uid: 25
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,28.5
parent: 1
- uid: 26
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,26.5
parent: 1
- uid: 27
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,26.5
parent: 1
- uid: 28
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,26.5
parent: 1
@@ -1316,59 +1265,43 @@ entities:
entities:
- uid: 29
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,34.5
parent: 1
- uid: 30
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,34.5
parent: 1
- uid: 32
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,9.5
parent: 1
- uid: 33
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,24.5
parent: 1
- uid: 34
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,6.5
parent: 1
- uid: 35
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,4.5
parent: 1
- uid: 36
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,9.5
parent: 1
- uid: 2721
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,6.5
parent: 1
@@ -1569,71 +1502,51 @@ entities:
entities:
- uid: 74
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,14.5
parent: 1
- uid: 75
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,20.5
parent: 1
- uid: 76
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,20.5
parent: 1
- uid: 77
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,20.5
parent: 1
- uid: 78
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,2.5
parent: 1
- uid: 79
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,3.5
parent: 1
- uid: 80
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,30.5
parent: 1
- uid: 81
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,34.5
parent: 1
- uid: 82
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,27.5
parent: 1
- uid: 83
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,12.5
parent: 1
@@ -1648,45 +1561,33 @@ entities:
entities:
- uid: 84
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,30.5
parent: 1
- uid: 85
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,17.5
parent: 1
- uid: 86
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,34.5
parent: 1
- uid: 87
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,32.5
parent: 1
- uid: 88
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,26.5
parent: 1
- uid: 89
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 25.5,20.5
@@ -1695,8 +1596,6 @@ entities:
entities:
- uid: 90
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,23.5
parent: 1
@@ -1716,12 +1615,14 @@ entities:
showEnts: False
occludes: True
ent: 92
+ fuelSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 1174
- proto: AmeJar
entities:
- uid: 92
components:
- - type: MetaData
- flags: InContainer
- type: Transform
parent: 91
- type: Physics
@@ -1736,11 +1637,12 @@ entities:
- type: Transform
pos: 13.751163,2.6970534
parent: 1
- - uid: 1197
+ - uid: 1174
components:
- type: Transform
- pos: 13.501163,2.7908034
- parent: 1
+ parent: 91
+ - type: Physics
+ canCollide: False
- proto: AmeShielding
entities:
- uid: 94
@@ -1850,8 +1752,6 @@ entities:
- type: Transform
pos: -3.5,17.5
parent: 1
-- proto: APCBasic
- entities:
- uid: 113
components:
- type: Transform
@@ -1877,8 +1777,6 @@ entities:
- type: Transform
pos: 23.5,11.5
parent: 1
-- proto: APCBasic
- entities:
- uid: 118
components:
- type: Transform
@@ -2510,8 +2408,6 @@ entities:
- type: Transform
pos: -19.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: Bed
entities:
- uid: 153
@@ -2778,8 +2674,6 @@ entities:
entities:
- uid: 196
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,38.5
parent: 1
@@ -2827,15 +2721,12 @@ entities:
entities:
- uid: 202
components:
- - type: MetaData
- flags: InContainer
- type: Transform
parent: 201
- type: SolutionContainerManager
solutions:
beaker:
temperature: 293.15
- canMix: True
canReact: True
maxVol: 300
name: null
@@ -2856,8 +2747,6 @@ entities:
entities:
- uid: 203
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,22.5
parent: 1
@@ -7450,13 +7339,6 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,30.5
parent: 1
-- proto: chem_master
- entities:
- - uid: 1172
- components:
- - type: Transform
- pos: -15.5,13.5
- parent: 1
- proto: ChemistryHotplate
entities:
- uid: 3692
@@ -7464,19 +7346,19 @@ entities:
- type: Transform
pos: -15.5,11.5
parent: 1
-- proto: CigarGoldCase
+- proto: ChemMaster
entities:
- - uid: 2236
+ - uid: 1172
components:
- type: Transform
- pos: 5.407282,14.104158
+ pos: -15.5,13.5
parent: 1
-- proto: CloningPod
+- proto: CigarGoldCase
entities:
- - uid: 1174
+ - uid: 2236
components:
- type: Transform
- pos: -23.5,37.5
+ pos: 5.407282,14.104158
parent: 1
- proto: ClosetL3ScienceFilled
entities:
@@ -7503,13 +7385,6 @@ entities:
- 0
- 0
- 0
-- proto: ClothingHeadHatCatEars
- entities:
- - uid: 1198
- components:
- - type: Transform
- pos: -18.437984,6.194993
- parent: 1
- proto: ClothingHeadNurseHat
entities:
- uid: 1199
@@ -7576,14 +7451,6 @@ entities:
- type: Transform
pos: 24.5,33.5
parent: 1
-- proto: ComputerCloningConsole
- entities:
- - uid: 1223
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,35.5
- parent: 1
- proto: ComputerPowerMonitoring
entities:
- uid: 1225
@@ -7651,13 +7518,18 @@ entities:
- type: Transform
pos: 0.5,2.5
parent: 1
- - type: Physics
- canCollide: False
- type: ContainerContainer
containers:
board: !type:Container
+ showEnts: False
+ occludes: True
ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Physics
+ canCollide: False
- type: ItemSlots
- uid: 1234
components:
@@ -7665,26 +7537,36 @@ entities:
rot: 1.5707963267948966 rad
pos: -17.5,6.5
parent: 1
- - type: Physics
- canCollide: False
- type: ContainerContainer
containers:
board: !type:Container
+ showEnts: False
+ occludes: True
ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Physics
+ canCollide: False
- type: ItemSlots
- uid: 1235
components:
- type: Transform
pos: 26.5,17.5
parent: 1
- - type: Physics
- canCollide: False
- type: ContainerContainer
containers:
board: !type:Container
+ showEnts: False
+ occludes: True
ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Physics
+ canCollide: False
- type: ItemSlots
- proto: ComputerWithdrawBankATM
entities:
@@ -7696,8 +7578,13 @@ entities:
- type: ContainerContainer
containers:
board: !type:Container
+ showEnts: False
+ occludes: True
ents: []
- bank-ATM-cashSlot: !type:ContainerSlot {}
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- type: ItemSlots
- proto: CrateArtifactContainer
entities:
@@ -7706,95 +7593,13 @@ entities:
- type: Transform
pos: 25.5,31.5
parent: 1
-- proto: CrateChemistryD
- entities:
- - uid: 1237
- components:
- - type: Transform
- pos: -25.5,13.5
- parent: 1
-- proto: CrateChemistryP
- entities:
- - uid: 1238
- components:
- - type: Transform
- pos: -24.5,13.5
- parent: 1
-- proto: CrateChemistryS
- entities:
- - uid: 1239
- components:
- - type: Transform
- pos: -25.5,11.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateChemistrySupplies
- entities:
- - uid: 1240
- components:
- - type: Transform
- pos: -25.5,12.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
-- proto: CrateEmergencyAdvancedKit
- entities:
- - uid: 1241
- components:
- - type: Transform
- pos: -23.5,28.5
- parent: 1
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
+- proto: CrateChemistrySupplies
+ entities:
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: -24.5,13.5
+ parent: 1
- proto: CrateEngineeringSolar
entities:
- uid: 1242
@@ -7898,6 +7703,21 @@ entities:
parent: 1
- proto: CrateMedicalSecure
entities:
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: -25.5,11.5
+ parent: 1
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: -25.5,13.5
+ parent: 1
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: -25.5,12.5
+ parent: 1
- uid: 1247
components:
- type: Transform
@@ -7909,8 +7729,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -7970,8 +7790,6 @@ entities:
showEnts: False
occludes: True
ents: []
- - type: AtmosDevice
- joinedGrid: 1
- proto: DefibrillatorCabinet
entities:
- uid: 1249
@@ -9332,11 +9150,6 @@ entities:
parent: 1
- proto: DrinkWaterCup
entities:
- - uid: 1278
- components:
- - type: Transform
- pos: 7.2262716,19.3515
- parent: 1
- uid: 1279
components:
- type: Transform
@@ -9347,11 +9160,6 @@ entities:
- type: Transform
pos: 7.6012716,19.7265
parent: 1
- - uid: 1281
- components:
- - type: Transform
- pos: 7.4606466,19.234312
- parent: 1
- uid: 1282
components:
- type: Transform
@@ -9937,8 +9745,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasFilter
@@ -9949,8 +9755,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 23.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1386
@@ -9959,8 +9763,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1387
@@ -9969,8 +9771,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1388
@@ -9979,8 +9779,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 17.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasFilterFlipped
@@ -9991,8 +9789,6 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,30.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: GasMixer
entities:
- uid: 1390
@@ -10001,8 +9797,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasMixerFlipped
@@ -10013,8 +9807,6 @@ entities:
rot: 3.141592653589793 rad
pos: 16.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasOutletInjector
@@ -10025,8 +9817,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1393
@@ -10035,8 +9825,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1394
@@ -10045,8 +9833,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1395
@@ -10055,8 +9841,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasPassiveVent
@@ -10067,15 +9851,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1396
components:
- type: Transform
pos: 22.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 1397
@@ -10083,8 +9863,6 @@ entities:
- type: Transform
pos: 20.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 1398
@@ -10092,8 +9870,6 @@ entities:
- type: Transform
pos: 16.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#947507FF'
- uid: 1399
@@ -10101,23 +9877,17 @@ entities:
- type: Transform
pos: -23.5,39.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1400
components:
- type: Transform
pos: 24.5,35.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1401
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 25.5,5.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1403
@@ -10125,8 +9895,6 @@ entities:
- type: Transform
pos: 18.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#947507FF'
- proto: GasPipeBend
@@ -11002,11 +10770,15 @@ entities:
- uid: 1517
components:
- type: Transform
+ anchored: False
rot: 1.5707963267948966 rad
pos: 15.5,7.5
parent: 1
- type: AtmosPipeColor
color: '#990000FF'
+ - type: Physics
+ canCollide: True
+ bodyType: Dynamic
- uid: 1518
components:
- type: Transform
@@ -14606,32 +14378,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -8.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1993
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -26.5,33.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1994
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,31.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 1995
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 18.5,9.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1996
@@ -14640,8 +14404,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 23.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2731
@@ -14650,8 +14412,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,11.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: GasPressurePump
entities:
- uid: 1997
@@ -14660,8 +14420,6 @@ entities:
rot: 3.141592653589793 rad
pos: 19.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1998
@@ -14670,8 +14428,6 @@ entities:
rot: 3.141592653589793 rad
pos: 21.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1999
@@ -14680,8 +14436,6 @@ entities:
rot: 3.141592653589793 rad
pos: 23.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2000
@@ -14690,8 +14444,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,7.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2001
@@ -14699,8 +14451,6 @@ entities:
- type: Transform
pos: 16.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#947507FF'
- uid: 2002
@@ -14708,8 +14458,6 @@ entities:
- type: Transform
pos: 20.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 2003
@@ -14717,8 +14465,6 @@ entities:
- type: Transform
pos: 22.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 2004
@@ -14726,15 +14472,11 @@ entities:
- type: Transform
pos: -27.5,32.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 2005
components:
- type: Transform
pos: 18.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#947507FF'
- uid: 2006
@@ -14743,8 +14485,6 @@ entities:
rot: 3.141592653589793 rad
pos: 17.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasThermoMachineFreezerEnabled
@@ -14757,18 +14497,17 @@ entities:
parent: 1
- type: GasThermoMachine
targetTemperature: 0
- - type: AtmosDevice
- joinedGrid: 1
- proto: GasThermoMachineHeaterEnabled
entities:
- uid: 190
components:
- type: Transform
+ anchored: False
rot: -1.5707963267948966 rad
pos: -9.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
+ - type: Physics
+ bodyType: Dynamic
- proto: GasValve
entities:
- uid: 2009
@@ -14779,8 +14518,6 @@ entities:
parent: 1
- type: GasValve
open: False
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2010
@@ -14789,8 +14526,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CDFF'
- uid: 2011
@@ -14799,8 +14534,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,7.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2012
@@ -14811,8 +14544,6 @@ entities:
parent: 1
- type: GasValve
open: False
- - type: AtmosDevice
- joinedGrid: 1
- proto: GasVentPump
entities:
- uid: 897
@@ -14821,8 +14552,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 11.5,14.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2013
@@ -14831,8 +14560,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 14.5,14.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2014
@@ -14841,8 +14568,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -24.5,12.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2015
@@ -14851,8 +14576,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2016
@@ -14860,8 +14583,6 @@ entities:
- type: Transform
pos: -7.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2017
@@ -14870,8 +14591,6 @@ entities:
rot: 3.141592653589793 rad
pos: -7.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2018
@@ -14880,8 +14599,6 @@ entities:
rot: 3.141592653589793 rad
pos: -17.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2019
@@ -14890,8 +14607,6 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2020
@@ -14900,8 +14615,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2021
@@ -14910,8 +14623,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -8.5,24.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2022
@@ -14920,8 +14631,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,29.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2023
@@ -14930,8 +14639,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,26.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2024
@@ -14940,8 +14647,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,24.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2025
@@ -14950,8 +14655,6 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2026
@@ -14960,8 +14663,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -23.5,29.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2027
@@ -14969,8 +14670,6 @@ entities:
- type: Transform
pos: -24.5,35.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2028
@@ -14979,8 +14678,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,26.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2029
@@ -14989,8 +14686,6 @@ entities:
rot: 3.141592653589793 rad
pos: -4.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2030
@@ -14998,8 +14693,6 @@ entities:
- type: Transform
pos: -10.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2031
@@ -15007,8 +14700,6 @@ entities:
- type: Transform
pos: -27.5,28.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2032
@@ -15016,8 +14707,6 @@ entities:
- type: Transform
pos: -4.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2033
@@ -15025,8 +14714,6 @@ entities:
- type: Transform
pos: 7.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2034
@@ -15034,8 +14721,6 @@ entities:
- type: Transform
pos: 10.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2035
@@ -15044,8 +14729,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2036
@@ -15054,8 +14737,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,21.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2037
@@ -15064,8 +14745,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,26.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2038
@@ -15074,8 +14753,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 25.5,25.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2039
@@ -15084,8 +14761,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,31.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2040
@@ -15094,8 +14769,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,31.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2041
@@ -15103,8 +14776,6 @@ entities:
- type: Transform
pos: -4.5,39.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2042
@@ -15113,8 +14784,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -28.5,22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2043
@@ -15123,8 +14792,6 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2044
@@ -15133,8 +14800,6 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,7.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2045
@@ -15143,8 +14808,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2046
@@ -15153,8 +14816,6 @@ entities:
rot: 3.141592653589793 rad
pos: -12.5,5.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2047
@@ -15163,8 +14824,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,4.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2048
@@ -15172,8 +14831,6 @@ entities:
- type: Transform
pos: -1.5,5.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2049
@@ -15182,8 +14839,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,4.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2050
@@ -15192,8 +14847,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.5,3.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2051
@@ -15202,8 +14855,6 @@ entities:
rot: 3.141592653589793 rad
pos: 7.5,1.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2052
@@ -15212,8 +14863,6 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,3.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2053
@@ -15222,8 +14871,6 @@ entities:
rot: 3.141592653589793 rad
pos: 11.5,20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2054
@@ -15232,8 +14879,6 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2055
@@ -15241,8 +14886,6 @@ entities:
- type: Transform
pos: 3.5,29.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2056
@@ -15251,8 +14894,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -13.5,17.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2057
@@ -15261,8 +14902,6 @@ entities:
rot: 3.141592653589793 rad
pos: -5.5,7.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 2058
@@ -15270,8 +14909,6 @@ entities:
- type: Transform
pos: -11.5,22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 3685
@@ -15279,8 +14916,6 @@ entities:
- type: Transform
pos: 4.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
@@ -15291,8 +14926,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 11.5,15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 1108
@@ -15300,8 +14933,6 @@ entities:
- type: Transform
pos: 15.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2060
@@ -15310,8 +14941,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -23.5,28.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2061
@@ -15320,8 +14949,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,27.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2062
@@ -15330,8 +14957,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,25.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2063
@@ -15340,8 +14965,6 @@ entities:
rot: 3.141592653589793 rad
pos: 4.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2064
@@ -15349,8 +14972,6 @@ entities:
- type: Transform
pos: 4.5,29.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2065
@@ -15359,8 +14980,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,20.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2066
@@ -15369,8 +14988,6 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2067
@@ -15379,8 +14996,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,26.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2068
@@ -15389,8 +15004,6 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2069
@@ -15399,8 +15012,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2070
@@ -15408,8 +15019,6 @@ entities:
- type: Transform
pos: 5.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2071
@@ -15417,8 +15026,6 @@ entities:
- type: Transform
pos: 8.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2072
@@ -15426,8 +15033,6 @@ entities:
- type: Transform
pos: 11.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2073
@@ -15436,8 +15041,6 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2074
@@ -15446,8 +15049,6 @@ entities:
rot: 3.141592653589793 rad
pos: -9.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2075
@@ -15456,8 +15057,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2076
@@ -15466,8 +15065,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,2.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2077
@@ -15475,8 +15072,6 @@ entities:
- type: Transform
pos: -6.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2078
@@ -15484,8 +15079,6 @@ entities:
- type: Transform
pos: -9.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2079
@@ -15493,8 +15086,6 @@ entities:
- type: Transform
pos: -3.5,10.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2080
@@ -15503,8 +15094,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,27.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2081
@@ -15512,8 +15101,6 @@ entities:
- type: Transform
pos: 17.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2082
@@ -15522,8 +15109,6 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,3.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2083
@@ -15532,8 +15117,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2084
@@ -15541,8 +15124,6 @@ entities:
- type: Transform
pos: -23.5,25.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2085
@@ -15550,8 +15131,6 @@ entities:
- type: Transform
pos: -9.5,24.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2086
@@ -15559,8 +15138,6 @@ entities:
- type: Transform
pos: -25.5,25.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2087
@@ -15569,8 +15146,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2088
@@ -15579,8 +15154,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,32.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2089
@@ -15589,8 +15162,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,32.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2090
@@ -15599,8 +15170,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,3.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2091
@@ -15609,8 +15178,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,4.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2092
@@ -15619,8 +15186,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,4.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2093
@@ -15629,8 +15194,6 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,1.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2094
@@ -15639,8 +15202,6 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,6.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2095
@@ -15649,8 +15210,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,3.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2096
@@ -15658,8 +15217,6 @@ entities:
- type: Transform
pos: -22.5,36.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2097
@@ -15667,8 +15224,6 @@ entities:
- type: Transform
pos: -28.5,28.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2098
@@ -15677,8 +15232,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,30.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2099
@@ -15686,8 +15239,6 @@ entities:
- type: Transform
pos: -6.5,39.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2100
@@ -15695,8 +15246,6 @@ entities:
- type: Transform
pos: 1.5,28.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2101
@@ -15705,8 +15254,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -20.5,7.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2102
@@ -15715,8 +15262,6 @@ entities:
rot: 3.141592653589793 rad
pos: -25.5,22.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2103
@@ -15725,8 +15270,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -25.5,15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2104
@@ -15735,8 +15278,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,15.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2105
@@ -15745,8 +15286,6 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,19.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2106
@@ -15755,8 +15294,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,11.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2107
@@ -15765,8 +15302,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,18.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2108
@@ -15774,8 +15309,6 @@ entities:
- type: Transform
pos: -4.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- uid: 2109
@@ -15784,8 +15317,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,21.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasVolumePump
@@ -15796,8 +15327,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.5,8.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- type: AtmosPipeColor
color: '#0335FCFF'
- proto: GeigerCounter
@@ -16258,10 +15787,10 @@ entities:
parent: 1
- proto: GunSafeShuttleCaptain
entities:
- - uid: 2514
+ - uid: 1223
components:
- type: Transform
- pos: -12.5,4.5
+ pos: -12.5,3.5
parent: 1
- proto: Gyroscope
entities:
@@ -16776,6 +16305,23 @@ entities:
- type: Transform
pos: -15.5,10.5
parent: 1
+- proto: MachineFrame
+ entities:
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: -24.5,37.5
+ parent: 1
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: -25.5,35.5
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: -23.5,37.5
+ parent: 1
- proto: Matchbox
entities:
- uid: 2264
@@ -16814,25 +16360,6 @@ entities:
- type: Transform
pos: -28.5,31.5
parent: 1
-- proto: MedicalScanner
- entities:
- - uid: 2253
- components:
- - type: Transform
- pos: -24.5,37.5
- parent: 1
-- proto: MedkitBurnFilled
- entities:
- - uid: 2254
- components:
- - type: Transform
- pos: -26.76496,32.632736
- parent: 1
- - uid: 2255
- components:
- - type: Transform
- pos: -26.249334,32.663986
- parent: 1
- proto: MicrophoneInstrument
entities:
- uid: 2256
@@ -16868,8 +16395,6 @@ entities:
- type: Transform
pos: 20.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: OxygenCanister
entities:
- uid: 2260
@@ -16877,15 +16402,11 @@ entities:
- type: Transform
pos: 22.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- uid: 2261
components:
- type: Transform
pos: -26.5,33.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: PaperBin10
entities:
- uid: 1194
@@ -16956,8 +16477,6 @@ entities:
- type: Transform
pos: 18.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: Plunger
entities:
- uid: 2272
@@ -17002,10 +16521,7 @@ entities:
pos: 23.5,8.5
parent: 1
- type: Physics
- canCollide: True
bodyType: Static
- - type: AtmosDevice
- joinedGrid: 1
- proto: PottedPlantRandom
entities:
- uid: 2277
@@ -17075,601 +16591,445 @@ entities:
entities:
- uid: 1286
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,5.5
parent: 1
- uid: 1501
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,3.5
parent: 1
- uid: 2291
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,13.5
parent: 1
- uid: 2292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -27.5,18.5
parent: 1
- uid: 2293
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,22.5
parent: 1
- uid: 2294
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,16.5
parent: 1
- uid: 2295
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,15.5
parent: 1
- uid: 2296
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,16.5
parent: 1
- uid: 2297
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,16.5
parent: 1
- uid: 2298
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,14.5
parent: 1
- uid: 2299
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,12.5
parent: 1
- uid: 2300
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,9.5
parent: 1
- uid: 2301
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 23.5,9.5
parent: 1
- uid: 2302
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,4.5
parent: 1
- uid: 2303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,5.5
parent: 1
- uid: 2304
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 13.5,1.5
parent: 1
- uid: 2305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,8.5
parent: 1
- uid: 2306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 7.5,7.5
parent: 1
- uid: 2307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,8.5
parent: 1
- uid: 2308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -3.5,7.5
parent: 1
- uid: 2309
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,8.5
parent: 1
- uid: 2310
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -12.5,4.5
parent: 1
- uid: 2311
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -10.5,1.5
parent: 1
- uid: 2312
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -8.5,1.5
parent: 1
- uid: 2313
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -7.5,4.5
parent: 1
- uid: 2314
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,2.5
parent: 1
- uid: 2315
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,1.5
parent: 1
- uid: 2316
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 5.5,0.5
parent: 1
- uid: 2317
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -4.5,0.5
parent: 1
- uid: 2320
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 11.5,2.5
parent: 1
- uid: 2321
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 8.5,0.5
parent: 1
- uid: 2322
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,12.5
parent: 1
- uid: 2323
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,6.5
parent: 1
- uid: 2324
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -25.5,8.5
parent: 1
- uid: 2325
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -24.5,11.5
parent: 1
- uid: 2326
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -24.5,15.5
parent: 1
- uid: 2327
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,16.5
parent: 1
- uid: 2328
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -13.5,12.5
parent: 1
- uid: 2329
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -12.5,19.5
parent: 1
- uid: 2330
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,22.5
parent: 1
- uid: 2331
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -7.5,21.5
parent: 1
- uid: 2332
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,24.5
parent: 1
- uid: 2333
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,20.5
parent: 1
- uid: 2334
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -6.5,29.5
parent: 1
- uid: 2335
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,35.5
parent: 1
- uid: 2336
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,37.5
parent: 1
- uid: 2337
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,26.5
parent: 1
- uid: 2338
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,29.5
parent: 1
- uid: 2339
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,33.5
parent: 1
- uid: 2340
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -23.5,35.5
parent: 1
- uid: 2341
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,29.5
parent: 1
- uid: 2342
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -25.5,21.5
parent: 1
- uid: 2343
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -23.5,22.5
parent: 1
- uid: 2344
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,16.5
parent: 1
- uid: 2345
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,12.5
parent: 1
- uid: 2346
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 4.5,21.5
parent: 1
- uid: 2347
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,25.5
parent: 1
- uid: 2348
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 7.5,27.5
parent: 1
- uid: 2349
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,29.5
parent: 1
- uid: 2350
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,2.5
parent: 1
- uid: 2351
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -19.5,2.5
parent: 1
- uid: 2352
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,13.5
parent: 1
- uid: 2353
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 26.5,18.5
parent: 1
- uid: 2354
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,22.5
parent: 1
- uid: 2355
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,26.5
parent: 1
- uid: 2356
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 29.5,28.5
parent: 1
- uid: 2357
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 29.5,32.5
parent: 1
- uid: 2358
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 25.5,31.5
parent: 1
- uid: 2359
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 23.5,35.5
parent: 1
- uid: 2360
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,13.5
parent: 1
- uid: 2361
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -21.5,11.5
parent: 1
- uid: 2362
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -9.5,12.5
parent: 1
- uid: 2363
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,16.5
parent: 1
- uid: 2366
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,-0.5
parent: 1
- uid: 2367
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,13.5
parent: 1
- uid: 2368
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,13.5
parent: 1
- uid: 2369
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,18.5
parent: 1
- uid: 2513
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,20.5
@@ -17678,16 +17038,12 @@ entities:
entities:
- uid: 1151
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 10.5,12.5
parent: 1
- uid: 1153
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,16.5
parent: 1
@@ -17695,8 +17051,6 @@ entities:
entities:
- uid: 2370
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,16.5
parent: 1
@@ -17704,8 +17058,6 @@ entities:
entities:
- uid: 2371
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,12.5
@@ -18479,8 +17831,6 @@ entities:
entities:
- uid: 2521
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,25.5
parent: 1
@@ -18489,8 +17839,6 @@ entities:
- 2606
- uid: 2522
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,15.5
@@ -18500,8 +17848,6 @@ entities:
- 2601
- uid: 2523
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,16.5
@@ -19369,8 +18715,6 @@ entities:
entities:
- uid: 2803
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -18.5,9.5
parent: 1
@@ -19396,7 +18740,7 @@ entities:
- type: Transform
pos: 20.5,2.5
parent: 1
-- proto: soda_dispenser
+- proto: SodaDispenser
entities:
- uid: 2635
components:
@@ -19535,8 +18879,6 @@ entities:
- type: Transform
pos: 16.5,13.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: SubstationBasic
entities:
- uid: 2672
@@ -20235,8 +19577,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,14.5
parent: 1
- - type: Toilet
- isSeatUp: True
- proto: TomDrumsInstrument
entities:
- uid: 2781
@@ -20315,8 +19655,6 @@ entities:
entities:
- uid: 2784
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -8.5,1.5
parent: 1
@@ -20331,24 +19669,13 @@ entities:
entities:
- uid: 2786
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -7.5,3.5
parent: 1
-- proto: VendingMachineBountyVend
- entities:
- - uid: 2453
- components:
- - type: Transform
- pos: -12.5,3.5
- parent: 1
- proto: VendingMachineCargoDrobe
entities:
- uid: 2787
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -3.5,24.5
parent: 1
@@ -20370,8 +19697,6 @@ entities:
entities:
- uid: 2790
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -16.5,13.5
parent: 1
@@ -20379,8 +19704,6 @@ entities:
entities:
- uid: 2791
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -19.5,13.5
parent: 1
@@ -20445,8 +19768,6 @@ entities:
entities:
- uid: 2799
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -0.5,24.5
parent: 1
@@ -20482,8 +19803,6 @@ entities:
entities:
- uid: 2802
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: 24.5,21.5
parent: 1
@@ -20501,8 +19820,6 @@ entities:
parent: 1
- uid: 2804
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -25.5,16.5
parent: 1
@@ -20510,8 +19827,6 @@ entities:
entities:
- uid: 2806
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -4.5,18.5
parent: 1
@@ -20519,8 +19834,6 @@ entities:
entities:
- uid: 2808
components:
- - type: MetaData
- flags: SessionSpecific
- type: Transform
pos: -2.5,18.5
parent: 1
@@ -20547,4378 +19860,3168 @@ entities:
entities:
- uid: 1259
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,18.5
parent: 1
- uid: 2811
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,8.5
parent: 1
- uid: 2812
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -23.5,13.5
parent: 1
- uid: 2813
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,11.5
parent: 1
- uid: 2814
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,22.5
parent: 1
- uid: 2815
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,15.5
parent: 1
- uid: 2816
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,14.5
parent: 1
- uid: 2817
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,13.5
parent: 1
- uid: 2819
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,25.5
parent: 1
- uid: 2820
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,26.5
parent: 1
- uid: 2821
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,32.5
parent: 1
- uid: 2822
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,31.5
parent: 1
- uid: 2823
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -29.5,30.5
parent: 1
- uid: 2824
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,29.5
parent: 1
- uid: 2825
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,28.5
parent: 1
- uid: 2826
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,27.5
parent: 1
- uid: 2827
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,18.5
parent: 1
- uid: 2828
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,34.5
parent: 1
- uid: 2829
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,24.5
parent: 1
- uid: 2830
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,33.5
parent: 1
- uid: 2831
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,30.5
parent: 1
- uid: 2832
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,27.5
parent: 1
- uid: 2833
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,25.5
parent: 1
- uid: 2834
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,26.5
parent: 1
- uid: 2835
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,21.5
parent: 1
- uid: 2836
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,22.5
parent: 1
- uid: 2837
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,19.5
parent: 1
- uid: 2838
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,20.5
parent: 1
- uid: 2839
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,34.5
parent: 1
- uid: 2840
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,18.5
parent: 1
- uid: 2841
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,33.5
parent: 1
- uid: 2842
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,32.5
parent: 1
- uid: 2843
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,31.5
parent: 1
- uid: 2844
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,23.5
parent: 1
- uid: 2845
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,22.5
parent: 1
- uid: 2846
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -28.5,35.5
parent: 1
- uid: 2847
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,37.5
parent: 1
- uid: 2848
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,38.5
parent: 1
- uid: 2849
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,38.5
parent: 1
- uid: 2850
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,38.5
parent: 1
- uid: 2851
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,38.5
parent: 1
- uid: 2852
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,38.5
parent: 1
- uid: 2853
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,34.5
parent: 1
- uid: 2854
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,17.5
parent: 1
- uid: 2855
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -28.5,17.5
parent: 1
- uid: 2856
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,13.5
parent: 1
- uid: 2857
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -28.5,13.5
parent: 1
- uid: 2858
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,12.5
parent: 1
- uid: 2859
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,12.5
parent: 1
- uid: 2860
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,11.5
parent: 1
- uid: 2861
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,10.5
parent: 1
- uid: 2862
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,9.5
parent: 1
- uid: 2863
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -25.5,6.5
parent: 1
- uid: 2864
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -25.5,7.5
parent: 1
- uid: 2865
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,7.5
parent: 1
- uid: 2866
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,8.5
parent: 1
- uid: 2867
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,6.5
parent: 1
- uid: 2868
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,6.5
parent: 1
- uid: 2869
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,5.5
parent: 1
- uid: 2871
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,3.5
parent: 1
- uid: 2872
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,2.5
parent: 1
- uid: 2873
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,2.5
parent: 1
- uid: 2874
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,1.5
parent: 1
- uid: 2875
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,1.5
parent: 1
- uid: 2876
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,1.5
parent: 1
- uid: 2877
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,1.5
parent: 1
- uid: 2878
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,0.5
parent: 1
- uid: 2879
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,0.5
parent: 1
- uid: 2880
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,0.5
parent: 1
- uid: 2881
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,0.5
parent: 1
- uid: 2882
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,0.5
parent: 1
- uid: 2883
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,0.5
parent: 1
- uid: 2884
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,-0.5
parent: 1
- uid: 2885
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,-0.5
parent: 1
- uid: 2886
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -10.5,2.5
parent: 1
- uid: 2887
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,-0.5
parent: 1
- uid: 2888
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,-0.5
parent: 1
- uid: 2889
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,-0.5
parent: 1
- uid: 2890
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,-0.5
parent: 1
- uid: 2891
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-0.5
parent: 1
- uid: 2892
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,-1.5
parent: 1
- uid: 2893
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-1.5
parent: 1
- uid: 2894
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,-2.5
parent: 1
- uid: 2895
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,-2.5
parent: 1
- uid: 2896
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,19.5
parent: 1
- uid: 2897
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,-2.5
parent: 1
- uid: 2898
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,18.5
parent: 1
- uid: 2899
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,17.5
parent: 1
- uid: 2900
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-2.5
parent: 1
- uid: 2901
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,-1.5
parent: 1
- uid: 2902
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-1.5
parent: 1
- uid: 2903
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,-0.5
parent: 1
- uid: 2904
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,-0.5
parent: 1
- uid: 2905
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,-0.5
parent: 1
- uid: 2906
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,-0.5
parent: 1
- uid: 2907
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,-0.5
parent: 1
- uid: 2908
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,-0.5
parent: 1
- uid: 2909
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,-0.5
parent: 1
- uid: 2910
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,0.5
parent: 1
- uid: 2911
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,0.5
parent: 1
- uid: 2912
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,0.5
parent: 1
- uid: 2913
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,0.5
parent: 1
- uid: 2914
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,0.5
parent: 1
- uid: 2915
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,0.5
parent: 1
- uid: 2916
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,0.5
parent: 1
- uid: 2917
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,0.5
parent: 1
- uid: 2918
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,1.5
parent: 1
- uid: 2919
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,2.5
parent: 1
- uid: 2920
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,2.5
parent: 1
- uid: 2921
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,3.5
parent: 1
- uid: 2922
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,4.5
parent: 1
- uid: 2923
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,5.5
parent: 1
- uid: 2924
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,6.5
parent: 1
- uid: 2925
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,6.5
parent: 1
- uid: 2926
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 26.5,7.5
parent: 1
- uid: 2927
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,7.5
parent: 1
- uid: 2928
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 26.5,6.5
parent: 1
- uid: 2929
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,10.5
parent: 1
- uid: 2930
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,11.5
parent: 1
- uid: 2931
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,12.5
parent: 1
- uid: 2932
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,12.5
parent: 1
- uid: 2933
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,13.5
parent: 1
- uid: 2934
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,13.5
parent: 1
- uid: 2935
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,17.5
parent: 1
- uid: 2936
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 28.5,17.5
parent: 1
- uid: 2937
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,21.5
parent: 1
- uid: 2938
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,20.5
parent: 1
- uid: 2939
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,23.5
parent: 1
- uid: 2940
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,22.5
parent: 1
- uid: 2941
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,25.5
parent: 1
- uid: 2942
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,24.5
parent: 1
- uid: 2943
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,27.5
parent: 1
- uid: 2944
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,26.5
parent: 1
- uid: 2945
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,29.5
parent: 1
- uid: 2946
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,28.5
parent: 1
- uid: 2947
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,31.5
parent: 1
- uid: 2948
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,30.5
parent: 1
- uid: 2949
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,32.5
parent: 1
- uid: 2950
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,36.5
parent: 1
- uid: 2951
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,36.5
parent: 1
- uid: 2952
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,36.5
parent: 1
- uid: 2953
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,37.5
parent: 1
- uid: 2954
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -29.5,34.5
parent: 1
- uid: 2955
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,38.5
parent: 1
- uid: 2956
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,38.5
parent: 1
- uid: 2957
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,38.5
parent: 1
- uid: 2958
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,34.5
parent: 1
- uid: 2959
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,34.5
parent: 1
- uid: 2960
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,33.5
parent: 1
- uid: 2961
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,32.5
parent: 1
- uid: 2962
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,31.5
parent: 1
- uid: 2963
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,30.5
parent: 1
- uid: 2964
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,29.5
parent: 1
- uid: 2965
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,28.5
parent: 1
- uid: 2966
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,27.5
parent: 1
- uid: 2967
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,26.5
parent: 1
- uid: 2968
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,25.5
parent: 1
- uid: 2969
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,24.5
parent: 1
- uid: 2970
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,23.5
parent: 1
- uid: 2971
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,22.5
parent: 1
- uid: 2972
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,21.5
parent: 1
- uid: 2973
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,20.5
parent: 1
- uid: 2974
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,19.5
parent: 1
- uid: 2975
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,18.5
parent: 1
- uid: 2976
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,17.5
parent: 1
- uid: 2977
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -15.5,18.5
parent: 1
- uid: 2978
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,26.5
parent: 1
- uid: 2979
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,20.5
parent: 1
- uid: 2980
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,28.5
parent: 1
- uid: 2981
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,23.5
parent: 1
- uid: 2982
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,23.5
parent: 1
- uid: 2983
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,23.5
parent: 1
- uid: 2984
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,23.5
parent: 1
- uid: 2985
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,17.5
parent: 1
- uid: 2986
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,11.5
parent: 1
- uid: 2987
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,17.5
parent: 1
- uid: 2988
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,11.5
parent: 1
- uid: 2989
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,15.5
parent: 1
- uid: 2990
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,12.5
parent: 1
- uid: 2991
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,16.5
parent: 1
- uid: 2992
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,17.5
parent: 1
- uid: 2993
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,17.5
parent: 1
- uid: 2994
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,11.5
parent: 1
- uid: 2995
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,17.5
parent: 1
- uid: 2996
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,23.5
parent: 1
- uid: 2997
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -21.5,18.5
parent: 1
- uid: 2998
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,18.5
parent: 1
- uid: 2999
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,13.5
parent: 1
- uid: 3000
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,13.5
parent: 1
- uid: 3001
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 9.5,10.5
parent: 1
- uid: 3002
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 9.5,9.5
parent: 1
- uid: 3003
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,10.5
parent: 1
- uid: 3004
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,30.5
parent: 1
- uid: 3005
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,36.5
parent: 1
- uid: 3006
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,36.5
parent: 1
- uid: 3007
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,30.5
parent: 1
- uid: 3008
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,35.5
parent: 1
- uid: 3009
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,35.5
parent: 1
- uid: 3010
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,29.5
parent: 1
- uid: 3011
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,23.5
parent: 1
- uid: 3012
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,29.5
parent: 1
- uid: 3013
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,29.5
parent: 1
- uid: 3014
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,29.5
parent: 1
- uid: 3015
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,29.5
parent: 1
- uid: 3016
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,29.5
parent: 1
- uid: 3017
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,9.5
parent: 1
- uid: 3018
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,14.5
parent: 1
- uid: 3019
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,9.5
parent: 1
- uid: 3020
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,10.5
parent: 1
- uid: 3021
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -5.5,9.5
parent: 1
- uid: 3022
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,9.5
parent: 1
- uid: 3023
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 3.5,9.5
parent: 1
- uid: 3024
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,9.5
parent: 1
- uid: 3025
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -8.5,9.5
parent: 1
- uid: 3026
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -8.5,10.5
parent: 1
- uid: 3027
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,24.5
parent: 1
- uid: 3028
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,18.5
parent: 1
- uid: 3029
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,19.5
parent: 1
- uid: 3030
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,28.5
parent: 1
- uid: 3031
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,11.5
parent: 1
- uid: 3032
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,11.5
parent: 1
- uid: 3033
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,17.5
parent: 1
- uid: 3034
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,16.5
parent: 1
- uid: 3035
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,11.5
parent: 1
- uid: 3036
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,11.5
parent: 1
- uid: 3037
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,11.5
parent: 1
- uid: 3038
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,12.5
parent: 1
- uid: 3039
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,11.5
parent: 1
- uid: 3040
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,11.5
parent: 1
- uid: 3041
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,11.5
parent: 1
- uid: 3042
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,11.5
parent: 1
- uid: 3043
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,26.5
parent: 1
- uid: 3044
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,25.5
parent: 1
- uid: 3045
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,18.5
parent: 1
- uid: 3046
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,18.5
parent: 1
- uid: 3047
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,17.5
parent: 1
- uid: 3048
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,20.5
parent: 1
- uid: 3049
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,19.5
parent: 1
- uid: 3050
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,18.5
parent: 1
- uid: 3051
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,19.5
parent: 1
- uid: 3052
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,20.5
parent: 1
- uid: 3053
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,28.5
parent: 1
- uid: 3054
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,19.5
parent: 1
- uid: 3055
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,2.5
parent: 1
- uid: 3056
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,17.5
parent: 1
- uid: 3057
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,37.5
parent: 1
- uid: 3058
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,20.5
parent: 1
- uid: 3059
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,17.5
parent: 1
- uid: 3060
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,17.5
parent: 1
- uid: 3061
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,20.5
parent: 1
- uid: 3062
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,20.5
parent: 1
- uid: 3063
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,20.5
parent: 1
- uid: 3064
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,12.5
parent: 1
- uid: 3065
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,17.5
parent: 1
- uid: 3066
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,28.5
parent: 1
- uid: 3067
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,11.5
parent: 1
- uid: 3068
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,28.5
parent: 1
- uid: 3069
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 29.5,30.5
parent: 1
- uid: 3070
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,36.5
parent: 1
- uid: 3071
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,35.5
parent: 1
- uid: 3072
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,36.5
parent: 1
- uid: 3073
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,17.5
parent: 1
- uid: 3074
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,11.5
parent: 1
- uid: 3075
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,20.5
parent: 1
- uid: 3076
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,2.5
parent: 1
- uid: 3077
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -2.5,17.5
parent: 1
- uid: 3078
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,11.5
parent: 1
- uid: 3079
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -1.5,17.5
parent: 1
- uid: 3080
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,17.5
parent: 1
- uid: 3081
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,11.5
parent: 1
- uid: 3082
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,17.5
parent: 1
- uid: 3083
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,28.5
parent: 1
- uid: 3084
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,17.5
parent: 1
- uid: 3085
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,11.5
parent: 1
- uid: 3086
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,13.5
parent: 1
- uid: 3087
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,11.5
parent: 1
- uid: 3088
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,28.5
parent: 1
- uid: 3089
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,17.5
parent: 1
- uid: 3090
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,15.5
parent: 1
- uid: 3091
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,0.5
parent: 1
- uid: 3092
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,1.5
parent: 1
- uid: 3093
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,2.5
parent: 1
- uid: 3094
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,1.5
parent: 1
- uid: 3095
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,2.5
parent: 1
- uid: 3096
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,2.5
parent: 1
- uid: 3097
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -6.5,6.5
parent: 1
- uid: 3098
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,2.5
parent: 1
- uid: 3099
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,2.5
parent: 1
- uid: 3100
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,3.5
parent: 1
- uid: 3101
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,6.5
parent: 1
- uid: 3102
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,6.5
parent: 1
- uid: 3103
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,5.5
parent: 1
- uid: 3104
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,11.5
parent: 1
- uid: 3105
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,17.5
parent: 1
- uid: 3106
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,2.5
parent: 1
- uid: 3107
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,1.5
parent: 1
- uid: 3108
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,0.5
parent: 1
- uid: 3109
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,6.5
parent: 1
- uid: 3111
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,6.5
parent: 1
- uid: 3112
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,4.5
parent: 1
- uid: 3113
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,5.5
parent: 1
- uid: 3114
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,6.5
parent: 1
- uid: 3115
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,6.5
parent: 1
- uid: 3116
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,6.5
parent: 1
- uid: 3117
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,6.5
parent: 1
- uid: 3118
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,6.5
parent: 1
- uid: 3119
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 7.5,6.5
parent: 1
- uid: 3120
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,6.5
parent: 1
- uid: 3121
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,6.5
parent: 1
- uid: 3122
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,6.5
parent: 1
- uid: 3123
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,6.5
parent: 1
- uid: 3124
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,6.5
parent: 1
- uid: 3125
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 15.5,7.5
parent: 1
- uid: 3126
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 15.5,8.5
parent: 1
- uid: 3127
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,6.5
parent: 1
- uid: 3128
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,6.5
parent: 1
- uid: 3129
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,14.5
parent: 1
- uid: 3130
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,14.5
parent: 1
- uid: 3131
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,7.5
parent: 1
- uid: 3132
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,9.5
parent: 1
- uid: 3133
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,10.5
parent: 1
- uid: 3134
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -11.5,10.5
parent: 1
- uid: 3135
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -11.5,9.5
parent: 1
- uid: 3136
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,10.5
parent: 1
- uid: 3137
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -1.5,9.5
parent: 1
- uid: 3138
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,25.5
parent: 1
- uid: 3139
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,14.5
parent: 1
- uid: 3140
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,14.5
parent: 1
- uid: 3141
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,14.5
parent: 1
- uid: 3142
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,13.5
parent: 1
- uid: 3143
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,26.5
parent: 1
- uid: 3144
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 23.5,11.5
parent: 1
- uid: 3145
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,10.5
parent: 1
- uid: 3146
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 23.5,12.5
parent: 1
- uid: 3147
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 11.5,9.5
parent: 1
- uid: 3148
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 2.5,9.5
parent: 1
- uid: 3149
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,9.5
parent: 1
- uid: 3150
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,10.5
parent: 1
- uid: 3151
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,23.5
parent: 1
- uid: 3152
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,18.5
parent: 1
- uid: 3153
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,19.5
parent: 1
- uid: 3154
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,23.5
parent: 1
- uid: 3155
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,23.5
parent: 1
- uid: 3156
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,28.5
parent: 1
- uid: 3157
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,23.5
parent: 1
- uid: 3158
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,30.5
parent: 1
- uid: 3159
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,30.5
parent: 1
- uid: 3160
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,30.5
parent: 1
- uid: 3161
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,23.5
parent: 1
- uid: 3162
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,23.5
parent: 1
- uid: 3163
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,26.5
parent: 1
- uid: 3164
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,25.5
parent: 1
- uid: 3165
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,23.5
parent: 1
- uid: 3166
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,27.5
parent: 1
- uid: 3167
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,24.5
parent: 1
- uid: 3168
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,25.5
parent: 1
- uid: 3169
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,20.5
parent: 1
- uid: 3170
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 3.5,20.5
parent: 1
- uid: 3171
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,28.5
parent: 1
- uid: 3172
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,14.5
parent: 1
- uid: 3173
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -21.5,17.5
parent: 1
- uid: 3174
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -20.5,17.5
parent: 1
- uid: 3175
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,23.5
parent: 1
- uid: 3176
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,23.5
parent: 1
- uid: 3177
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,17.5
parent: 1
- uid: 3178
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,17.5
parent: 1
- uid: 3179
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 22.5,17.5
parent: 1
- uid: 3180
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 21.5,17.5
parent: 1
- uid: 3181
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,11.5
parent: 1
- uid: 3182
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,20.5
parent: 1
- uid: 3183
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,23.5
parent: 1
- uid: 3184
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 2.5,30.5
parent: 1
- uid: 3185
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,29.5
parent: 1
- uid: 3186
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,29.5
parent: 1
- uid: 3187
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,16.5
parent: 1
- uid: 3188
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,14.5
parent: 1
- uid: 3189
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,17.5
parent: 1
- uid: 3190
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,13.5
parent: 1
- uid: 3191
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,16.5
parent: 1
- uid: 3192
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -26.5,14.5
parent: 1
- uid: 3193
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,16.5
parent: 1
- uid: 3194
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,14.5
parent: 1
- uid: 3195
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,17.5
parent: 1
- uid: 3196
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,13.5
parent: 1
- uid: 3197
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,14.5
parent: 1
- uid: 3198
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,21.5
parent: 1
- uid: 3199
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -29.5,20.5
parent: 1
- uid: 3200
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,20.5
parent: 1
- uid: 3201
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -28.5,19.5
parent: 1
- uid: 3202
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,33.5
parent: 1
- uid: 3203
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 30.5,34.5
parent: 1
- uid: 3204
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,34.5
parent: 1
- uid: 3205
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 29.5,35.5
parent: 1
- uid: 3206
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,20.5
parent: 1
- uid: 3207
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -25.5,17.5
parent: 1
- uid: 3208
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,20.5
parent: 1
- uid: 3209
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,3.5
parent: 1
- uid: 3210
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,2.5
parent: 1
- uid: 3211
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,1.5
parent: 1
- uid: 3212
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 0.5,2.5
parent: 1
- uid: 3213
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 3.5,2.5
parent: 1
- uid: 3214
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 4.5,2.5
parent: 1
- uid: 3215
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 5.5,2.5
parent: 1
- uid: 3216
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,2.5
parent: 1
- uid: 3217
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -3.5,2.5
parent: 1
- uid: 3219
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,13.5
parent: 1
- uid: 3220
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,5.5
parent: 1
- uid: 3221
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 5.5,11.5
parent: 1
- uid: 3222
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,17.5
parent: 1
- uid: 3223
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 9.5,28.5
parent: 1
- uid: 3224
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,27.5
parent: 1
- uid: 3225
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,23.5
parent: 1
- uid: 3226
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,11.5
parent: 1
- uid: 3227
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,14.5
parent: 1
- uid: 3228
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,14.5
parent: 1
- uid: 3229
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,14.5
parent: 1
- uid: 3230
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 11.5,27.5
parent: 1
- uid: 3231
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,13.5
parent: 1
- uid: 3232
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,14.5
parent: 1
- uid: 3233
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,11.5
parent: 1
- uid: 3234
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,9.5
parent: 1
- uid: 3235
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -7.5,9.5
parent: 1
- uid: 3236
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,24.5
parent: 1
- uid: 3237
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,11.5
parent: 1
- uid: 3238
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 15.5,9.5
parent: 1
- uid: 3239
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 15.5,10.5
parent: 1
- uid: 3240
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,11.5
parent: 1
- uid: 3241
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,13.5
parent: 1
- uid: 3242
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,24.5
parent: 1
- uid: 3243
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,34.5
parent: 1
- uid: 3244
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,33.5
parent: 1
- uid: 3245
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,35.5
parent: 1
- uid: 3246
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,17.5
parent: 1
- uid: 3247
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 16.5,17.5
parent: 1
- uid: 3249
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,19.5
parent: 1
- uid: 3250
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,17.5
parent: 1
- uid: 3251
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,20.5
parent: 1
- uid: 3252
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,23.5
parent: 1
- uid: 3253
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,26.5
parent: 1
- uid: 3254
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,26.5
parent: 1
- uid: 3255
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,27.5
parent: 1
- uid: 3256
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,27.5
parent: 1
- uid: 3257
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,28.5
parent: 1
- uid: 3258
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,17.5
parent: 1
- uid: 3259
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,16.5
parent: 1
- uid: 3260
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -5.5,20.5
parent: 1
- uid: 3261
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -4.5,20.5
parent: 1
- uid: 3262
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,12.5
parent: 1
- uid: 3263
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,11.5
parent: 1
- uid: 3264
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,13.5
parent: 1
- uid: 3265
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,12.5
parent: 1
- uid: 3266
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,23.5
parent: 1
- uid: 3267
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,23.5
parent: 1
- uid: 3268
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,24.5
parent: 1
- uid: 3269
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,24.5
parent: 1
- uid: 3270
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -12.5,25.5
parent: 1
- uid: 3271
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -11.5,25.5
parent: 1
- uid: 3272
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,17.5
parent: 1
- uid: 3273
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,16.5
parent: 1
- uid: 3274
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 12.5,12.5
parent: 1
- uid: 3275
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -14.5,14.5
parent: 1
- uid: 3276
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,14.5
parent: 1
- uid: 3277
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,14.5
parent: 1
- uid: 3278
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,23.5
parent: 1
- uid: 3279
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,20.5
parent: 1
- uid: 3280
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,19.5
parent: 1
- uid: 3281
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,18.5
parent: 1
- uid: 3282
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,17.5
parent: 1
- uid: 3283
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,14.5
parent: 1
- uid: 3284
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,13.5
parent: 1
- uid: 3285
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,14.5
parent: 1
- uid: 3286
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,14.5
parent: 1
- uid: 3287
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 15.5,12.5
parent: 1
- uid: 3288
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -10.5,9.5
parent: 1
- uid: 3289
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,14.5
parent: 1
- uid: 3290
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,14.5
parent: 1
- uid: 3291
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -17.5,14.5
parent: 1
- uid: 3292
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -16.5,14.5
parent: 1
- uid: 3293
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -15.5,14.5
parent: 1
- uid: 3294
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -7.5,6.5
parent: 1
- uid: 3295
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,4.5
parent: 1
- uid: 3296
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,5.5
parent: 1
- uid: 3297
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -9.5,0.5
parent: 1
- uid: 3298
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,6.5
parent: 1
- uid: 3299
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 0.5,29.5
parent: 1
- uid: 3300
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,26.5
parent: 1
- uid: 3301
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 10.5,25.5
parent: 1
- uid: 3302
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,20.5
parent: 1
- uid: 3303
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,34.5
parent: 1
- uid: 3304
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,34.5
parent: 1
- uid: 3305
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,16.5
parent: 1
- uid: 3306
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -13.5,3.5
parent: 1
- uid: 3307
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,12.5
parent: 1
- uid: 3308
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,13.5
parent: 1
- uid: 3309
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,12.5
parent: 1
- uid: 3310
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,13.5
parent: 1
- uid: 3311
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 17.5,12.5
parent: 1
- uid: 3312
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,11.5
parent: 1
- uid: 3313
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,5.5
parent: 1
- uid: 3314
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 15.5,5.5
parent: 1
- uid: 3315
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,5.5
parent: 1
- uid: 3316
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,1.5
parent: 1
- uid: 3317
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 9.5,1.5
parent: 1
- uid: 3318
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 9.5,0.5
parent: 1
- uid: 3319
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,6.5
parent: 1
- uid: 3320
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,5.5
parent: 1
- uid: 3321
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,4.5
parent: 1
- uid: 3322
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,1.5
parent: 1
- uid: 3323
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,9.5
parent: 1
- uid: 3324
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,25.5
parent: 1
- uid: 3325
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -19.5,3.5
parent: 1
- uid: 3326
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -19.5,9.5
parent: 1
- uid: 3327
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -20.5,9.5
parent: 1
- uid: 3328
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -18.5,3.5
parent: 1
- uid: 3329
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,8.5
parent: 1
- uid: 3330
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -17.5,3.5
parent: 1
- uid: 3331
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -20.5,13.5
parent: 1
- uid: 3332
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -20.5,11.5
parent: 1
- uid: 3333
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -20.5,12.5
parent: 1
- uid: 3334
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -23.5,11.5
parent: 1
- uid: 3335
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -23.5,10.5
parent: 1
- uid: 3336
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -24.5,10.5
parent: 1
- uid: 3337
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -25.5,10.5
parent: 1
- uid: 3338
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -13.5,2.5
parent: 1
- uid: 3339
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 24.5,10.5
parent: 1
- uid: 3340
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,25.5
parent: 1
- uid: 3341
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -0.5,25.5
parent: 1
- uid: 3342
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -8.5,23.5
parent: 1
- uid: 3343
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,36.5
parent: 1
- uid: 3344
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,37.5
parent: 1
- uid: 3345
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,35.5
parent: 1
- uid: 3346
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,34.5
parent: 1
- uid: 3347
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,26.5
parent: 1
- uid: 3348
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,38.5
parent: 1
- uid: 3349
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,30.5
parent: 1
- uid: 3350
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 1.5,6.5
parent: 1
- uid: 3351
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,25.5
parent: 1
- uid: 3352
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,26.5
parent: 1
- uid: 3353
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,7.5
parent: 1
- uid: 3355
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: -21.5,3.5
parent: 1
- uid: 3356
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,28.5
parent: 1
- uid: 3357
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,28.5
parent: 1
- uid: 3358
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,27.5
parent: 1
- uid: 3359
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -0.5,26.5
parent: 1
- uid: 3360
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,36.5
parent: 1
- uid: 3361
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,24.5
parent: 1
- uid: 3362
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -22.5,29.5
parent: 1
- uid: 3363
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -28.5,36.5
parent: 1
- uid: 3364
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,36.5
parent: 1
- uid: 3365
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,35.5
parent: 1
- uid: 3366
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,37.5
parent: 1
- uid: 3367
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 27.5,38.5
parent: 1
- uid: 3368
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,38.5
parent: 1
- uid: 3369
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -27.5,37.5
parent: 1
- uid: 3370
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,27.5
parent: 1
- uid: 3371
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,27.5
parent: 1
- uid: 3372
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,27.5
parent: 1
- uid: 3373
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,27.5
parent: 1
- uid: 3374
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,27.5
parent: 1
- uid: 3375
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 4.5,26.5
parent: 1
- uid: 3376
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,27.5
parent: 1
- uid: 3377
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 6.5,26.5
parent: 1
- uid: 3378
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,27.5
parent: 1
- uid: 3379
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 8.5,26.5
parent: 1
- uid: 3380
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,6.5
parent: 1
- uid: 3381
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 21.5,6.5
parent: 1
- uid: 3382
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,6.5
parent: 1
- uid: 3383
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 18.5,6.5
parent: 1
- uid: 3384
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,30.5
parent: 1
- uid: 3385
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,29.5
parent: 1
- uid: 3386
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -26.5,28.5
parent: 1
- uid: 3387
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -25.5,30.5
parent: 1
- uid: 3388
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,30.5
parent: 1
- uid: 3389
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,5.5
parent: 1
- uid: 3390
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,4.5
parent: 1
- uid: 3391
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -10.5,3.5
parent: 1
- uid: 3392
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,34.5
parent: 1
- uid: 3393
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,30.5
parent: 1
- uid: 3394
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 25.5,30.5
parent: 1
- uid: 3395
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 26.5,30.5
parent: 1
- uid: 3396
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 28.5,20.5
parent: 1
- uid: 3397
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 27.5,20.5
parent: 1
- uid: 3398
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 27.5,23.5
parent: 1
- uid: 3399
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 28.5,23.5
parent: 1
- uid: 3400
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,24.5
parent: 1
- uid: 3401
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 28.5,25.5
parent: 1
- uid: 3402
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,25.5
parent: 1
- uid: 3403
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,31.5
parent: 1
- uid: 3404
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 26.5,20.5
parent: 1
- uid: 3405
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 24.5,20.5
parent: 1
- uid: 3406
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 27.5,27.5
parent: 1
- uid: 3407
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -28.5,27.5
parent: 1
- uid: 3408
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 1.5707963267948966 rad
pos: -10.5,4.5
parent: 1
- uid: 3409
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 20.5,1.5
parent: 1
- uid: 3410
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 19.5,1.5
parent: 1
- uid: 3411
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 22.5,18.5
parent: 1
- uid: 3412
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 13.5,-0.5
parent: 1
- uid: 3413
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 14.5,-0.5
parent: 1
- uid: 3414
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -24.5,5.5
parent: 1
- uid: 3415
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,4.5
parent: 1
- uid: 3416
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: -23.5,3.5
parent: 1
- uid: 3417
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 24.5,4.5
parent: 1
- uid: 3418
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
pos: 25.5,4.5
parent: 1
- uid: 3419
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: -1.5707963267948966 rad
pos: 24.5,5.5
parent: 1
- uid: 3420
components:
- - type: MetaData
- flags: PvsPriority
- type: Transform
rot: 3.141592653589793 rad
pos: 15.5,-0.5
@@ -24994,8 +23097,6 @@ entities:
- type: Transform
pos: -8.5,16.5
parent: 1
- - type: AtmosDevice
- joinedGrid: 1
- proto: WeaponCapacitorRecharger
entities:
- uid: 3429
diff --git a/Resources/Maps/_NF/Shuttles/pts.yml b/Resources/Maps/_NF/Shuttles/pts.yml
index c91ddca37e4..631bf7be387 100644
--- a/Resources/Maps/_NF/Shuttles/pts.yml
+++ b/Resources/Maps/_NF/Shuttles/pts.yml
@@ -3,162 +3,253 @@ meta:
postmapinit: false
tilemap:
0: Space
- 28: FloorDark
- 33: FloorDarkMono
- 37: FloorDarkPlastic
- 93: FloorSteelMono
- 97: FloorTechMaint
- 113: Lattice
- 114: Plating
+ 33: FloorDark
+ 38: FloorDarkMono
+ 1: FloorGlass
+ 99: FloorSteelCheckerDark
+ 112: FloorTechMaint
+ 126: FloorWood
+ 129: Lattice
+ 130: Plating
entities:
- proto: ""
entities:
- - uid: 8756
+ - uid: 2
components:
- type: MetaData
name: PTS
- - parent: invalid
- type: Transform
- - chunks:
- -1,-1:
- ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAJQAAAAACJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAXQAAAAADJQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAADJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAACJQAAAAAAIQAAAAACJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAJQAAAAADJQAAAAAB
+ - type: Transform
+ pos: -0.47916666,-0.5364844
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: IQAAAAADfgAAAAADfgAAAAAAfgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfgAAAAAAfgAAAAADfgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAACggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAADJQAAAAAAIQAAAAACJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAHAAAAAADHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAABggAAAAAAIQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACJgAAAAAAJgAAAAADIQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- 0,0:
- ind: 0,0
- tiles: IQAAAAADJQAAAAAAIQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAADJgAAAAADJgAAAAABIQAAAAAC
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABXQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAXQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACJQAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAADcgAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYwAAAAADYwAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYwAAAAACYwAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYwAAAAAAYwAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfgAAAAADfgAAAAACfgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
+ - type: SpreaderGrid
- type: Shuttle
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
- angle: 1.5707963267948966 rad
+ angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 0: 0,-2
- 1: 2,-2
- 2: 0,0
- 3: 2,0
+ 17: -3,1
+ 18: -3,-1
- node:
- angle: 4.71238898038469 rad
color: '#FFFFFFFF'
- id: Arrows
+ id: Bot
decals:
- 4: -4,0
- 5: -4,-2
- 6: -2,0
- 7: -2,-2
+ 8: -1,3
+ 13: -2,-5
+ 14: -1,-5
+ 15: -3,1
+ 16: -3,-1
- node:
- angle: 4.71238898038469 rad
color: '#FFFFFFFF'
- id: Bot
+ id: BotRightGreyscale
+ decals:
+ 10: 1,3
+ - node:
+ color: '#0096FFFF'
+ id: BoxGreyscale
decals:
- 8: -2,-2
- 9: -4,-2
- 10: -4,0
- 11: -2,0
- 12: 0,0
- 13: 0,-2
- 14: 2,-2
- 15: 2,0
- 16: 1,-4
- 17: 1,-5
- 18: -3,-4
- 19: -3,-5
- 20: -1,-4
+ 12: -2,-3
+ - node:
+ color: '#FF0000FF'
+ id: BoxGreyscale
+ decals:
+ 11: -2,-4
- node:
color: '#FFFFFFFF'
- id: DeliveryGreyscale
+ id: BoxGreyscale
decals:
- 41: -2,-6
- 42: -1,-6
- 43: 0,-6
+ 9: 0,3
- node:
cleanable: True
- color: '#83543273'
+ color: '#FFFFFFFF'
id: Dirt
decals:
- 21: -4,0
- 22: -4,-1
- 23: -1,-1
- 24: 0,0
- 25: -1,-2
- 26: -2,-2
- 27: -2,-4
- 28: -2,-5
- 29: 0,-5
- 30: 0,-4
- 31: 0,-2
- 32: 0,-1
- 33: -1,2
- 34: -2,2
- 35: 0,-1
- 36: 2,0
- 37: 2,-1
- 38: 2,-2
- 39: 2,0
- 40: 1,0
- type: DecalGrid
- - version: 2
+ 35: -1,-4
+ 45: 2,0
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 36: -1,0
+ 41: -1,-3
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 37: -3,-1
+ 38: -3,1
+ 42: -1,-5
+ 43: -1,-1
+ 44: 0,0
+ 46: 2,-2
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 39: 1,-3
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 40: 0,1
+ - node:
+ color: '#334E6DFF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 21: 0,4
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 26: -2,-1
+ 27: -2,1
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 19: -1,4
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 20: 1,4
+ - node:
+ color: '#FFFF00FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 24: -2,1
+ 25: -2,-1
+ 33: -4,-1
+ 34: -4,1
+ - node:
+ color: '#334E6DC8'
+ id: WarnLineGreyscaleN
+ decals:
+ 28: 0,1
+ - node:
+ color: '#FFFF00FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 22: -2,-1
+ 23: -2,1
+ 29: -1,1
+ 30: -1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 31: -4,-1
+ 32: -4,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 3: 3,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 1: 1,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 2: 3,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 4: 1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 6: 3,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 7: 2,1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 5: 2,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 0: 1,0
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
- -1,-1:
- 0: 65535
- -1,0:
- 0: 61183
- 1: 256
0,0:
- 0: 13311
- 1: 1024
+ 0: 12799
+ 1: 32768
0,-1:
- 0: 65527
- 1: 8
- -2,-1:
- 1: 8
- 0: 34944
- -1,-2:
+ 0: 63094
+ -1,0:
+ 0: 33018
+ 1: 8192
+ 0,1:
+ 0: 3
+ 1: 64
+ -1,1:
+ 0: 8
+ 1: 64
+ -1,-1:
+ 0: 61644
1: 16
- 0: 65518
- -1,-3:
+ -1,-2:
+ 1: 512
0: 49152
- -2,0:
- 0: 136
- -1,1:
- 1: 2
- 0: 204
- 0,1:
- 0: 17
- 1: 2
- 0,-3:
- 0: 4096
0,-2:
- 0: 30515
- 1: 64
+ 0: 24576
+ 1: 2048
+ 1,-1:
+ 1: 16
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -176,7 +267,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ immutable: True
moles:
- 0
- 0
@@ -191,1196 +282,1282 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
- - id: PTS
- type: BecomesStation
- - type: SpreaderGrid
-- proto: AirAlarm
+- proto: AirlockCommandGlass
entities:
- - uid: 68
+ - uid: 150
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-3.5
- parent: 8756
- type: Transform
- - ShutdownSubscribers:
- - 33
- - 34
- type: DeviceNetwork
- - devices:
- - 33
- - 34
- type: DeviceList
-- proto: AirCanister
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+- proto: AirlockEngineering
entities:
- - uid: 66
+ - uid: 114
components:
- - anchored: True
- pos: -3.5,-0.5
- parent: 8756
- type: Transform
- - bodyType: Static
- type: Physics
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
- proto: AirlockExternalGlass
entities:
- - uid: 8872
- components:
- - pos: -2.5,-1.5
- parent: 8756
- type: Transform
- - uid: 8873
+ - uid: 151
components:
- - pos: -2.5,0.5
- parent: 8756
- type: Transform
- - uid: 8874
- components:
- - pos: 1.5,0.5
- parent: 8756
- type: Transform
- - uid: 8875
- components:
- - pos: 1.5,-1.5
- parent: 8756
- type: Transform
-- proto: AirlockGlass
- entities:
- - uid: 5
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 152
components:
- - pos: -0.5,1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
- proto: AirlockGlassShuttle
entities:
- - uid: 1
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 8756
- type: Transform
- - uid: 2
- components:
- - rot: -1.5707963267948966 rad
- pos: -4.5,-1.5
- parent: 8756
- type: Transform
- - uid: 3
+ - uid: 51
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 8756
- type: Transform
- - uid: 4
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-0.5
+ parent: 2
+ - uid: 154
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,-1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 2
- proto: APCBasic
entities:
- - uid: 8819
+ - uid: 113
components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
- proto: AtmosDeviceFanTiny
entities:
- - uid: 8868
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,-1.5
- parent: 8756
- type: Transform
- - uid: 8869
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,0.5
- parent: 8756
- type: Transform
- - uid: 8870
+ - uid: 53
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
- parent: 8756
- type: Transform
- - uid: 8871
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 2
+ - uid: 188
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,-1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 2
- proto: AtmosFixBlockerMarker
entities:
- - uid: 39
+ - uid: 166
components:
- - pos: -4.5,-3.5
- parent: 8756
- type: Transform
- - uid: 40
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 167
components:
- - pos: -3.5,-6.5
- parent: 8756
- type: Transform
- - uid: 41
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 168
components:
- - pos: 2.5,-6.5
- parent: 8756
- type: Transform
- - uid: 42
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 2
+ - uid: 169
components:
- - pos: 3.5,-3.5
- parent: 8756
- type: Transform
- - uid: 43
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 170
components:
- - pos: 2.5,2.5
- parent: 8756
- type: Transform
- - uid: 44
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 171
components:
- - pos: 1.5,4.5
- parent: 8756
- type: Transform
- - uid: 45
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 2
+- proto: BenchSofaCorpCorner
+ entities:
+ - uid: 55
components:
- - pos: -2.5,4.5
- parent: 8756
- type: Transform
- - uid: 46
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 2
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - type: Fixtures
+ fixtures: {}
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 58
components:
- - pos: -3.5,2.5
- parent: 8756
- type: Transform
-- proto: CableApcExtension
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpMiddle
entities:
- - uid: 12
+ - uid: 56
components:
- - pos: -0.5,2.5
- parent: 8756
- type: Transform
- - uid: 13
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,0.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 54
components:
- - pos: -0.5,1.5
- parent: 8756
- type: Transform
- - uid: 14
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+- proto: CableApcExtension
+ entities:
+ - uid: 132
components:
- - pos: -0.5,0.5
- parent: 8756
- type: Transform
- - uid: 15
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 133
components:
- - pos: -0.5,-0.5
- parent: 8756
- type: Transform
- - uid: 16
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 134
components:
- - pos: -0.5,-1.5
- parent: 8756
- type: Transform
- - uid: 17
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 135
components:
- - pos: -0.5,-2.5
- parent: 8756
- type: Transform
- - uid: 18
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 136
components:
- - pos: -0.5,-3.5
- parent: 8756
- type: Transform
- - uid: 19
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 137
components:
- - pos: -0.5,-4.5
- parent: 8756
- type: Transform
- - uid: 20
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 138
components:
- - pos: 0.5,-5.5
- parent: 8756
- type: Transform
- - uid: 21
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 139
components:
- - pos: 1.5,-5.5
- parent: 8756
- type: Transform
- - uid: 22
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 140
components:
- - pos: -1.5,-5.5
- parent: 8756
- type: Transform
- - uid: 23
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 141
components:
- - pos: 2.5,0.5
- parent: 8756
- type: Transform
- - uid: 24
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 142
components:
- - pos: -2.5,0.5
- parent: 8756
- type: Transform
- - uid: 25
+ - type: Transform
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 144
components:
- - pos: -1.5,0.5
- parent: 8756
- type: Transform
- - uid: 26
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - uid: 145
components:
- - pos: -3.5,0.5
- parent: 8756
- type: Transform
- - uid: 27
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - uid: 146
components:
- - pos: 0.5,0.5
- parent: 8756
- type: Transform
- - uid: 28
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 194
components:
- - pos: 1.5,0.5
- parent: 8756
- type: Transform
- - uid: 8854
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 196
components:
- - pos: -0.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
- proto: CableHV
entities:
- - uid: 8821
- components:
- - pos: 0.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8822
- components:
- - pos: -0.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8823
- components:
- - pos: -1.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8824
+ - uid: 126
components:
- - pos: -2.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
- proto: CableMV
entities:
- - uid: 8825
- components:
- - pos: -2.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8826
+ - uid: 130
components:
- - pos: -1.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8827
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 131
components:
- - pos: -0.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8828
- components:
- - pos: 0.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8829
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+- proto: ChairFolding
+ entities:
+ - uid: 187
components:
- - pos: 1.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 2
- proto: ChairPilotSeat
entities:
- - uid: 8857
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-3.5
- parent: 8756
- type: Transform
- - uid: 8858
+ - uid: 161
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-4.5
- parent: 8756
- type: Transform
- - uid: 8859
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-3.5
- parent: 8756
- type: Transform
- - uid: 8860
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 2
+- proto: ComputerTabletopShuttle
+ entities:
+ - uid: 157
components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-4.5
- parent: 8756
- type: Transform
- - uid: 8885
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+- proto: ComputerTabletopStationRecords
+ entities:
+ - uid: 158
components:
- - pos: -0.5,-3.5
- parent: 8756
- type: Transform
- - uid: 8895
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+- proto: ComputerTelevision
+ entities:
+ - uid: 52
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,2.5
- parent: 8756
- type: Transform
-- proto: ClosetWallFireFilledRandom
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+- proto: ComputerWallmountWithdrawBankATM
entities:
- - uid: 73
+ - uid: 153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ bank-ATM-cashSlot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - type: Physics
+ canCollide: False
+ - type: ItemSlots
+- proto: CrateFreezer
+ entities:
+ - uid: 61
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 8756
- type: Transform
-- proto: ComputerFrame
+ - type: Transform
+ pos: 2.5,-2.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14923
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: DefibrillatorCabinetFilled
entities:
- - uid: 8889
+ - uid: 185
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,2.5
- parent: 8756
- type: Transform
-- proto: ComputerTabletopShuttle
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+- proto: DrinkChampagneBottleFull
entities:
- - uid: 29
+ - uid: 193
components:
- - pos: -0.5,3.5
- parent: 8756
- type: Transform
-- proto: ComputerTabletopStationRecords
+ - type: Transform
+ pos: 1.535899,-4.187701
+ parent: 2
+- proto: DrinkGlassCoupeShaped
entities:
- - uid: 30
+ - uid: 59
components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,2.5
- parent: 8756
- type: Transform
-- proto: DefibrillatorCabinetFilled
+ - type: Transform
+ pos: 1.9004824,-4.062614
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 2.1296492,-4.302364
+ parent: 2
+- proto: EmergencyLight
entities:
- - uid: 74
+ - uid: 190
components:
- - pos: 2.5,1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 78
+ - uid: 125
components:
- - pos: -3.5,1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
- proto: FaxMachineShip
entities:
- - uid: 18175
+ - uid: 159
components:
- - pos: 0.5,3.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
- proto: FirelockGlass
entities:
- - uid: 8
+ - uid: 97
components:
- - pos: -0.5,1.5
- parent: 8756
- type: Transform
- - uid: 8861
- components:
- - pos: -1.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8862
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 189
components:
- - pos: -0.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8863
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+- proto: GasMixerOn
+ entities:
+ - uid: 43
components:
- - pos: 0.5,-2.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 2
+ - type: GasMixer
+ inletTwoConcentration: 0.79
+ inletOneConcentration: 0.21
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasPassiveVent
entities:
- - uid: 56
+ - uid: 81
components:
- - pos: 2.5,2.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeBend
entities:
- - uid: 51
+ - uid: 44
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-1.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 65
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 84
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
-- proto: GasPipeStraight
- entities:
- - uid: 35
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 88
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-3.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 36
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 103
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-2.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 47
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 108
components:
- - pos: 0.5,0.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 50
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 124
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-1.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 52
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 148
components:
- - pos: 0.5,1.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 54
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 82
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,1.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 55
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 83
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,0.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 57
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 85
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-0.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 59
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 87
components:
- - pos: 0.5,-0.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 60
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 90
components:
- - pos: -0.5,0.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 61
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 93
components:
- - pos: -0.5,1.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 62
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 95
components:
- - pos: -0.5,-1.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 63
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 96
components:
- - pos: -0.5,-2.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 64
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 98
components:
- - pos: -0.5,-3.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
-- proto: GasPipeTJunction
- entities:
- - uid: 11
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 100
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-1.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 58
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 101
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-0.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
-- proto: GasPort
- entities:
- - uid: 31
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 106
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-0.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
-- proto: GasPressurePump
- entities:
- - uid: 32
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 109
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-0.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 53
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 110
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: 2.5,-0.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
-- proto: GasVentPump
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 111
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
entities:
- - uid: 34
+ - uid: 91
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 46
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-4.5
- parent: 8756
- type: Transform
- - ShutdownSubscribers:
- - 68
- type: DeviceNetwork
- - color: '#0000CCFF'
- type: AtmosPipeColor
- - uid: 49
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 47
components:
- - pos: -0.5,2.5
- parent: 8756
- type: Transform
- - color: '#0000CCFF'
- type: AtmosPipeColor
-- proto: GasVentScrubber
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentPump
entities:
- - uid: 33
+ - uid: 104
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-4.5
- parent: 8756
- type: Transform
- - ShutdownSubscribers:
- - 68
- type: DeviceNetwork
- - color: '#990000FF'
- type: AtmosPipeColor
- - uid: 48
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 105
components:
- - pos: 0.5,2.5
- parent: 8756
- type: Transform
- - color: '#990000FF'
- type: AtmosPipeColor
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 89
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 99
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVolumePumpOn
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GravityGeneratorMini
entities:
- - uid: 8815
+ - uid: 183
components:
- - pos: -0.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -1.5,-4.5
+ parent: 2
- proto: Grille
entities:
- - uid: 8757
+ - uid: 6
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8758
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+ - uid: 11
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8759
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 13
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8760
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 26
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8777
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 27
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,1.5
- parent: 8756
- type: Transform
- - uid: 8778
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 28
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,1.5
- parent: 8756
- type: Transform
- - uid: 8783
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 29
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,3.5
- parent: 8756
- type: Transform
- - uid: 8784
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 30
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,4.5
- parent: 8756
- type: Transform
- - uid: 8785
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 31
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,4.5
- parent: 8756
- type: Transform
- - uid: 8786
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 32
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,4.5
- parent: 8756
- type: Transform
- - uid: 8787
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 2
+ - uid: 33
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,3.5
- parent: 8756
- type: Transform
- - uid: 8802
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8809
- components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-4.5
- parent: 8756
- type: Transform
- - uid: 8810
- components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-4.5
- parent: 8756
- type: Transform
- - uid: 8816
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 35
components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8817
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 36
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-6.5
- parent: 8756
- type: Transform
-- proto: IntercomCommon
- entities:
- - uid: 8893
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 49
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
pos: 1.5,2.5
- parent: 8756
- type: Transform
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+- proto: GrilleDiagonal
+ entities:
+ - uid: 178
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 2
+- proto: JukeboxWallmountShip
+ entities:
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+- proto: LockerPilotFilled
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 2
+- proto: NitrogenCanister
+ entities:
+ - uid: 80
+ components:
+ - type: Transform
+ anchored: True
+ pos: -1.5,-3.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+- proto: OxygenCanister
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ anchored: True
+ pos: -1.5,-2.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
- proto: Paper
entities:
- - uid: 76
+ - uid: 160
components:
- - pos: 0.73673934,3.451689
- parent: 8756
- type: Transform
- - uid: 77
+ - type: Transform
+ pos: -0.30220816,4.429711
+ parent: 2
+ - uid: 181
components:
- - pos: 0.5388227,3.264189
- parent: 8756
- type: Transform
-- proto: PortableGeneratorPacman
+ - type: Transform
+ pos: -0.45423022,4.366728
+ parent: 2
+- proto: PortableGeneratorPacmanShuttle
entities:
- - uid: 8804
+ - uid: 182
components:
- - anchored: True
- pos: 0.5,-5.5
- parent: 8756
- type: Transform
- - storage:
- Plasma: 3000
- type: MaterialStorage
- - bodyType: Static
- type: Physics
- - endTime: 0
- type: InsertingMaterialStorage
-- proto: PowerCellRecharger
- entities:
- - uid: 8892
- components:
- - pos: -1.5,3.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - type: FuelGenerator
+ on: False
+ - type: Physics
+ bodyType: Static
+- proto: PottedPlantRandom
+ entities:
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
- proto: Poweredlight
entities:
- - uid: 10
+ - uid: 143
components:
- - pos: -3.5,0.5
- parent: 8756
- type: Transform
- - uid: 81
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
+ parent: 2
+- proto: PoweredlightGreen
+ entities:
+ - uid: 162
components:
- - pos: 2.5,0.5
- parent: 8756
- type: Transform
- - uid: 8878
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,3.5
+ parent: 2
+- proto: PoweredlightRed
+ entities:
+ - uid: 163
components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,2.5
- parent: 8756
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 8879
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,3.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 155
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-4.5
- parent: 8756
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
- - uid: 8880
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 2
+ - uid: 156
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-4.5
- parent: 8756
- type: Transform
- - powerLoad: 0
- type: ApcPowerReceiver
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 2
- proto: SheetPlasma
entities:
- - uid: 9
+ - uid: 184
components:
- - pos: 0.7395834,-5.7157984
- parent: 8756
- type: Transform
- - count: 15
- type: Stack
- - size: 15
- type: Item
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
- proto: ShuttleWindow
entities:
- - uid: 8761
+ - uid: 57
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8762
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 63
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8764
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 64
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8776
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 65
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,1.5
- parent: 8756
- type: Transform
- - uid: 8788
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 2
+ - uid: 66
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,3.5
- parent: 8756
- type: Transform
- - uid: 8789
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 67
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,4.5
- parent: 8756
- type: Transform
- - uid: 8790
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 68
components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,4.5
- parent: 8756
- type: Transform
- - uid: 8791
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 69
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,4.5
- parent: 8756
- type: Transform
- - uid: 8792
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 70
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,3.5
- parent: 8756
- type: Transform
- - uid: 8795
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 2
+ - uid: 71
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
- parent: 8756
- type: Transform
- - uid: 8796
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 2
+ - uid: 72
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,1.5
- parent: 8756
- type: Transform
- - uid: 8801
- components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8805
- components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8807
- components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8812
- components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-4.5
- parent: 8756
- type: Transform
- - uid: 8814
- components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-4.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 4.5,-0.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 2
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 2
+- proto: ShuttleWindowDiagonal
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 2
- proto: SmallGyroscope
entities:
- - uid: 69
+ - uid: 149
components:
- - pos: -1.5,-5.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
- proto: SpawnPointLatejoin
entities:
- - uid: 6
+ - uid: 165
components:
- - pos: -0.5,-1.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
- proto: SubstationWallBasic
entities:
- - uid: 8818
+ - uid: 112
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-5.5
- parent: 8756
- type: Transform
-- proto: SuitStorageWallmountEVA
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+- proto: SuitStorageWallmountPilot
entities:
- - uid: 80
+ - uid: 123
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-2.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 2
+- proto: TableFancyWhite
+ entities:
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
- proto: TableReinforced
entities:
- - uid: 37
+ - uid: 120
components:
- - pos: 0.5,2.5
- parent: 8756
- type: Transform
- - uid: 38
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 121
components:
- - pos: -0.5,3.5
- parent: 8756
- type: Transform
- - uid: 8890
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 122
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,3.5
- parent: 8756
- type: Transform
- - uid: 8891
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+- proto: TableWood
+ entities:
+ - uid: 186
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,3.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
- proto: Thruster
entities:
- - uid: 8881
+ - uid: 115
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8882
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 116
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8883
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 2
+ - uid: 117
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,2.5
- parent: 8756
- type: Transform
- - uid: 8884
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-2.5
+ parent: 2
+ - uid: 118
components:
- - pos: 2.5,2.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
- proto: WallShuttle
entities:
- - uid: 75
+ - uid: 3
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,1.5
- parent: 8756
- type: Transform
- - uid: 79
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 2
+ - uid: 4
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,1.5
- parent: 8756
- type: Transform
- - uid: 8765
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 2
+ - uid: 5
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8766
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 2
+ - uid: 7
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8767
- components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8768
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-6.5
- parent: 8756
- type: Transform
- - uid: 8771
- components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,2.5
- parent: 8756
- type: Transform
- - uid: 8772
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 2
+ - uid: 8
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,1.5
- parent: 8756
- type: Transform
- - uid: 8773
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 2
+ - uid: 9
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,1.5
- parent: 8756
- type: Transform
- - uid: 8774
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 2
+ - uid: 12
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8779
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 14
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8780
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 2
+ - uid: 16
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8781
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 2
+ - uid: 17
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-5.5
- parent: 8756
- type: Transform
- - uid: 8782
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 2
+ - uid: 18
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8797
+ - type: Transform
+ pos: 4.5,2.5
+ parent: 2
+ - uid: 19
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8798
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 2
+ - uid: 20
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8799
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 21
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
pos: -2.5,2.5
- parent: 8756
- type: Transform
- - uid: 8800
+ parent: 2
+ - uid: 23
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,1.5
- parent: 8756
- type: Transform
- - uid: 8806
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 24
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,-2.5
- parent: 8756
- type: Transform
- - uid: 8808
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 25
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,1.5
- parent: 8756
- type: Transform
- - uid: 8811
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 34
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-3.5
- parent: 8756
- type: Transform
- - uid: 8813
- components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-3.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
- proto: WallShuttleDiagonal
entities:
- - uid: 8769
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,4.5
- parent: 8756
- type: Transform
- - uid: 8770
+ - uid: 10
components:
- - pos: -2.5,4.5
- parent: 8756
- type: Transform
- - uid: 8803
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-5.5
+ parent: 2
+ - uid: 15
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-3.5
- parent: 8756
- type: Transform
- - uid: 8886
- components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,-3.5
- parent: 8756
- type: Transform
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-5.5
+ parent: 2
- proto: WarpPointShip
entities:
- - uid: 18176
+ - uid: 164
components:
- - pos: -0.5,-0.5
- parent: 8756
- type: Transform
- - location: Personal Transport Shuttle
- type: WarpPoint
-- proto: WindoorSecure
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+- proto: WaterCooler
entities:
- - uid: 71
- components:
- - pos: 0.5,-4.5
- parent: 8756
- type: Transform
- - uid: 72
+ - uid: 147
components:
- - pos: -1.5,-4.5
- parent: 8756
- type: Transform
-- proto: WindowReinforcedDirectional
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 2
+- proto: Wrench
entities:
- - uid: 70
+ - uid: 45
components:
- - pos: -0.5,-4.5
- parent: 8756
- type: Transform
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 2
...
diff --git a/Resources/Maps/_NF/Test/dev_map.yml b/Resources/Maps/_NF/Test/dev_map.yml
index 07235eca5b4..6d535e2d4b9 100644
--- a/Resources/Maps/_NF/Test/dev_map.yml
+++ b/Resources/Maps/_NF/Test/dev_map.yml
@@ -5029,7 +5029,7 @@ entities:
- type: Transform
pos: -2.6010532,-10.491134
parent: 179
-- proto: LessLethalVendingMachine
+- proto: LessLethalVendingMachinePOI
entities:
- uid: 1238
components:
@@ -7614,14 +7614,14 @@ entities:
- type: Transform
pos: 6.5,16.5
parent: 179
-- proto: VendingMachineAmmo
+- proto: VendingMachineAmmoPOI
entities:
- uid: 1239
components:
- type: Transform
pos: -14.5,6.5
parent: 179
-- proto: VendingMachineEngivend
+- proto: VendingMachineEngivendPOI
entities:
- uid: 523
components:
@@ -7673,14 +7673,14 @@ entities:
- type: Transform
pos: -15.5,6.5
parent: 179
-- proto: VendingMachineTankDispenserEVA
+- proto: VendingMachineTankDispenserEVAPOI
entities:
- uid: 875
components:
- type: Transform
pos: 7.5,0.5
parent: 179
-- proto: VendingMachineYouTool
+- proto: VendingMachineYouToolPOI
entities:
- uid: 350
components:
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml
index 4809cec01c4..76d1ec313ce 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cargodrobe.yml
@@ -5,6 +5,7 @@
ClothingBackpackSatchelCargo: 3
ClothingBackpackDuffelCargo: 3
ClothingBackpackMessengerCargo: 3 # Frontier
+ ClothingOuterEVASuitCargo: 3 # Frontier
ClothingUniformJumpsuitCargo: 3
ClothingUniformJumpskirtCargo: 3
ClothingShoesColorBlack: 3
@@ -21,6 +22,7 @@
ClothingBackpackSatchelSalvage: 2
ClothingBackpackDuffelSalvage: 2
ClothingBackpackMessengerSalvage: 2 # Frontier
+ ClothingOuterEVASuitSalvage: 2 # Frontier
ClothingBeltSalvageWebbing: 2
ClothingUniformJumpsuitSalvageSpecialist: 2
ClothingOuterWinterMiner: 2
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml
index 069aa036c64..e7837cbccc5 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chapel.yml
@@ -15,30 +15,31 @@
ClothingHeadHatWitch1: 3
ClothingOuterPlagueSuit: 3
ClothingMaskPlague: 3
- ClothingHeadHatKippah: 3
- ClothingHeadHatWideBrimmed: 3
- ClothingHeadHatPilgrim: 3
- ClothingUniformJumpsuitChaplainPilgrimVest: 3
- ClothingHeadHatBishopMitre: 3
- ClothingOuterCoatBishop: 3
- ClothingHeadHatCardinal: 3
- ClothingOuterCoatCardinal: 3
- ClothingHeadHatWitchhunter: 3
- ClothingOuterCoatWitchHunter: 3
- ClothingNeckScarfChaplainStole: 3
+ ClothingHeadHatKippah: 3 # Frontier
+ ClothingHeadHatWideBrimmed: 3 # Frontier
+ ClothingHeadHatPilgrim: 3 # Frontier
+ ClothingUniformJumpsuitChaplainPilgrimVest: 3 # Frontier
+ ClothingHeadHatBishopMitre: 3 # Frontier
+ ClothingOuterCoatBishop: 3 # Frontier
+ ClothingHeadHatCardinal: 3 # Frontier
+ ClothingOuterCoatCardinal: 3 # Frontier
+ ClothingHeadHatWitchhunter: 3 # Frontier
+ ClothingOuterCoatWitchHunter: 3 # Frontier
+ ClothingNeckScarfChaplainStole: 3 # Frontier
ClothingNeckStoleChaplain: 3
- ClothingBeltChaplainSash: 3
+ ClothingBeltChaplainSash: 3 # Frontier
ClothingHeadsetService: 4
RubberStampChaplain: 3
Bible: 3
- UrnMortuary: 4
- Censer: 2
- ClothingNeckCrucifix: 3
BoxCandle: 2
BoxCandleSmall: 2
Urn: 5
+ UrnMortuary: 4 # Frontier
+ Censer: 2 # Frontier
+ ClothingNeckCrucifix: 3 # Frontier
+ ClothingOuterEVASuitChaplain: 3 # Frontier
emaggedInventory:
- WoodenStake: 6
+ WoodenStake: 6 # Frontier
ClothingOuterArmorCult: 1
ClothingHeadHelmetCult: 1
ClothingOuterRobesCult: 3
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml
index c238e396191..eefa26fab88 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/chefdrobe.yml
@@ -1,6 +1,7 @@
- type: vendingMachineInventory
id: ChefDrobeInventory
startingInventory:
+ ClothingOuterEVASuitServiceWorker: 2 # Frontier
ClothingHeadsetService: 2
ClothingOuterApronChef: 3
ClothingOuterWinterChef: 2
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml
index cad9c2eac38..7b25a12cef7 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engidrobe.yml
@@ -5,6 +5,7 @@
ClothingBackpackSatchelEngineering: 3
ClothingBackpackEngineering: 3
ClothingBackpackMessengerEngineering: 3 # Frontier
+ ClothingOuterEVASuitEngineer: 3 # Frontier
ClothingUniformJumpsuitEngineering: 3
ClothingUniformJumpskirtEngineering: 3
ClothingUniformJumpsuitEngineeringHazard: 3
@@ -24,6 +25,7 @@
ClothingBackpackSatchelAtmospherics: 2
ClothingBackpackAtmospherics: 2
ClothingBackpackMessengerAtmospherics: 2 # Frontier
+ ClothingOuterEVASuitAtmosTech: 2 # Frontier
ClothingUniformJumpsuitAtmos: 3
ClothingUniformJumpskirtAtmos: 3
ClothingUniformJumpsuitAtmosCasual: 3
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml
index 170447c7309..fd3e572d4e1 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/engivend.yml
@@ -11,6 +11,6 @@
GeigerCounter: 10 # Frontier
PowerCellMedium: 15 # Frontier: 5<15
# NetworkConfigurator: 5 # Frontier
- ShipyardRCD: 10
- ShipyardRCDAmmo: 20
+ ShipyardRCD: 10 # Frontier
+ ShipyardRCDAmmo: 20 # Frontier
ClothingHeadHatCone: 10 # Frontier: 4<10
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml
index 0b342a1207c..ceda3f4a8dc 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/hydrobe.yml
@@ -5,6 +5,7 @@
ClothingBackpackSatchelHydroponics: 3
ClothingBackpackDuffelHydroponics: 3
ClothingBackpackMessengerHydroponics: 3 # Frontier
+ ClothingOuterEVASuitHydro: 3 # Frontier
ClothingBeltPlant: 3 # Frontier
ClothingOuterApronBotanist: 3
ClothingUniformOveralls: 3
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
index 676b2ef2a06..f52174815de 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/janidrobe.yml
@@ -14,6 +14,7 @@
ClothingNeckScarfStripedPurple: 3
ClothingHeadHatHoodBioJanitor: 1 # Frontier - Bio suit
ClothingOuterBioJanitor: 1 # Frontier - Bio suit
+ ClothingOuterEVASuitJanitor: 1 # Frontier - EVA
contrabandInventory: # Frontier - Hidden inventory
ClothingUniformJumpskirtJanimaid: 2
ClothingUniformJumpskirtJanimaidmini: 1
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml
index b894699f31d..0c7a92fc2f2 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medidrobe.yml
@@ -5,23 +5,30 @@
ClothingBackpackSatchelMedical: 4
ClothingBackpackDuffelMedical: 4
ClothingBackpackMessengerMedical: 4 # Frontier
+ ClothingOuterEVASuitMedic: 4 # Frontier
ClothingUniformJumpsuitMedicalDoctor: 4
ClothingUniformJumpskirtMedicalDoctor: 4
+ ClothingHeadHatBeretMedic: 4
+ ClothingHeadNurseHat: 4
+ ClothingOuterCoatLab: 4
ClothingOuterWinterMed: 2
+ ClothingShoesColorWhite: 4
ClothingShoesBootsWinterMed: 2
- ClothingOuterCoatLab: 4
+ ClothingHandsGlovesLatex: 4
+ ClothingHandsGlovesNitrile: 2
ClothingBeltMedical: 4 # Frontier - Medical Belt, empty
ClothingEyesHudMedical: 4
+ ClothingEyesEyepatchHudMedical: 4 # Frontier
ClothingHeadsetMedical: 4
EncryptionKeyMedical: 10
ClothingMaskBreathMedical: 4
- ClothingHeadNurseHat: 4
- ClothingShoesColorWhite: 4
- ClothingHandsGlovesLatex: 4
ClothingOuterHospitalGown: 5
UniformScrubsColorGreen: 4
UniformScrubsColorBlue: 4
UniformScrubsColorPurple: 4
+ ClothingHeadHatSurgcapGreen: 4
+ ClothingHeadHatSurgcapBlue: 4
+ ClothingHeadHatSurgcapPurple: 4
# Paramed:
ClothingUniformJumpsuitParamedic: 4
ClothingUniformJumpskirtParamedic: 4
@@ -29,7 +36,7 @@
ClothingShoesBootsWinterParamedic: 2
ClothingOuterCoatParamedicWB: 2
ClothingHeadHatParamedicsoft: 2
- ClothingHeadHelmetVoidParamed: 1
+ ClothingBeltMedicalEMT: 4 # Frontier, empty
ClothingOuterHardsuitVoidParamed: 1
# Virology:
ClothingBackpackVirology: 2
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml
index 3270f10d24c..92e0de0b6b3 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/scidrobe.yml
@@ -5,6 +5,7 @@
ClothingBackpackSatchelScience: 3
ClothingBackpackDuffelScience: 3
ClothingBackpackMessengerScience: 3 # Frontier
+ ClothingOuterEVASuitScientist: 3 # Frontier
ClothingUniformJumpsuitScientist: 3
ClothingUniformJumpskirtScientist: 3
ClothingUniformJumpsuitScientistFormal: 3
diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml
index 58963623b58..7ae5882aad6 100644
--- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml
+++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/tankdispenser.yml
@@ -1,14 +1,14 @@
- type: vendingMachineInventory
id: TankDispenserEVAInventory
startingInventory:
-# EmergencyOxygenTankFilled: 5
-# ExtendedEmergencyOxygenTankFilled: 5
+# EmergencyOxygenTankFilled: 5 # Frontier
+# ExtendedEmergencyOxygenTankFilled: 5 # Frontier
AirTankFilled: 10
DoubleEmergencyAirTankFilled: 10
OxygenTankFilled: 10
DoubleEmergencyOxygenTankFilled: 10
-# EmergencyNitrogenTankFilled: 5
-# ExtendedEmergencyNitrogenTankFilled: 5
+# EmergencyNitrogenTankFilled: 5 # Frontier
+# ExtendedEmergencyNitrogenTankFilled: 5 # Frontier
NitrogenTankFilled: 10
DoubleEmergencyNitrogenTankFilled: 10
diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml
new file mode 100644
index 00000000000..22673262cfa
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/cartridges.yml
@@ -0,0 +1,61 @@
+# - type: entity # Frontier - Not Merged yet
+# parent: BaseItem
+# id: CrimeAssistCartridge
+# name: crime assist cartridge
+# description: A cartridge that helps identify crimes and see appropriate punishment.
+# components:
+# - type: Sprite
+# sprite: DeltaV/Objects/Devices/cartridge.rsi
+# state: cart-cri
+# - type: Icon
+# sprite: DeltaV/Objects/Devices/cartridge.rsi
+# state: cart-cri
+# - type: UIFragment
+# ui: !type:CrimeAssistUi
+# - type: Cartridge
+# programName: crime-assist-program-name
+# icon:
+# sprite: DeltaV/Icons/cri.rsi
+# state: cri
+
+# - type: entity # Frontier - Not Merged yet
+# parent: BaseItem
+# id: SecWatchCartridge
+# name: sec watch cartridge
+# description: A cartridge that tracks the status of currently wanted individuals.
+# components:
+# - type: Sprite
+# sprite: DeltaV/Objects/Devices/cartridge.rsi
+# state: cart-cri
+# - type: Icon
+# sprite: DeltaV/Objects/Devices/cartridge.rsi
+# state: cart-cri
+# - type: UIFragment
+# ui: !type:SecWatchUi
+# - type: Cartridge
+# programName: sec-watch-program-name
+# icon:
+# sprite: Objects/Weapons/Melee/stunbaton.rsi
+# state: stunbaton_on
+# - type: SecWatchCartridge
+
+- type: entity
+ parent: BaseItem
+ id: MailMetricsCartridge
+ name: mail metrics cartridge
+ description: A cartridge that tracks statistics related to mail deliveries.
+ components:
+ - type: Sprite
+ sprite: DeltaV/Objects/Devices/cartridge.rsi
+ state: cart-mail
+ - type: Icon
+ sprite: DeltaV/Objects/Devices/cartridge.rsi
+ state: cart-mail
+ - type: UIFragment
+ ui: !type:MailMetricUi
+ - type: MailMetricsCartridge
+ - type: Cartridge
+ programName: mail-metrics-program-name
+ icon:
+ sprite: Nyanotrasen/Objects/Specific/Mail/mail.rsi
+ state: icon
diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml
new file mode 100644
index 00000000000..83f02ee8907
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml
@@ -0,0 +1,38 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
+- type: entity
+ parent: BasePDA
+ id: CourierPDA
+ name: mail carrier PDA # Frontier: courier PDA